@charset "UTF-8";
body {
  position: relative;
  background-color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #444444;
  overflow-x: hidden;
}

html {
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

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

/* Disable smooth scrolling when users have prefers-reduced-motion enabled */
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
a {
  color: currentColor;
}
a:hover {
  text-decoration-color: currentColor;
  text-decoration: none;
}
a:focus {
  text-decoration: underline;
}

:focus-visible {
  outline-width: 3px;
  outline-style: solid;
  outline-color: #12E2C3;
  outline-offset: 3px;
}

p {
  margin: 0;
}
p + p {
  margin-top: 1em;
}

br {
  font-family: Arial;
}

time {
  margin: 0;
}

figure {
  margin: 0;
}

hr {
  position: relative;
  margin: 3.125em 0;
}

small {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

b, strong, .bold {
  font-weight: 700;
}

em, i, .italic {
  font-style: italic;
}

svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

ul {
  padding-left: 20px;
}

ol {
  padding-left: 1.25rem;
}
ol li {
  padding-left: 1em;
}

dd {
  margin-left: 0;
}

audio,
canvas,
iframe,
img,
video,
svg {
  vertical-align: middle;
}

video {
  background-color: transparent;
}

button,
input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 0;
  touch-action: manipulation;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
}

button[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

[class*=font-scale-] {
  display: block;
}

h1, h2, h3 {
  color: inherit;
}

h2, h3 {
  font-weight: 700;
}

h1 {
  margin: 0;
  font-weight: var(--medium-font-weight);
  font-size: 2rem;
  line-height: 1.125em;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 1.25em;
  }
}

h2 {
  font-size: 1.5rem;
  line-height: 1.333em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

h4 {
  font-size: 1rem;
  line-height: 1.5rem;
}

.font-scale-l {
  font-size: 2rem;
  line-height: 1.125em;
}
@media (min-width: 768px) {
  .font-scale-l {
    font-size: 3rem;
    line-height: 1.25em;
  }
}

.font-scale-m {
  font-size: 1.5rem;
  line-height: 1.333em;
}

.font-scale-s {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.font-scale-xs {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.constrain {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .constrain {
    max-width: 1024px;
  }
}
@media (min-width: 1240px) {
  .constrain {
    max-width: 1240px;
  }
}

.slat {
  margin-top: var(clamp(2.5rem, 2.03rem + 2.35vw, 4.5rem));
  margin-bottom: var(clamp(2.5rem, 2.03rem + 2.35vw, 4.5rem));
}

.module {
  padding: 2.5rem 0;
}
.module--light {
  background-color: #EFEFEF;
}
.module--centered {
  text-align: center;
}
@media (min-width: 768px) {
  .module {
    padding: 5.25rem 0;
  }
}

.grid {
  display: grid;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .grid {
    grid-gap: 1.5rem;
  }
}
.grid--no-gap {
  gap: 0;
}

.grid-of-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 1.5rem;
}

@media (min-width: 768px) {
  .sm\:grid-of-one {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .sm\:grid-of-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .sm\:grid-of-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .md\:grid-of-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .md\:grid-of-two-reverse > :nth-child(2n+2) {
    grid-row: 1;
    grid-column: 1/2;
  }
}

@media (min-width: 992px) {
  .md\:grid-of-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .md\:grid-of-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1240px) {
  .lg\:grid-of-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1240px) {
  .lg\:grid-of-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .grid-8\/4 > :nth-child(2n+1), .grid-8\/4 > :nth-child(2n+2) {
    grid-column: 1/-1;
  }
}
@media (min-width: 992px) {
  .grid-8\/4 > :nth-child(2n+1) {
    grid-column: span 8;
  }
  .article:not(.article-body) .grid-8\/4 > :nth-child(2n+1) {
    grid-column: 1/-1;
  }
  .grid-8\/4 > :nth-child(2n+2) {
    grid-column: span 4;
  }
}

@media (min-width: 768px) {
  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
  z-index: 7000;
}
.header__content {
  position: relative;
  display: flex;
  padding: 1.125rem 0;
  justify-content: space-between;
}
.header.is-scrolling {
  background-color: white;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header__branding {
  width: 120px;
  z-index: 100;
}
@media (min-width: 992px) {
  .header__branding {
    width: 220px;
  }
}

.footer {
  background-color: white;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 180px 1fr;
  }
}
@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: 220px 1fr;
  }
}
@media (min-width: 1240px) {
  .footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer__form {
  padding: 2.5rem 1.5rem;
  background-color: rgba(75, 61, 149, 0.2);
  text-align: center;
}
@media (min-width: 992px) {
  .footer__form {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.footer__branding {
  padding: 0 1.5rem;
}

.footer__info {
  padding: 2.5rem 0 1.5rem;
}
.footer__info-subgrid {
  margin-top: 2rem;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer__info-subgrid {
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1240px) {
  .footer__info-subgrid {
    grid-column: span 3/span 3;
  }
}
@media (min-width: 768px) {
  .footer__info {
    padding: 4rem 0 4.5rem;
  }
}

.nav-list, .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .footer .nav-list, .footer .menu {
    justify-content: flex-end;
  }
}

.navigation-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  transition: all 0.5s linear;
  z-index: 1003;
}
.navigation-trigger__icon {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 2px;
  background-color: white;
  transition-property: background-color, transform;
  transition-duration: 300ms;
}
.is-scrolling .navigation-trigger__icon {
  background-color: #4B3D95;
}
.navigation-trigger__icon:before, .navigation-trigger__icon:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  background: #FFFFFF;
  transition-property: margin, transform;
  transition-duration: 300ms;
}
.is-scrolling .navigation-trigger__icon:before, .is-scrolling .navigation-trigger__icon:after {
  background-color: #4B3D95;
}
.navigation-trigger__icon:before {
  margin-top: -8px;
}
[aria-expanded=true] .navigation-trigger__icon:before {
  margin-top: 0;
  transform: rotate(45deg);
  background-color: #4B3D95;
}
.navigation-trigger__icon:after {
  margin-top: 8px;
}
[aria-expanded=true] .navigation-trigger__icon:after {
  margin-top: 0;
  transform: rotate(-45deg);
  background-color: #4B3D95;
}
[aria-expanded=true] .navigation-trigger__icon {
  background-color: transparent;
}
@media (min-width: 992px) {
  .navigation-trigger {
    display: none;
  }
}

.navigation {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  z-index: 1;
}
@media (max-width: 991px) {
  .navigation {
    position: fixed;
    left: 0;
    top: -100%;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: top 0.2s ease-in-out;
  }
  [aria-expanded=true] + .navigation {
    top: 0;
    transition: top 0.9s ease-in-out;
  }
}
.navigation__inner {
  display: flex;
  flex-direction: column;
}
.navigation__inner > * + * {
  margin-top: 1.5rem;
}
@media (max-width: 991px) {
  .navigation__inner {
    margin-top: 140px;
    opacity: 0;
    transition: opacity 0.2s linear;
  }
  .is-visible .navigation__inner {
    opacity: 1;
  }
  .navigation__inner > * + * {
    margin-top: 2.25rem;
  }
}
@media (min-width: 992px) {
  .navigation__inner {
    flex-direction: row;
    align-items: center;
  }
  .navigation__inner > * + * {
    margin-top: 0;
    margin-left: 2.5rem;
  }
}
.navigation .menu {
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  height: 100%;
  color: white;
}
@media (min-width: 992px) {
  .navigation .menu {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    height: auto;
  }
}
.navigation ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .navigation li + li {
    margin-left: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .navigation li + li {
    margin-left: 2.5rem;
  }
}

.navigation__menu {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .navigation__menu {
    flex-grow: 1;
    flex-direction: row;
    align-items: center;
  }
}

.menu-item-type-post_type a {
  display: flex;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}
@media (max-width: 991px) {
  .menu-item-type-post_type a {
    color: #4B3D95;
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .menu-item-type-post_type a {
    justify-content: center;
    padding: 0.125rem 0.75rem;
    font-size: 1.625rem;
    padding: 0;
    position: relative;
    padding-bottom: 3px;
    font-size: 1rem;
  }
  .menu-item-type-post_type a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-image: linear-gradient(135deg, white, white);
    background-size: 0% 100%;
    background-position: right;
    background-repeat: no-repeat;
    transition: background-size 0.5s, background-position 0s 0s;
  }
  .menu-item-type-post_type a:hover:before {
    background-size: 100% 100%;
    background-position: left;
  }
  .is-scrolling .menu-item-type-post_type a {
    color: #4B3D95;
  }
  .header .menu-item-type-post_type a:hover {
    color: #FFC20F;
    position: relative;
    padding-bottom: 3px;
  }
  .header .menu-item-type-post_type a:hover:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-image: linear-gradient(135deg, #FFC20F, #FFC20F);
    background-size: 0% 100%;
    background-position: right;
    background-repeat: no-repeat;
    transition: background-size 0.5s, background-position 0s 0s;
  }
  .header .menu-item-type-post_type a:hover:hover:before {
    background-size: 100% 100%;
    background-position: left;
  }
}

.footer .menu-item a {
  font-size: 0.875rem;
  font-weight: 400;
  justify-content: flex-start;
  text-decoration: underline;
}
.footer .menu-item a:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .footer .menu-item {
    display: flex;
  }
}

input, button {
  font-family: "Poppins", sans-serif;
}

.button {
  -webkit-appearance: none;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 0;
  touch-action: manipulation;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  background-color: transparent;
  border-color: #4B3D95;
  padding: 0.625rem 1.5rem;
}
.button:hover {
  background-color: #4B3D95;
  color: white;
}
.button:focus {
  text-decoration: none;
}
.button--inverse {
  background-color: #4B3D95;
  color: white;
}
.button--inverse:hover {
  background-color: #352b68;
}
.button--hero {
  border-color: inherit;
}
.button--hero:hover {
  background-color: white;
  border-color: white;
  color: #444444;
}
.button--white {
  background-color: white;
  border-color: white;
  color: #444444;
}
.button--nav-link {
  background-color: #FFC20F;
  border-color: #FFC20F;
  font-weight: 700;
  color: #4B3D95;
}
.button--nav-link:hover {
  background-color: white;
  border-color: #DADADA;
  color: #4B3D95;
}
.inline-input .button {
  height: 100%;
  background-color: #4B3D95;
  padding: 0.625rem 1.5rem;
  border-color: #4B3D95;
  color: white;
}
.inline-input .button:hover {
  background-color: #352b68;
}

.button-group {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.button-group--centered {
  justify-content: center;
}

.scroll-btn {
  width: 2.25rem;
  height: 1.25rem;
  display: flex;
  justify-content: center;
  background-color: transparent;
  padding: 0;
  border: none;
  transition: bottom 0.45s ease-in-out;
  z-index: 100;
}

.input-field {
  width: 100%;
  margin: 0;
  padding: 1rem;
  border: 1px solid transparent;
  font-size: 1em;
  border-radius: 0;
}

.google-form {
  height: 2900px;
}
@media (min-width: 768px) {
  .google-form {
    height: 2660px;
  }
}

.nf-form-cont {
  padding: 3.25rem 1.25rem !important;
  background-color: #EFEFEF !important;
}

.nf-form-wrap {
  max-width: 36rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 1rem 0 !important;
}
@media (min-width: 1240px) {
  .nf-form-wrap {
    padding-bottom: 4rem !important;
  }
}

.nf-form-title {
  display: block !important;
  margin: 0 0 2rem !important;
  text-align: center !important;
  color: #4B3D95 !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
}

.nf-form-fields-required {
  display: none !important;
}

.nf-field-label label {
  font-weight: 400 !important;
  font-size: 1rem !important;
}

.nf-field-element input[value=Submit] {
  background-color: #4B3D95 !important;
}

.nf-form-content .list-select-wrap > div select {
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #4B3D95 !important;
}

@media (min-width: 768px) {
  .nf-form-content .list-select-wrap {
    width: 50% !important;
  }
}

.section-heading {
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  max-width: 600px;
  text-align: center;
}

.section-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
}

.lede {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  color: #4B3D95;
}

.wsiwyg {
  font-size: 1rem;
  line-height: 1.625em;
}
.wsiwyg h2, .wsiwyg h3 {
  color: #4B3D95;
}
.wsiwyg h2:first-of-type {
  margin-top: 0;
}
.wsiwyg h2 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}
.wsiwyg h4 {
  margin-bottom: 0;
}
.wsiwyg p:has(+ h2) {
  margin-bottom: 2rem;
}
.wsiwyg p:has(+ h3) {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .emphasis-text {
    max-width: 24ch;
  }
}

.meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.max-char {
  max-width: 65ch;
}

blockquote {
  position: relative;
  margin: 0;
  padding: 0 2.5rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  blockquote {
    font-size: 1.125rem;
  }
  .carousel blockquote {
    padding: 0 6rem;
  }
  .billboard__quote blockquote {
    padding: 0 4rem;
  }
}

cite {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  color: #4B3D95;
}
@media (min-width: 992px) {
  cite {
    margin-top: 2rem;
  }
}

.quotes {
  position: relative;
  font-weight: 500;
  quotes: "“" "”" "‘" "’";
}
.quotes:before, .quotes:after {
  position: absolute;
  top: -12px;
  font-size: 4rem;
  line-height: 1;
  color: #FFC20F;
}
@media (min-width: 768px) {
  .quotes:before, .quotes:after {
    font-size: 8rem;
  }
}
.quotes:before {
  left: 0;
  content: open-quote;
}
.quotes:after {
  content: close-quote;
  right: 0;
}

.icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  pointer-events: none;
}
.icon--xs {
  width: 1rem;
  height: 1rem;
}
.icon--small {
  width: 1.375rem;
  height: 1.375rem;
}
.icon--subject {
  width: 2.5rem;
  height: 2.5rem;
}
.icon--facebook {
  fill: white;
}
.is-scrolling .icon--facebook {
  fill: #4B3D95;
}
@media (max-width: 991px) {
  .icon--facebook {
    fill: #4B3D95;
  }
}

