:root {
  /* Font family */
  --font-body: 'Barlow', -apple-system, 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  /* Colors */
  /* Teal (primary) variants */
  --color-teal-050: hsl(169deg 48% 90% / 100%); /* #daf2ee */
  --color-teal-100: hsl(169deg 47% 81% / 100%); /* #b6e5dc */
  --color-teal-200: hsl(169deg 47% 71% / 100%); /* #92d8cb */
  --color-teal-300: hsl(169deg 48% 62% / 100%); /* #6eccbb */
  --color-teal-400: hsl(169deg 47% 52% / 100%); /* #4abea9 */
  --color-teal-500: hsl(169deg 65% 42% / 100%); /* #26b298 */
  --color-teal-600: hsl(169deg 64% 35% / 100%); /* #20947f */
  --color-teal-700: hsl(169deg 65% 28% / 100%); /* #197766 */
  --color-teal-800: hsl(169deg 65% 21% / 100%); /* #13594c */
  --color-teal-900: hsl(169deg 64% 14% / 100%); /* #0d3c33 */
  --color-teal: var(--color-teal-500);
  /* Plum (secondary) variants */
  --color-plum-050: hsl(324deg 49% 90% / 100%); /* #f2d9e8 */
  --color-plum-100: hsl(324deg 48% 80% / 100%); /* #e4b3d0 */
  --color-plum-200: hsl(324deg 49% 70% / 100%); /* #d88eba */
  --color-plum-300: hsl(324deg 49% 60% / 100%); /* #cb68a3 */
  --color-plum-400: hsl(324deg 49% 50% / 100%); /* #be428c */
  --color-plum-500: hsl(324deg 72% 40% / 100%); /* #b11d75 */
  --color-plum-600: hsl(324deg 72% 32% / 100%); /* #941862 */
  --color-plum-700: hsl(324deg 72% 27% / 100%); /* #76134e */
  --color-plum-800: hsl(324deg 71% 20% / 100%); /* #590f3b */
  --color-plum-900: hsl(324deg 71% 14% / 100%); /* #3b0a27 */
  --color-plum: var(--color-plum-500);
  /* Black (tertiary) variants */
  /* Using RGB as HSL values containing 0deg or 0 cause display error in Safari macOS 14.1 Sonoma, Safari 17.6, fixed in 15+ */
  --color-black-050: rgb(229 229 229 / 1); /* #e5e5e5 */
  --color-black-100: rgb(204 204 204 / 1); /* #ccc */
  --color-black-200: rgb(178 178 178 / 1); /* #b2b2b2 */
  --color-black-300: rgb(153 153 153 / 1); /* #999 */
  --color-black-400: rgb(127 127 127 / 1); /* #7f7f7f */
  --color-black-500: rgb(102 102 102 / 1); /* #666 */
  --color-black-600: rgb(77 77 77 / 1); /* #4d4d4d */
  --color-black-700: rgb(51 51 51 / 1); /* #333 */
  --color-black-800: rgb(26 26 26 / 1); /* #1a1a1a */
  --color-black-900: rgb(0 0 0 / 1); /* #000 */
  --color-black: var(--color-black-900);
  /* White variants */
  --color-white: rgb(255 255 255 / 1); /* #fff, using rgb due to HSL Safari display error */ 
  --color-ecru: hsl(156deg 19% 95% / 100%); /* #eff4f2 */
  /* Primary variants */
  --color-primary: var(--color-teal);
  --color-secondary: var(--color-plum);
  --color-tertiary: var(--color-black);

  /* Button overrides */
  --btn-color: currentcolor;
  --btn-bg: transparent;

  /* Logo size Vars */
  --logo-width: 101px;
  --logo-height: 80px;

  @media (max-width: 767px) {
    --logo-width: 91px;
    --logo-height: 72px;
  }
}

html {
  background: var(--color-white);
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.5;
}

.remove-from-view {
  left: -99999px;
  position: absolute;
}

.btn {
  --btn-bg: transparent;
  --btn-color: var(--color-black);
  border-color: var(--btn-color);
  background-image: none;
  background-color: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 500;
}

.btn:hover, .btn:focus-visible {
  --btn-bg: var(--color-black);
  --btn-color: #ddd;
}

.vr,
html {
  padding: 0;
  height: 100%;
}
.outer-container {
  position: relative;
  min-height: 100%;
}
p {
  line-height: 1.1em;
}

a:link {
  color: currentColor;
}

.header,
.main .intro {
  text-align: center;
}

a {
  color: currentColor;
}

a.btn.dark {
  --btn-bg: var(--color-white);
  --btn-color: var(--color-black);
  border: 2px solid var(--btn-color);
  background: var(--btn-bg);
  text-shadow: none;
  text-decoration: none;
  font-size: 1rem;
  padding: 12.5px 20px;
  margin-bottom: 4px;
  box-shadow: none;
}
a.btn.dark:hover,
a.btn.dark:focus-visible {
  --btn-bg: var(--color-black);
  --btn-color: var(--color-white);
  color: var(--btn-color); /* override .vr a */
}
.visible-mobile {
  display: none;
}
h1.site-heading {
  display: block;
  margin-block: 48px;
  font-size: 47.78px;
  line-height: 1.3;
  font-weight: 500;
}

