/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}
/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}
/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}
/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}
/**
 * Reset margins and paddings for all headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  padding: 0;
  margin: 0;
}
ul,
ol {
  padding-left: 1em;
  margin: 0 0 0.5em;
}
/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}
/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}
/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * Add the correct display in IE.
 */
main {
  display: block;
}
/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bold;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}
/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
  height: auto;
  max-width: 100%;
}
/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}
/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}
/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}
/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}
/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}
/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}
/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}
/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}
/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}
/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}
/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}
/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
dialog:not([open]) {
  display: none;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}
/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}
/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}
/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}
/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial;
}
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.link--clean {
  text-decoration: none;
}
.content-page .main-content .caption {
  text-align: left;
}
.intro h2 {
  color: #00502f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .intro h2 {
    font-size: 32px;
    line-height: 1.14;
  }
}
.header-block header h1 {
  padding-bottom: 24px;
  padding-bottom: 2rem;
}
section {
  margin-top: 0;
}
.bodytext {
  color: #000000;
}
.bodytext .intro {
  width: 100%;
  font-size: 24px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}
@media (min-width: 1024px) {
  .bodytext .intro {
    font-size: 16px;
    font-size: 1.33rem;
    line-height: 1.5;
  }
}
.intro {
  line-height: 1.2;
}
.bodytext .h2,
.bodytext h2,
.bodytext .h3,
.bodytext h3,
.bodytext-spacing .h2,
.bodytext-spacing h2,
.bodytext-spacing .h3,
.bodytext-spacing h3 {
  padding-top: 24px;
  padding-bottom: 12px;
}
@media (min-width: 1024px) {
  .bodytext .h2,
  .bodytext h2,
  .bodytext .h3,
  .bodytext h3,
  .bodytext-spacing .h2,
  .bodytext-spacing h2,
  .bodytext-spacing .h3,
  .bodytext-spacing h3 {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
.bodytext .h4,
.bodytext h4,
.bodytext-spacing .h4,
.bodytext-spacing h4 {
  padding-top: 24px;
  padding-bottom: 12px;
}
@media (min-width: 1024px) {
  .bodytext .h4,
  .bodytext h4,
  .bodytext-spacing .h4,
  .bodytext-spacing h4 {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
.breadcrumb-padding {
  padding-left: 0;
  padding-top: 10px;
}
@media (min-width: 1024px) {
  .breadcrumb-padding {
    padding-top: 0;
  }
}
.subnav-title {
  font-size: 32px;
  font-size: 2.67rem;
  padding-top: 12px;
}
.page-heading {
  border-top: none;
}
.page-heading h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .page-heading h1 {
    font-size: 32px;
  }
}
.page-heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .page-heading h2 {
    font-size: 56px;
    line-height: 1;
  }
}
.profile-meta--override {
  border-top: none !important;
}
.news-date {
  padding-top: 10px;
  padding-left: 0;
}
.g-row--override {
  padding-top: 60px;
}
.content-page--override .main-content {
  width: 100%;
}
.profileDetails,
.subMenuList {
  padding-left: 0;
  padding-bottom: 10px;
}
.notify-popup .msg {
  padding-bottom: 4rem;
}
.subNavMobile {
  display: block;
}
@media (min-width: 800px) {
  .subNavMobile {
    display: none;
  }
}
.contact .action-link {
  margin-left: 10px;
}
.inline-video {
  max-width: none;
}
.marsden-campus--override,
.hero-section--override,
.feature--override {
  border-bottom: none;
}
.marsden-campus--override {
  margin: 4rem auto 0;
}
aside.left .subnav ul {
  border-top: none;
  padding-left: 0;
}
aside.left .subnav ul li a:hover {
  text-decoration: underline;
}
.strapline--override {
  border-top: none !important;
  margin-top: 0 !important;
}
.landing--override {
  border-top: none;
}
.news-result .school-tag {
  border-bottom: none;
}
.news-result .wrapper.with-image {
  border-bottom: none;
}
/* latin */
@font-face {
  font-family: 'Cormorant';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/Cormorant-Italic.otf) format('opentype');
}
/* latin */
@font-face {
  font-family: 'Cormorant';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/Cormorant-Regular.otf) format('opentype');
}
/* latin */
@font-face {
  font-family: 'Cormorant';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/Cormorant-Bold.otf) format('opentype');
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/OpenSans-Italic.ttf) format('truetype');
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/OpenSans-Regular.ttf) format('truetype');
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/OpenSans-SemiBold.ttf) format('truetype');
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/OpenSans-Bold.ttf) format('truetype');
}
h1,
.h1 {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.5;
}
@media (min-width: 600px) {
  h1,
  .h1 {
    font-size: 56px;
    line-height: 1.6;
  }
}
h2,
.h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
}
@media (min-width: 600px) {
  h2,
  .h2 {
    font-size: 32px;
    line-height: 1.5;
  }
}
h3,
.h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}
@media (min-width: 600px) {
  h3,
  .h3 {
    font-size: 24px;
    line-height: 1.5;
  }
}
h4,
.h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  h4,
  .h4 {
    font-size: 18px;
    line-height: 1.4;
  }
}
h2,
h3,
h4,
h5,
.h2,
.h3,
.h4,
.h5 {
  font-weight: 700;
}
/*h1,
.h1 {
    .fluid-font(@fluid-text-min-vw, @fluid-text-max-vw, 32px, 56px);
    line-height: 1.385;
    letter-spacing: 1px;
}

h2,
.h2 {
    .fluid-font(@fluid-text-min-vw, @fluid-text-max-vw, 24px, 32px);
    letter-spacing: 1px;
}

h3,
.h3 {
    .fluid-font(@fluid-text-min-vw, @fluid-text-max-vw, 18px, 24px);
    letter-spacing: 1px;
}

h4,
.h4,
h5,
.h5 {
    .fluid-font(@fluid-text-min-vw, @fluid-text-max-vw, 16px, 18px);
}*/
a {
  color: #00a0dc;
}
::selection {
  background-color: #00a0dc;
}
.text-no-margin {
  margin: 0;
}
.text-small {
  font-size: 12px;
  font-size: 0.75rem;
}
.text-medium {
  font-size: 14px;
  font-size: 0.875rem;
}
.text-standard {
  font-size: 16px;
  font-size: 1rem;
}
.text-large {
  font-size: 20px;
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 32px;
  font-size: 2rem;
}
.text-4xl {
  font-size: 48px;
  font-size: 3rem;
}
.text-bold {
  font-weight: 700;
}
.text-bold-extra {
  font-weight: 800;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-italic {
  font-style: italic;
}
.strapline {
  margin-top: 0;
  border-top: none;
  padding-bottom: 20px;
}
.strapline > h1 {
  color: #00502f;
  font-size: 32px;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .strapline > h1 {
    font-size: 56px;
    line-height: 1;
  }
}
.strapline > p {
  /*font-family: 'Cormorant';*/
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  font-size: 64px;
  font-size: 5.33rem;
  line-height: 77.5px;
  color: #00502f;
}
@media (min-width: 800px) {
  .strapline {
    margin-top: 80px;
    margin-top: 5rem;
    min-height: 80px;
    min-height: 5rem;
  }
  .strapline > p {
    font-size: 56px;
    font-size: 4.67rem;
    /*line-height: 145.32px;*/
    font-weight: 700;
    line-height: 4.5rem;
  }
}
.hero-slider,
.hero-image {
  aspect-ratio: 3.72;
  height: calc(100vw / 3.72) !important;
  margin-left: auto;
  margin-right: auto;
  max-height: 516px;
  max-width: 1920px;
  min-height: 240px;
  width: 100% !important;
}
.banner-wrapper {
  padding-top: 0;
}
@media (min-width: 800px) {
  .banner-wrapper {
    padding-top: 0;
  }
}
.banner-wrapper,
.banner-container {
  /*background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);*/
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 33%);
}
.hero-slider .banner-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(32px, 5vw, 64px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 55%);
}
.banner-footer {
  bottom: unset;
}
.banner-wrapper--override h1 {
  font-family: 'Cormorant';
  font-size: 52px;
  font-size: 4.33rem;
  margin-left: 50px;
  max-width: 300px !important;
  text-align: left;
}
@media (min-width: 1024px) {
  .banner-wrapper--override h1 {
    font-size: 120px;
    font-size: 10rem;
    margin-left: 120px;
    max-width: none !important;
  }
}
.banner-wrapper h2.banner-wrapper--override {
  font-size: 16px;
  font-size: 1.33rem;
  font-weight: 500;
  line-height: 1.13333333;
  margin-left: 20px;
}
@media (min-width: 1024px) {
  .banner-wrapper h2.banner-wrapper--override {
    font-size: 18px;
    font-size: 1.5rem;
    margin-left: 120px;
  }
}
.banner-footer--override {
  display: block;
  padding: 0 10px;
  color: #FFFFFF;
  position: relative;
  margin: 0 0 0 14px;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.5);
  text-wrap: pretty;
  word-break: normal;
}
.banner-footer--override a {
  text-decoration: none;
  color: #FFFFFF;
}
.banner-footer--override a:hover {
  text-decoration: underline;
}
@media (min-width: 600px) {
  .banner-footer--override {
    margin-left: 5%;
  }
}
.banner-footer--override h1 {
  font-family: 'Cormorant';
  font-size: 4.33rem;
  line-height: 1;
  margin: 0 0 12px;
  text-align: left;
}
@media (min-width: 1024px) {
  .banner-footer--override h1 {
    font-size: 10rem;
    max-width: none !important;
  }
}
/*.banner-footer--override {
    &:last-child {
        bottom: 13%;
    }

    &:first-child {
        bottom: 18%;
    }
}*/
.banner-footer--override small {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: 0;
  text-align: left;
}
@media (min-width: 1024px) {
  .banner-footer--override small {
    font-size: 1.33rem;
  }
}
.slides-navigation a.prev {
  left: 0;
  margin-top: -30px;
}
@media only screen and (min-width: 600px) {
  .slides-navigation a.prev {
    margin-top: -4%;
  }
}
.slides-navigation a.next {
  right: 0;
  margin-top: -30px;
}
@media only screen and (min-width: 600px) {
  .slides-navigation a.next {
    margin-top: -4%;
  }
}
.hero-image--override h1 {
  font-family: 'Cormorant';
  font-size: 48px;
  font-size: 4rem;
  margin-left: 18px;
  text-align: left;
}
@media (min-width: 1024px) {
  .hero-image--override h1 {
    font-size: 120px;
    font-size: 10rem;
    max-width: none !important;
    margin-left: 10rem !important;
    margin-bottom: 0;
  }
}
.hero-section {
  margin: 6rem auto 0;
  max-width: 96rem;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 6rem;
}
.hero-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .hero-row {
    justify-content: space-evenly;
  }
}
.hero-row--top {
  flex-direction: row;
  width: 100%;
  gap: 60px;
}
.hero-row--bottom {
  align-items: center;
  gap: 100px;
  padding-top: 70px;
}
.hero-row--bottom a.has-hover .icon-hover {
  display: none;
}
.hero-row--bottom a.has-hover:hover .icon-std,
.hero-row--bottom a.has-hover:focus .icon-std {
  display: none;
}
.hero-row--bottom a.has-hover:hover .icon-hover,
.hero-row--bottom a.has-hover:focus .icon-hover {
  display: block;
}
.hero-column {
  flex-basis: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-column__content {
  padding-bottom: 2rem;
}
.hero-block-image {
  max-width: 105%;
  width: 105%;
  height: 105%;
  max-height: 105%;
  transition: all 0.5s;
}
.hero-header {
  font-size: 32px;
}
.hero-header h3 {
  line-height: 1;
  font-weight: 700;
}
.hero-caption {
  font-size: 22px;
  line-height: 1.5;
}
.hero-link:hover .hero-block-image {
  transform: scale(1.05);
}
.hero-link__text {
  padding-top: 16px;
}
.hero-image-wrapper {
  /*height: 0;*/
  overflow: hidden;
  /*padding-bottom: 56.25%;*/
  position: relative;
}
@media (min-width: 1024px) {
  .hero-image-wrapper {
    height: 315px;
  }
}
.hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-row--bottom a:nth-child(1) span {
  color: #9c60a7;
}
.hero-row--bottom a:nth-child(1):hover span {
  color: #00502f;
}
.hero-row--bottom a:nth-child(2) span {
  color: #de3b4d;
}
.hero-row--bottom a:nth-child(2):hover span {
  color: #00502f;
}
.hero-row--bottom a:nth-child(3) span {
  color: #f68926;
}
.hero-row--bottom a:nth-child(3):hover span {
  color: #00502f;
}
.quotecite {
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 0 20px 0 50px;
  border-left: 1px solid #00502f;
}
.cite {
  margin-top: 5px;
  font-size: 16px;
  font-size: 1.33rem !important;
}
.cite p {
  color: #000000;
}
blockquote {
  position: relative;
  /*padding-left: 10px;*/
}
.fs-book {
  font-size: 18px;
  font-size: 1.5rem;
}
.p-top {
  padding-top: 20px;
}
.feature .link {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 18px;
  font-size: 1.5rem;
  color: #00a0dc;
}
.feature .link--override {
  color: #000000;
}
.feature a:hover .link--override {
  color: #00a0dc;
}
.fw-book {
  font-weight: 300;
}
.fw-book--override {
  font-weight: 600;
}
.action-btn a {
  background-color: #00a0dc;
}
.action-btn--override a {
  font-size: 16px;
  font-size: 1.33rem;
  line-height: 1.14285714;
  margin-top: 16px;
  margin-top: 1.33rem;
  margin-bottom: 16px;
  margin-bottom: 1.33rem;
  padding: 16px 32px;
  padding: 1rem 2rem;
  background-color: #00a0dc;
  color: #FFFFFF;
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize !important;
}
.action-btn--override a:hover {
  color: #FFFFFF;
  background-color: #00502f;
}
.hero-section {
  border-bottom: none !important;
}
.hero-row--bottom--override {
  gap: 0 !important;
  padding-top: 0 !important;
  background-color: #00a0dc;
}
.hero-row--bottom--override a span,
.hero-row--bottom--override a:nth-child(1) span,
.hero-row--bottom--override a:nth-child(2) span,
.hero-row--bottom--override a:nth-child(3) span {
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 500;
  width: 170px;
}
@media (min-width: 1024px) {
  .hero-row--bottom--override a span,
  .hero-row--bottom--override a:nth-child(1) span,
  .hero-row--bottom--override a:nth-child(2) span,
  .hero-row--bottom--override a:nth-child(3) span {
    font-size: 18px;
    width: 112px;
  }
}
.hero-row--bottom--override a:hover span,
.hero-row--bottom--override a:nth-child(1):hover span,
.hero-row--bottom--override a:nth-child(1):hover span,
.hero-row--bottom--override a:nth-child(1):hover span {
  color: #000000 !important;
}
.hero-icon--override {
  flex-direction: row !important;
  justify-content: left;
}
@media (min-width: 1024px) {
  .hero-icon--override {
    justify-content: center;
  }
}
.icon-row-box {
  padding: 25px 70px;
}
.icon-row-box:hover {
  background: #8AC6E2;
}
@media (min-width: 1024px) {
  .icon-row-box {
    padding: 50px;
    width: 288px;
  }
}
.flipbook-card,
.feature-card {
  padding-top: 24px;
  padding-top: 2rem;
  padding-bottom: 24px;
  padding-bottom: 2rem;
}
.flipbook-card .card-content {
  padding-left: 0;
}
@media (min-width: 1024px) {
  .flipbook-card .card-content {
    padding-left: 24px;
  }
}
.flipbook-card .media-short,
.feature-card .media-short {
  height: 0;
  overflow: hidden;
  padding-bottom: 93.75%;
  position: relative;
}
.flipbook-card .card-media,
.feature-card .card-media {
  background-color: #00502f;
  font-size: 0;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}
.flipbook-card .card-media img,
.feature-card .card-media img {
  width: 100%;
}
.flipbook-card .card-subheading,
.feature-card .card-subheading {
  height: 128px;
  height: 8rem;
  background-color: #00a0dc;
  width: 100%;
}
.flipbook-card .card-subheading h3,
.feature-card .card-subheading h3 {
  padding-left: 12px;
  padding-right: 12px;
}
.flipbook-card h2,
.feature-card h2 {
  font-size: 32px;
  font-size: 2.67rem;
  color: #00502f;
  line-height: 1.5;
}
.flipbook-card h3,
.feature-card h3 {
  font-size: 24px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  padding-top: 0;
  padding-bottom: 1rem;
  color: #00502f;
  margin: 0;
}
.flipbook-card h3.card-sub {
  padding-top: 16px;
  padding-top: 1.33333333rem;
  font-size: 16px;
  font-size: 1.33333333rem;
  line-height: 1.5;
  color: #FFFFFF;
}
.flipbook-card a,
.feature-card a {
  text-decoration: none;
}
.flipbook-card p,
.feature-card p {
  color: #000000;
}
.flipbook-card .link,
.feature-card .link {
  margin-top: 12px;
  margin-top: 1rem;
  color: #00a0dc;
}
.flipbook-card .link span:before,
.feature-card .link span:before {
  padding-right: 5px;
  position: relative;
  top: 1px;
}
.feature-card:hover .card-media .media-image {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.feature-card:hover .link {
  color: #00502f;
}
.content-banner {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 1024px) {
  .content-banner {
    aspect-ratio: 2 / 1;
    min-height: auto;
  }
}
.content-banner__img-container {
  width: 100%;
  height: 342px;
  position: relative;
}
@media (min-width: 1024px) {
  .content-banner__img-container {
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
  }
}
.content-banner__img {
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
.content-banner__content {
  background-image: url(/assets/bg/vertical.svg);
  background-position: bottom;
  padding: 3rem;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .content-banner__content {
    background-image: url(/assets/bg/horizontal.svg);
    background-position: left;
    background-repeat: no-repeat;
    height: 100%;
    width: 50%;
    padding: 9.2rem 6rem 9.2rem 5.3rem;
  }
}
h1.content-banner__title {
  font-size: 32px;
  color: #FFFFFF;
  margin: 0 0 2rem;
  padding-bottom: 10px;
  line-height: 1;
}
@media (min-width: 1024px) {
  h1.content-banner__title {
    font-size: 56px;
    padding-bottom: 0;
  }
}
.contentBlockLink {
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1.33333333rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
}
.contentBlockLink:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.content-banner__summary {
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1.33333333rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
}
.content-banner__summary .contentLink {
  padding-top: 36px;
}
.marsden-campus .feature {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 1024px) {
  .marsden-campus .feature {
    margin-left: 16px;
    margin-right: 16px;
  }
}
section.features .feature > div > h3,
.marsden-campus .feature h3 {
  font-size: 18px;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 1024px) {
  section.features .feature > div > h3,
  .marsden-campus .feature h3 {
    font-size: 24px;
    font-size: 2rem;
  }
}
.feature-border {
  border-bottom: none;
}
.feature--image {
  padding-bottom: 12px;
}
h3.feature-title {
  padding-bottom: 12px;
  padding-bottom: 1rem;
}
.text-green--override {
  color: #00502f;
}
.heading-padding {
  padding-top: 12px;
  padding-top: 1rem;
  padding-bottom: 12px;
  padding-bottom: 1rem;
}
@media (min-width: 1024px) {
  .heading-padding {
    padding-top: 12px;
    padding-top: 1rem;
  }
}
.marsden-campus .feature .feature--image {
  display: block;
}
.feature {
  border-bottom: none;
  margin-bottom: 20px;
}
.profile-banner {
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-bottom: 20px;
}
.profile-banner__img-container {
  width: 100%;
  height: 330px;
  position: relative;
}
.profile-banner__img {
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
.profile-banner__content {
  background-color: #F5F5F5;
  padding: 3rem;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .profile-banner {
    min-height: 400.27px;
  }
  .profile-banner__img-container {
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
  }
  .profile-banner__content {
    width: 50%;
    padding: 8rem 4rem;
    min-height: 400.27px;
  }
}
a.profile-link {
  text-decoration: none;
}
.profile-content {
  font-size: 16px;
  font-size: 1.33rem;
  color: #000000;
}
.profile-content:hover {
  color: #00a0dc;
}
dd.blurb {
  padding-top: 10px;
  color: #00502f;
  font-size: 16px;
  line-height: 1.2;
}
dt h3 {
  font-weight: 600;
}
.email-svg {
  margin-top: 5px;
}
.footer-wrapper > div {
  width: 40%;
}
.footer--override {
  background-image: url(/assets/bg/horizontal.svg);
  background-position: left;
  background-repeat: no-repeat;
}
.footer-wrapper--override {
  padding-left: 20px;
}
.footer-wrapper--override div {
  width: 100% !important;
}
@media (min-width: 1024px) {
  .footer-wrapper--override {
    padding-left: 0;
  }
  .footer-wrapper--override div {
    width: 25% !important;
  }
  .footer-wrapper--override div:first-of-type {
    width: 25% !important;
  }
  .footer-wrapper--override div:last-of-type {
    width: 25% !important;
  }
}
.footer-wrapper > div:nth-child(3) {
  float: left;
}
.footer-wrapper > div:nth-child(4) {
  float: right;
}
footer .badges {
  flex-wrap: unset !important;
  mix-blend-mode: screen;
  padding-left: 0;
}
.footer-wrapper--override div:last-of-type {
  width: 25%;
}
.footer-wrapper a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.footer-title {
  padding-bottom: 10px;
}
.footer-colour {
  color: #404040;
}
.footer-colour--override {
  color: #FFFFFF;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding-left: 0;
}
.footer-copyright {
  padding-left: 20px;
}
@media (min-width: 1024px) {
  .footer-copyright {
    padding-left: 5px;
  }
}
.content {
  display: grid;
  gap: 20px;
  margin: 0;
  list-style: none;
  padding: 20px;
}
.pagination {
  text-align: center;
  margin-top: 20px;
}
.pagination button {
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
  border: none;
}
@media (min-width: 1024px) {
  .pagination button {
    margin: 0 5px;
  }
}
.hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.pagination button.active {
  background-color: #f7f7f7;
  border-bottom: 14px solid #00a4e4;
}
.image-with-text {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.image-with-text .image-part {
  flex: 1 0 0;
}
.image-with-text .text-part-right,
.image-with-text .text-part-left {
  flex: 1 0 0;
  padding: 10px 0;
}
.image-with-text.on-left .image-part {
  order: 2;
}
.image-with-text.on-left .text-part-left,
.image-with-text.on-left .text-part-right {
  order: 1;
}
@media all and (min-width: 750px) {
  .image-with-text {
    flex-direction: row;
  }
  .image-with-text .text-part-right {
    flex: 1 0 0;
    padding: 10px 0 10px 16px;
  }
  .image-with-text .text-part-left {
    flex: 1 0 0;
    padding: 10px 16px 10px 0;
  }
}