.navigation .social-link {
  color: white;
}
.navigation .social-link:hover {
  color: #FFC20F;
}
.is-scrolling .navigation .social-link {
  color: #4B3D95;
}
@media (max-width: 991px) {
  .navigation .social-link {
    color: #4B3D95;
  }
}

.block-link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.popup-modal {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  height: calc(100% - 86px);
  width: 100%;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s ease-in-out;
  visibility: hidden;
  z-index: 10000;
}
.popup-modal.is--visible {
  opacity: 1;
  visibility: visible;
}
.popup-modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: center;
  max-width: 90vw;
  margin: 0 auto;
  pointer-events: auto;
}
.popup-modal__inner-content {
  background-color: white;
}
.popup-modal__close {
  position: absolute;
  right: 0;
  top: -3rem;
  display: flex;
  align-items: center;
  vertical-align: center;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  background-color: transparent;
  color: white;
  border: none;
}
@media (min-width: 768px) {
  .popup-modal {
    height: 100vh;
    justify-content: center;
  }
  .popup-modal__inner {
    align-self: center;
    overflow: initial;
  }
}
@media (min-width: 992px) {
  .popup-modal__inner {
    max-width: 860px;
  }
}

.body-blackout {
  position: fixed;
  z-index: 8000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.body-blackout.is-blacked-out {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  max-height: 800px;
  padding: 0 0 2rem;
  color: white;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero {
    padding-top: 105px;
    padding-bottom: 3rem;
  }
}
.hero__content, .hero__footer {
  position: relative;
  z-index: 1;
}
.hero__content {
  margin-bottom: 4.5rem;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__background:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.hero__background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: transparent linear-gradient(180deg, #000000 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.3;
}
.hero--shallow {
  min-height: auto;
  height: 280px;
  justify-content: center;
  align-items: center;
  padding: 92px 0 70px;
}
.hero--shallow .hero__content {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero--shallow {
    height: 400px;
  }
}

.billboard__image {
  position: relative;
  max-width: 320px;
  height: auto;
  justify-self: center;
  align-self: center;
}
.billboard__image--double {
  max-width: 540px;
}
@media (min-width: 992px) {
  .billboard__image {
    max-width: 420px;
  }
  .grid--reverse .billboard__image {
    order: 2;
  }
  .billboard__image--double {
    max-width: none;
    align-self: flex-start;
  }
}
@media (min-width: 1240px) {
  .billboard__image {
    max-width: 480px;
  }
}

.billboard__content {
  display: flex;
  align-items: center;
}

.billboard__quote {
  position: relative;
  align-self: flex-start;
}
.billboard__quote:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 330px;
  top: 0;
  left: 0%;
  background-image: url("/wp-content/themes/base/staticmedia/images/SwirlBehindImage.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
}
@media (min-width: 768px) {
  .billboard__quote:before {
    height: 430px;
  }
}
.billboard__quote-inner {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .billboard__quote-inner {
    height: 430px;
  }
}
@media (min-width: 992px) {
  .grid--reverse .billboard__quote {
    order: 2;
  }
}

.billboard__graphic {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  opacity: 0.1;
}

.carousel {
  position: relative;
}
.carousel [role=group] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 0;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  left: auto !important;
  right: auto !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: none;
}

.swiper-pagination {
  position: relative;
  width: auto !important;
  margin: 0 2rem;
  top: auto !important;
  bottom: auto !important;
}

.swiper-pagination-bullet {
  width: calc(0.675rem + 2px);
  height: calc(0.675rem + 2px);
  margin: 0 0.65rem !important;
  background-color: white;
  border: 2px solid #4B3D95;
}
.swiper-pagination-bullet-active {
  background-color: #4B3D95;
}

.cookie-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 1.25rem 1rem;
  background-color: #444444;
  color: white;
  z-index: 100000;
}
@media (min-width: 992px) {
  .cookie-bar {
    padding: 1.5rem 1rem;
  }
}
.cookie-bar__notice {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cookie-bar__notice p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
}
@media (min-width: 992px) {
  .cookie-bar__notice {
    flex-direction: row;
    align-items: center;
  }
  .cookie-bar__notice p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: left;
    max-width: 60%;
  }
}