h2 {
  margin-bottom: 0.4rem;
  font-size: 23.04px;
  line-height: 1.3;
  font-weight: 500;
}
@media (max-width: 768px) {
  h1.site-heading {
    margin-block: 32px;
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  h1.site-heading {
    margin-block: 20px;
    font-size: 1.5rem;
  }
}
.header {
  background-color: var(--color-black);
  padding: 60px 20px 40px;
  color: var(--color-white);
}

@media (max-width: 979px) {
  .header {
    padding: 40px 20px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .section .span8 {
    float: left;
    width: 65.74585635359117%;
  }
  .section .span2 {
    float: left;
    width: 14.3646408839779%;
  }
  .section .span10 {
    float: left;
    width: 82.87292817679558%;
  }
  .header {
    padding: 20px;
    height: auto;
  }
  .header h2 {
    margin-top: 0.5rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .header .header-title {
    font-size: 1.4rem;
  }
}
.ecu-logo {
  display: inline-block;
}
.ecu-logo-image {
  margin: 0;
  height: var(--logo-height);
  width: var(--logo-width);
  background-color: transparent;
  background-image: url('https://www.ecu.edu.au/__data/assets/image/0014/1100390/ecu-logo-alternate.png');
  background-repeat: no-repeat;
	background-size: contain; /* Keeps logo at this size regardless of dpi */
  padding: 0;
}

.main {
  padding: 50px 0;
  border: 1px solid #ddd;
  margin-bottom: 2rem;
  min-height: 50vh;
  box-sizing: border-box;
}
.main a {
  text-decoration: underline;
}
.main .intro {
  font-size: 18px;
}
@media (max-width: 767px) {
  .main {
    padding: 30px 0;
  }
  .main .intro {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .main .intro {
    font-size: 0.9rem;
  }
}
.content-block {
  color: #333;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.content-block p {
  font-size: 0.9rem;
  line-height: 1.5em;
  margin-bottom: 1.4rem;
}
@media (max-width: 979px) {
  .content-block {
    padding: 0 20px;
    width: auto;
  }
}
.section {
  position: relative;
  border-top: 1px solid #e5e5e5;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .content-block p {
    font-size: 0.8rem;
  }
  .section {
    padding: 20px 0;
  }
}
.section:first-child {
  border-top: none;
}
.section p:last-child {
  margin-bottom: 0;
}
.section-content h2 {
  margin-top: 0;
}
.numbered-sections {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
.number {
  display: block;
  font-size: 3rem;
  margin-top: 20px;
  text-align: center;
  color: var(--color-primary);
}

@media (max-width: 480px) {
  .section-image {
    clear: both;
    float: none;
    width: 100%;
    text-align: center;
    padding-top: 15px;
  }
}
.pre-footer {
  background: #f9f9f9;
  padding: 40px 20px 140px;
}
.pre-footer h2 {
  font-size: 1.4rem;
  line-height: 1.4em;
}
.pre-footer p {
  font-size: 1.2rem;
  line-height: 1.4em;
}
@media (max-width: 767px) {
  .pre-footer {
    background: #f9f9f9;
    padding: 20px;
  }
  .pre-footer h2 {
    font-size: 1.2rem;
  }
  .pre-footer p {
    font-size: 1.1rem;
  }
  .pre-footer p:last-child {
    margin-bottom: 1.4rem;
  }
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--color-ecru);
  padding: 20px 0;
  color: var(--color-black-600);
}

@media (max-width: 767px) {
  .footer {
    position: relative;
    padding: 16px 0;
  }
}
.footer ul {
  display: inline-block;
  margin: 0 10px;
}
.footer ul li {
  display: inline-block;
  font-size: 0.9rem;
  padding: 0 12px;
  margin: 3px 0 3px -4px;
  border-right: 1px solid var(--color-black-100);
}
.footer ul li:last-child {
  border-right: none;
}

.vr-button-area {
  margin: 1rem auto;
}
.nav-tabs {
  display: flex;
  justify-content: stretch;
  margin-top: 2rem;
  margin-bottom: 0;
  border-bottom: 0;
  text-align: center;
}
.nav-tabs > li {
  flex: 1;
  display: flex;
}
.nav-tabs > li:last-of-type a {
  margin-right: 0; /* override bootstrap */
}
.nav-tabs li > a {
  background-color: var(--color-black);
  padding: 8px 2rem;
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.5; /* override bootstrap */
  font-weight: 500;
  border: 0;
  transition: 0.2s all ease-in-out;
  width: 100%;
}
.nav-tabs > .active > a {
  border: 0;
  background-color: var(--color-primary);
  color: var(--color-black);
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus-visible,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus-visible {
  border: 0;
  background-color: var(--color-black-600);
  color: var(--color-white);
}

@media (max-width: 675px) {
  .nav-tabs {
    margin-top: 0;
    border-top: 1px solid var(--color-black-600);
    flex-direction: column;
  }
  .nav-tabs li,
  .nav-tabs li > a {
    margin-right: 0;
    border-radius: 0;
  }
  svg {
    max-width: 33vw;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.google-cardboard {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
  padding-top: 2rem;
}
.section-image svg {
  fill: #3c4245;
}
.tab-pane {
  padding-bottom: 8rem;
}
