/*Migrating away from SASS main_scss.scss to keep consistent with other projects*/
/*
    We use a BEM-like (Block, Element, Modifier) naming convention.

    Elements are delimited with two (2) underscores (__), and Modifiers are delimited by two (2) hyphens (--).

    Example:
    .person {} is the Block; it is the sole root of a discrete entity. 
    .person__head {} is an Element; it is a smaller part of the .person {} Block. 
    .person--tall {} is a Modifier; it is a specific variant of the .person {} Block.

    
    Single '-' for naming block elements if we need.
    Example:
    .card-list {}
    .card-list__card {}
    .card-list--blue {}
*/
.link--clean {
  text-decoration: none;
}
.tint {
  position: relative;
}
.tint:before {
  content: '';
  z-index: 10;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: #000;
  opacity: 0.3;
}
.news-result .with-image a {
  z-index: 37;
}
.marsden-campus h2 {
  font-size: 32px;
  font-size: 2.67rem;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .marsden-campus h2 {
    font-size: 56px;
    font-size: 4.67rem;
    line-height: 1.8;
  }
}
.marsden-campus h3 {
  font-size: 18px;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .marsden-campus h3 {
    font-size: 24px;
    font-size: 2rem;
    line-height: 1.2;
    padding-bottom: 10px;
  }
}
.fs-italic-book {
  font-weight: 400;
}
.content-page .main-content .body-image {
  max-height: 450px;
}
.content-page .main-content .body-image--profile {
  max-height: 480px;
}
table thead th,
table tbody th,
table thead td,
table tbody td {
  font-size: 1.25rem !important;
}
.banner--relative {
  position: relative;
}
.banner-content {
  z-index: 1;
  height: 100%;
  width: 100%;
  padding-top: 0;
  position: relative;
}
.banner-content > * {
  left: 0;
  position: absolute;
}
.banner-content h1 {
  bottom: 4%;
}
.banner-content h2,
.banner-content a {
  bottom: 2%;
}
.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;
}
.quick-nav {
  background-color: #00a4e4;
}
.quick-nav-container {
  background-color: #00a4e4;
}
.quick-nav--search {
  fill: #fff;
  height: 15px;
  width: 15px;
  top: 2px;
  position: relative;
}
.embed-code {
  margin: 24px 0;
}
.embed-code blockquote:before,
.embed-code blockquote:after {
  content: unset;
}