table {
  width: 100%;
  margin: 3.5rem 0;
}

.accordion {
  position: relative;
}

.accordion-item {
  border-bottom: 2px solid white;
}
.accordion-item__header-button {
  display: block;
  border-width: 0;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
  padding: 1.5rem 4rem 1.5rem 1rem;
  position: relative;
  text-align: left;
  width: 100%;
}
.accordion-item__title {
  margin: 0;
}
.accordion-item__indicator {
  position: absolute;
  right: 0;
  top: calc(50% - 1rem);
  width: 2.125rem;
  height: 2.125rem;
  pointer-events: none;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.accordion-item__indicator svg {
  width: 100%;
  height: 100%;
}
.accordion-item__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.6s;
  transition: max-height 0.6s;
}
.accordion-item--open .accordion-item__body {
  max-height: 0;
}
.accordion-item__body-content {
  padding: 1.5rem;
  background-color: white;
}
[aria-expanded=true] .accordion-item__indicator {
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.accordion-item + .accordion-item {
  margin-top: -1px;
}

@media (max-width: 767px) {
  .schedule-table {
    display: block;
    border: 2px solid #DADADA;
    border-bottom: none;
  }
  .schedule-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  .schedule-table tbody {
    display: block;
    width: 100%;
  }
  .schedule-table tr, .schedule-table td {
    position: static;
    display: block;
    overflow: visible;
    visibility: visible;
  }
  .schedule-table tr {
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #DADADA;
  }
  .schedule-table td {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    width: 100%;
    padding: 0.25rem 0;
    text-align: left;
  }
  .schedule-table td:before {
    content: attr(data-thead);
    display: block;
    font-weight: 600;
  }
}
@media (min-width: 768px) {
  .schedule-table {
    border: 1px solid #DADADA;
    border-left-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }
  .schedule-table th, .schedule-table td {
    padding: 0.625rem;
  }
  .schedule-table th {
    background-color: #EFEFEF;
    border: 1px solid #DADADA;
  }
  .schedule-table td {
    border-left: 1px solid #DADADA;
  }
}

.schedule-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4B3D95;
  font-weight: 600;
  text-decoration: none;
}
@media (min-width: 768px) {
  .schedule-link {
    margin: 0 auto;
    justify-content: center;
  }
}

.schedule-available {
  font-weight: 600;
}
.schedule-available.Yes {
  color: #007770;
}
.schedule-available.Full {
  color: #E71B32;
}
.schedule-available.Limited {
  color: #007770;
}

.schedule-grid {
  position: relative;
  border: 1px solid #707070;
  min-width: 300px;
}
.schedule-grid__header {
  margin: 0;
  padding: 1.125rem 1.125rem 1rem;
  font-size: 1.125rem;
  text-align: center;
}
.schedule-grid__cols {
  margin: 0;
  padding: 0;
  background-color: #EFEFEF;
  list-style: none;
}
.schedule-grid__cols li {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-top: 1px solid #707070;
}
.schedule-grid__cols li span {
  padding: 0.75rem;
}
.schedule-grid__cols li span:nth-child(2) {
  text-align: left;
  border-left: 1px solid #707070;
}

.relative {
  position: relative;
}

.object-fit {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
}
.object-fit--contain {
  object-fit: contain;
}
.object-fit--center {
  object-position: center;
}

.clip-path-circle {
  clip-path: circle(50%);
}

@media (min-width: 992px) {
  .sticky {
    position: sticky;
    top: 120px;
  }
}

.roundal {
  position: relative;
  z-index: 1;
}

iframe {
  width: 100%;
  border: none;
}

.w-100 {
  width: 100%;
}

.max-w-xs {
  max-width: 20rem;
} /* 320px */
.max-w-sm {
  max-width: 24rem;
} /* 384px */
.max-w-md {
  max-width: 28rem;
} /* 448px */
.max-w-lg {
  max-width: 32rem;
} /* 512px */
.max-w-xl {
  max-width: 36rem;
} /* 576px */
.max-w-2xl {
  max-width: 42rem;
} /* 672px */
.max-w-3xl {
  max-width: 48rem;
} /* 768px */
.max-w-4xl {
  max-width: 56rem;
} /* 896px */
.max-w-5xl {
  max-width: 64rem;
} /* 1024px */
.max-w-6xl {
  max-width: 72rem;
} /* 1152px */
.max-w-7xl {
  max-width: 80rem;
} /* 1280px */
.text-blue {
  color: #4B3D95;
}

.text-bold {
  font-weight: 700;
}

.text-white {
  color: white;
}

.text-physics {
  color: #4B3D95;
}

.text-chemistry {
  color: #E71B32;
}

.text-biology {
  color: #007770;
}

.text-maths {
  color: #FC8E03;
}

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

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-0 {
  padding: 0;
}

.p-2 {
  padding: 2rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.fade-in {
  opacity: 1 !important;
}

.fade-out {
  opacity: 0 !important;
}

.fade-in, .fade-out {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

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

.not-sr-only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

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

.is-scrolling .hide-on-scroll {
  display: none;
}

.show-on-scroll {
  display: none;
}
.is-scrolling .show-on-scroll {
  display: block;
}

.opacity-10 {
  opacity: 0.1;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

@media (min-width: 992px) {
  .md\:flex-col {
    flex-direction: column;
  }
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.align-top {
  align-self: flex-start;
}

.align-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.fill-white {
  fill: white;
}

.fill-blue {
  fill: #4B3D95;
}

.bg-blue {
  background-color: #4B3D95;
}

.bg-yellow {
  background-color: rgba(75, 61, 149, 0.2);
}

.bg-yellow {
  background-color: #FFC20F;
}

.bg-green {
  background-color: #007770;
}

.bg-orange {
  background-color: #FC8E03;
}

.bg-red {
  background-color: #FC8E03;
}

.bg-slate {
  background-color: #444444;
}

.block {
  display: block;
}

.no-decoration {
  text-decoration: none;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

@media (min-width: 768px) {
  .sm\:col-span-9 {
    grid-column: span 9/span 9;
  }
}

.physics-theme h2, .physics-theme h3, .physics-theme .button {
  color: #4B3D95;
}
.physics-theme .button {
  border-color: #4B3D95;
}
.physics-theme .button:hover {
  background-color: #4B3D95;
  color: white;
}

.chemistry-theme h2, .chemistry-theme h3, .chemistry-theme .button {
  color: #E71B32;
}
.chemistry-theme .button {
  border-color: #E71B32;
}
.chemistry-theme .button:hover {
  border-color: #E71B32;
  background-color: #E71B32;
  color: white;
}

.biology-theme h2, .biology-theme h3, .biology-theme .button {
  color: #007770;
}
.biology-theme .button {
  border-color: #007770;
}
.biology-theme .button:hover {
  border-color: #007770;
  background-color: #007770;
  color: white;
}

.maths-theme h2, .maths-theme h3, .maths-theme .button {
  color: #FC8E03;
}
.maths-theme .button {
  border-color: #FC8E03;
}
.maths-theme .button:hover {
  border-color: #FC8E03;
  background-color: #FC8E03;
  color: white;
}

/*# sourceMappingURL=style.css.map */
