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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

main h1,
main h2,
main h3,
main h4,
main h4,
main h6 {
  color: #000000;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
}
main * {
  color: #000000;
  font-family: "IBM Plex Sans", sans-serif;
}

main[role=main] {
  padding-top: 78px;
}
@media screen and (min-width: 1099px) {
  main[role=main] {
    padding-top: 120px;
  }
}

.region-content {
  padding-left: 0;
  padding-right: 0;
}

html.-scroll-locked {
  position: fixed;
  inset: 0;
  scroll-behavior: auto;
}

@keyframes show-submenu {
  0% {
    display: flex;
    transform: translateY(-100%);
  }
  100% {
    display: flex;
    transform: translateY(0);
  }
}
@keyframes hide-submenu {
  0% {
    display: flex;
    transform: translateY(0);
  }
  100% {
    display: none;
    transform: translateY(-100%);
  }
}
header[role=banner] {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  transition: transform 250ms ease;
  z-index: 20;
}
header[role=banner].-collapsed {
  transform: translateY(-100%);
}
header[role=banner] .navbar {
  background-color: #FFFFFF;
  border-bottom: 2px solid #9B2743;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  padding: 0;
  position: static;
}
header[role=banner] .navbar-inner {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1624px) {
  header[role=banner] .navbar-inner {
    margin-left: 12px;
    margin-right: 12px;
  }
}
header[role=banner] .navbar-brand {
  margin: 0;
  padding: 0;
}
header[role=banner] .navbar-brand img {
  margin: 0;
}

.menu--main .menu {
  margin: 0;
}
.menu--main .menu-item {
  list-style: none;
  padding: 0;
}
.menu--main .menu-item.level-0 > .menu-link {
  transition: opacity 250ms ease;
}
.menu--main .menu-item.level-0 > .menu-link svg {
  transition: rotate 250ms ease;
}
.menu--main .menu-item.level-0.-unopened > .menu-link-content {
  display: none;
}
.menu--main .menu-item.level-0.-active > .menu-link svg {
  rotate: 180deg;
}
.menu--main .menu-link {
  color: #000000;
  display: block;
  font-size: 18px;
  line-height: 1.1em;
  margin-bottom: 16px;
  text-decoration: none;
  transition: opacity 200ms ease;
}
.menu--main a.menu-link:hover {
  opacity: 0.7;
}
.menu--main .menu-link.level-1 {
  font-size: 20px;
  font-weight: 600;
}

@media screen and (min-width: 1099px) {
  header[role=banner] .navbar-inner {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  header[role=banner] .navbar-brand img {
    height: 75px;
  }
  .menu--main {
    position: static;
  }
  .menu--main .mobile-nav {
    display: none;
  }
  .menu--main .menu.level-0 {
    display: flex;
    align-items: center;
    column-gap: clamp(8px, 1.5vw, 28px);
    margin: 0;
  }
  .menu--main .menu.level-0:has(.menu-item.-active) .menu-item.level-0:not(.-active) > button {
    opacity: 0.6;
  }
  .menu--main .menu.level-1 {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
  }
  .menu--main .menu-item.level-0 > .menu-link {
    background: none;
    border: none;
    color: #000000;
    display: flex;
    align-items: center;
    column-gap: 0.3em;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65em;
    margin-bottom: 0;
    padding: 0;
    text-decoration: none;
  }
  .menu--main .menu-item.level-0 > .menu-link-content {
    animation: hide-submenu 250ms ease forwards;
    background-color: #FFFFFF;
    border-bottom: 2px solid #9B2743;
    border-bottom-right-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    overflow: hidden;
    position: absolute;
    inset: 100% 0 auto 0;
    z-index: -1;
    max-width: 1530px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1099px) and (max-width: 1570px) {
  .menu--main .menu-item.level-0 > .menu-link-content {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1099px) {
  .menu--main .menu-item.level-0 > .menu-link-content > .menu-link-dropdown {
    flex: 1;
    padding: 40px 40px 50px 40px;
  }
  .menu--main .menu-item.level-0 > .menu-link-content > .menu-link-dropdown > .menu-link {
    color: #9B2743;
    font-size: 32px;
    font-weight: 500;
    line-height: 0.625em;
    margin-bottom: 0.8em;
    width: fit-content;
  }
  .menu--main .menu-item.level-0 > .menu-link-content > .field--name-field-icon-links {
    background-color: #F3F3F3;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 30px;
  }
  .menu--main .menu-item.level-0.-active > .menu-link-content {
    animation: show-submenu 250ms ease forwards;
  }
}
@media screen and (max-width: 1100px) {
  header[role=banner] .navbar-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header[role=banner] .navbar-brand img {
    height: 56px;
  }
  header[role=banner].-mobile-open .menu.level-0 {
    display: flex;
  }
  header[role=banner].-mobile-open .find-it-toggle {
    display: none;
  }
  header[role=banner].-mobile-open .main-nav-toggle__open {
    display: none;
  }
  header[role=banner].-mobile-open .main-nav-toggle__close {
    display: block;
  }
  .menu--main .mobile-nav {
    background-color: #F3F3F3;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
    border-bottom-left-radius: unset;
  }
  .menu--main .find-it-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    column-gap: 4px;
    font-family: "Archivo", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 2em;
    padding: 8px 16px 8px 12px;
    text-transform: uppercase;
  }
  .menu--main .find-it-toggle svg {
    height: 12px;
    width: 12px;
  }
  .menu--main .main-nav-toggle {
    background-color: #9B2743;
    padding: 11px;
    border: none;
    line-height: 0;
    border-radius: 12px;
    border-bottom-left-radius: unset;
  }
  .menu--main .main-nav-toggle svg {
    height: 20px;
    width: 20px;
  }
  .menu--main .main-nav-toggle__close {
    display: none;
  }
  .menu--main .menu.level-0 {
    display: none;
    align-items: stretch;
    flex-flow: column nowrap;
    row-gap: 12px;
    background-color: #FFFFFF;
    margin: 0;
    overflow-y: scroll;
    padding: 100px 12px 60px 12px;
    position: fixed;
    inset: 0;
    z-index: -1;
  }
  .menu--main .menu-item.level-0 {
    list-style: none;
  }
  .menu--main .menu-item.level-0 > .menu-link {
    background: none;
    border: none;
    color: #9B2743;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65em;
    margin: 0;
    justify-content: space-between;
    padding: 4px 0;
    width: 100%;
  }
  .menu--main .menu-item.level-0 > .menu-link svg {
    fill: #9B2743;
  }
  .menu--main .menu-item.level-0:has(.menu) > .menu-link {
    border-bottom: 1px solid #9B2743;
  }
  .menu--main .menu-item.level-0 > .menu-link-content {
    display: none;
  }
  .menu--main .menu-item.level-0 > .menu-link-content > .field--name-field-icon-links {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 18px;
  }
  .menu--main .menu-item.level-0 > .menu-link-content > .menu-link-dropdown > .menu-link {
    color: #9B2743;
    font-size: 24px;
    font-weight: 500;
    line-height: 0.625em;
    margin-top: 0.8em;
    width: fit-content;
  }
  .menu--main .menu-item.level-0.-active > .menu-link-content {
    display: block;
  }
  .menu--main .menu-link {
    margin-bottom: 10px;
  }
  .menu--main .menu-link.level-1 {
    font-size: 16px;
    margin-top: 24px;
  }
  .menu--main .menu-link.level-2 {
    font-size: 14px;
  }
}
body.toolbar-horizontal header[role=banner],
body.toolbar-vertical header[role=banner] {
  top: var(--gin-toolbar-y-offset);
}
@media screen and (max-width: 1100px) {
  body.toolbar-horizontal .menu--main .menu.level-0,
  body.toolbar-vertical .menu--main .menu.level-0 {
    top: var(--gin-toolbar-y-offset);
  }
}

footer[role=contentinfo] {
  padding: 0;
  margin-top: 0;
}

.region-footer {
  padding: 0;
  position: relative;
}
.region-footer * {
  font-family: "Archivo", sans-serif;
}
.region-footer .region__background {
  position: absolute;
  inset: 0;
}
.region-footer .region__background img {
  filter: contrast(1.15);
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.region-footer .region__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #701634;
  mix-blend-mode: color;
}
.region-footer .region__content {
  position: relative;
  z-index: 10;
}
.region-footer .region__content-inner {
  padding: 55px 0 45px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 24px;
  justify-content: space-between;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1490px) {
  .region-footer .region__content-inner {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.region-footer .block-bs5-alvernia-footersociallinks {
  position: absolute;
  inset: 0 0 auto auto;
}
.region-footer .region__logo {
  flex-basis: 100%;
}
.region-footer .region__logo img {
  width: auto;
}
.region-footer .region__logo p {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.75em;
  margin-top: 14px;
}
.region-footer .region__contact {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 20px;
}
.region-footer .region__contact li {
  display: flex;
  align-items: center;
  column-gap: 15px;
  max-width: 250px;
}
.region-footer .region__contact .contact-icon {
  background-color: #EAAA00;
  height: 30px;
  width: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border-bottom-left-radius: unset;
}
.region-footer .region__contact .contact-icon svg {
  height: 16px;
  width: 16px;
}
.region-footer .region__contact a, .region-footer .region__contact address {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
}
.region-footer .region__contact a {
  text-decoration: none;
  transition: opacity 150ms ease;
}
.region-footer .region__contact a:hover, .region-footer .region__contact a:focus-visible {
  opacity: 0.7;
}
.region-footer .block-menu {
  color: #FFFFFF;
}
.region-footer .block-menu h5 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 26px;
}
.region-footer .block-menu .nav {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 10px;
}
.region-footer .block-menu .nav-item a {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 20px;
  line-height: 1.5em;
  padding: 0;
  transition: opacity 150ms ease;
}
.region-footer .block-menu .nav-item a:hover, .region-footer .block-menu .nav-item a:focus-visible {
  opacity: 0.7;
}
.region-footer .block-menu .nav-item a::before {
  content: "";
  background-image: url("/themes/custom/bs5_alvernia/icons/footer-menu-caret.svg");
  display: block;
  height: 10px;
  width: 6px;
}
.region-footer .region__recruiter-inner {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px 24px;
  width: fit-content;
  border-radius: 50px;
  border-bottom-left-radius: unset;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 10px;
}
.region-footer .region__recruiter-inner img {
  border-radius: 100vmax;
  object-fit: cover;
  border: 1px solid #000000;
  height: 130px;
  width: 130px;
}
.region-footer .region__recruiter-inner h5 {
  color: #FFFFFF;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.9em;
  margin-bottom: 0;
}
.region-footer .region__copyright {
  color: #FFFFFF;
  flex-basis: 100%;
  font-size: 16px;
  line-height: 1.9em;
}
@media screen and (max-width: 1500px) {
  .region-footer .region__content-inner {
    row-gap: 48px;
  }
  .region-footer .region__logo {
    order: -3;
  }
  .region-footer .region__contact {
    order: -2;
    flex-basis: 50%;
  }
  .region-footer .region__recruiter {
    order: -1;
    flex-basis: 50%;
  }
  .region-footer .region__recruiter-inner {
    margin-left: auto;
  }
}
@media screen and (max-width: 1100px) {
  .region-footer .region__content-inner {
    padding-top: 140px;
  }
  .region-footer .block-bs5-alvernia-footersociallinks {
    left: 0;
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .region-footer .region__content-inner {
    row-gap: 32px;
  }
  .region-footer .region__content-inner > * {
    flex-basis: 100%;
  }
  .region-footer .region__recruiter-inner {
    width: auto;
  }
}

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

.alv-button {
  background-color: #9B2743;
  display: flex;
  color: #FFFFFF;
  fill: #FFFFFF;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  padding: 1em 1.25em;
  position: relative;
  transition: transform 250ms ease;
  width: fit-content;
  border-radius: 100vmax;
  border-bottom-left-radius: unset;
}
.alv-button a {
  color: inherit;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4em;
  text-decoration: none;
  text-transform: uppercase;
}
.alv-button a::before {
  content: "";
  position: absolute;
  inset: 0;
}
.alv-button svg {
  flex-shrink: 0;
  margin-bottom: 0.2em;
}
.alv-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0.2em solid;
  border-color: inherit;
  transition: transform 250ms ease;
  border-radius: 100vmax;
  border-bottom-left-radius: unset;
}
.alv-button:hover, .alv-button:focus-visible {
  transform: translate(0.5em, -0.5em);
}
.alv-button:hover::before, .alv-button:focus-visible::before {
  transform: translate(-0.5em, 0.5em);
}
.alv-button.button-icon--pencil {
  flex-direction: row-reverse;
}
.alv-button.button-icon--pencil a {
  padding-left: 0.35em;
}
.alv-button.button-icon--arrow a {
  padding-right: 0.35em;
}
.alv-button.button-color--black {
  background-color: #000000;
  border-color: #000000;
}
.alv-button.button-color--blue {
  background-color: #0089CE;
  border-color: #0089CE;
}
.alv-button.button-color--grey {
  background-color: #A2AAAD;
  border-color: #A2AAAD;
}
.alv-button.button-color--purple {
  background-color: #7C6992;
  border-color: #7C6992;
}
.alv-button.button-color--red {
  background-color: #9B2743;
  border-color: #9B2743;
}
.alv-button.button-color--yellow {
  background-color: #EAAA00;
  border-color: #EAAA00;
  color: #000000;
  fill: #000000;
}
.alv-button.button--wide {
  min-width: 235px;
}

.block-system-breadcrumb-block {
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1640px) {
  .block-system-breadcrumb-block {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.block-system-breadcrumb-block .breadcrumb {
  margin-bottom: 0;
}
.block-system-breadcrumb-block .breadcrumb-item {
  color: #A2AAAD;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  padding-left: 0;
}
.block-system-breadcrumb-block .breadcrumb-item::before {
  color: #A2AAAD;
  font-weight: 400;
  padding-left: 4px;
  padding-right: 4px;
}
.block-system-breadcrumb-block .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
}
.block-system-breadcrumb-block .breadcrumb-item a:hover, .block-system-breadcrumb-block .breadcrumb-item a:focus-visible {
  text-decoration: underline;
}
.block-system-breadcrumb-block .breadcrumb-item:last-child {
  font-weight: 700;
}

.ck-content h2, .ck-content h3, .ck-content h4, .ck-content h5, .ck-content h6,
.text-formatted h2,
.text-formatted h3,
.text-formatted h4,
.text-formatted h5,
.text-formatted h6 {
  color: #19232B;
  font-weight: 700;
  line-height: 1.2em;
}
.ck-content h2,
.text-formatted h2 {
  font-size: clamp(36px, 6vw, 48px);
  margin-top: 1.25em;
  margin-bottom: 0.625em;
}
.ck-content h3,
.text-formatted h3 {
  font-size: clamp(28px, 4.5vw, 36px);
  margin-top: 1.33em;
  margin-bottom: 0.66em;
}
.ck-content h4,
.text-formatted h4 {
  font-size: clamp(24px, 3.75vw, 30px);
  margin-top: 1.6em;
  margin-bottom: 0.8em;
}
.ck-content h5,
.text-formatted h5 {
  font-size: clamp(20px, 3vw, 24px);
  margin-top: 1.33em;
  margin-bottom: 0.66em;
}
.ck-content h6,
.text-formatted h6 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
}
.ck-content p, .ck-content li, .ck-content a, .ck-content span,
.text-formatted p,
.text-formatted li,
.text-formatted a,
.text-formatted span {
  line-height: 1.8em;
}
.ck-content p,
.text-formatted p {
  margin-top: 20px;
  margin-bottom: 10px;
}
.ck-content ul, .ck-content ol,
.text-formatted ul,
.text-formatted ol {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-left: 2em;
}
.ck-content ul,
.text-formatted ul {
  list-style: disc;
}
.ck-content ol,
.text-formatted ol {
  list-style: decimal;
}
.ck-content li,
.text-formatted li {
  margin-top: 0.5em;
}
.ck-content a,
.text-formatted a {
  color: #9B2743;
  font-weight: 600;
  text-decoration: underline;
}
.ck-content a:hover,
.text-formatted a:hover {
  text-decoration: none;
}
.ck-content table,
.text-formatted table {
  margin-top: 60px;
  margin-bottom: 60px;
}
.ck-content hr,
.text-formatted hr {
  border-top: 4px solid #9B2743;
  margin-top: 60px;
  margin-bottom: 60px;
  opacity: 1;
}
.ck-content .media,
.text-formatted .media {
  margin-top: 40px;
  margin-bottom: 40px;
}
.ck-content .media.media--type-image,
.text-formatted .media.media--type-image {
  width: fit-content;
}
.ck-content .media.media--type-image img,
.text-formatted .media.media--type-image img {
  border-radius: 32px;
  border-bottom-left-radius: unset;
}
.ck-content .media.media--type-video,
.text-formatted .media.media--type-video {
  width: 100%;
}
.ck-content .media.media--type-video iframe,
.text-formatted .media.media--type-video iframe {
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
}
.ck-content .ckeditor-accordion-container,
.text-formatted .ckeditor-accordion-container {
  margin-top: 20px;
  margin-bottom: 20px;
}
.ck-content .ckeditor-accordion-container dl,
.text-formatted .ckeditor-accordion-container dl {
  border-color: #9B2743;
  border-width: 2px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 20px;
  border-bottom-left-radius: unset;
}
.ck-content .ckeditor-accordion-container dl dt > a,
.text-formatted .ckeditor-accordion-container dl dt > a {
  background-color: #9B2743;
  border: none;
  font-size: 20px;
  line-height: 1.35em;
  text-decoration: none;
}
.ck-content .ckeditor-accordion-container dl dt > a:hover,
.text-formatted .ckeditor-accordion-container dl dt > a:hover {
  background-color: #711533;
}
.ck-content blockquote,
.text-formatted blockquote {
  border-left: 4px solid #9B2743;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 20px;
  position: relative;
}
.ck-content blockquote *,
.text-formatted blockquote * {
  font-size: 24px;
}
.ck-content blockquote::after,
.text-formatted blockquote::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("/themes/custom/bs5_alvernia/icons/drop-quote.svg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.5;
  height: 40px;
  width: 40px;
  z-index: -1;
}
.ck-content .cktemplate--text-bubble,
.text-formatted .cktemplate--text-bubble {
  background-color: #F3F3F3;
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 40px;
  padding: 32px;
  width: fit-content;
  border-radius: 64px;
  border-bottom-left-radius: unset;
}
.ck-content .cktemplate--text-bubble *:first-child,
.text-formatted .cktemplate--text-bubble *:first-child {
  margin-top: 0;
}
.ck-content .cktemplate--text-bubble *:last-child,
.text-formatted .cktemplate--text-bubble *:last-child {
  margin-bottom: 0;
}
.ck-content .cktemplate--text-bubble:has(.text-align-right),
.text-formatted .cktemplate--text-bubble:has(.text-align-right) {
  margin-right: 0;
  margin-left: auto;
  border-radius: 64px;
  border-bottom-right-radius: unset;
}
@media screen and (max-width: 700px) {
  .ck-content .cktemplate--text-bubble,
  .text-formatted .cktemplate--text-bubble {
    padding: 28px 20px;
    border-radius: 32px;
    border-bottom-left-radius: unset;
  }
  .ck-content .cktemplate--text-bubble:has(.text-align-right),
  .text-formatted .cktemplate--text-bubble:has(.text-align-right) {
    border-radius: 32px;
    border-bottom-right-radius: unset;
  }
}

.block-local-tasks-block {
  position: fixed;
  top: 40%;
  left: 10px;
  opacity: 0.3;
  transition: opacity 200ms ease;
  z-index: 100;
}
.block-local-tasks-block:hover, .block-local-tasks-block:focus-within {
  opacity: 1;
}
.block-local-tasks-block nav.tabs-primary {
  margin: 0;
}
.block-local-tasks-block nav.tabs-primary > ul {
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
  flex-flow: column nowrap;
  overflow: hidden;
  border-radius: 20px;
  border-bottom-left-radius: unset;
}
.block-local-tasks-block .nav-item a {
  background-color: #F3F3F3;
  border: none;
  border-radius: 0;
  color: #19232B;
  font-size: 18px;
  font-weight: 600;
}
.block-local-tasks-block .nav-item a:hover, .block-local-tasks-block .nav-item a:focus-visible {
  background-color: #D1D3D4;
  border: none;
}
.block-local-tasks-block .nav-item.active a {
  background-color: #EAAA00;
  color: #FFFFFF;
}

#modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  display: none;
  z-index: 1000;
}
#modal.-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__container {
  background-color: #FFFFFF;
  border-top-left-radius: 50px;
  padding: 60px 40px;
  flex: 1;
  max-width: 1200px;
  max-height: 800px;
  overflow-y: scroll;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  line-height: 0;
  padding: 8px;
}
.modal__close svg {
  fill: #000000;
}

body.toolbar-horizontal #modal,
body.toolbar-vertical #modal {
  top: var(--gin-toolbar-y-offset);
}

.modal-group__content {
  display: none;
}

.block-page-title-block {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sharethis {
  margin-top: 100px;
  margin-bottom: 100px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1040px) {
  .sharethis {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.sharethis__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6em;
  margin-bottom: 0.5em;
  text-align: center;
}

.sharethis__buttons {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 12px;
}

.sharethis__button {
  background-color: #FFFFFF;
  border: 1px solid #F3F3F3;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 10px 24px;
  transition: background-color 250ms ease;
}
.sharethis__button:hover {
  background-color: #F3F3F3;
}
.sharethis__button span {
  line-height: 0;
}
.sharethis__button svg {
  height: 24px;
  width: 24px;
}

body #st-el-1 .st-close {
  padding: 8px;
}
body #st-el-1 .st-logo img {
  width: auto;
}

.block-bs5-alvernia-footersociallinks {
  background-color: #FFFFFF;
  border-bottom-left-radius: 32px;
  padding: 40px 32px;
  width: fit-content;
}
.block-bs5-alvernia-footersociallinks .field--name-field-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 22px;
}
.block-bs5-alvernia-footersociallinks .social-link {
  transition: opacity 200ms ease;
}
.block-bs5-alvernia-footersociallinks .social-link svg {
  fill: inherit;
  height: 42px;
  width: 68px;
}
.block-bs5-alvernia-footersociallinks .social-link:hover, .block-bs5-alvernia-footersociallinks .social-link:focus-visible {
  opacity: 0.7;
}
.block-bs5-alvernia-footersociallinks .social-link.icon-color--black {
  fill: #000000;
}
.block-bs5-alvernia-footersociallinks .social-link.icon-color--blue {
  fill: #0089CE;
}
.block-bs5-alvernia-footersociallinks .social-link.icon-color--grey {
  fill: #A2AAAD;
}
.block-bs5-alvernia-footersociallinks .social-link.icon-color--purple {
  fill: #7C6992;
}
.block-bs5-alvernia-footersociallinks .social-link.icon-color--red {
  fill: #9B2743;
}
.block-bs5-alvernia-footersociallinks .social-link.icon-color--yellow {
  fill: #EAAA00;
}
@media screen and (max-width: 800px) {
  .block-bs5-alvernia-footersociallinks .field--name-field-social-links {
    column-gap: 14px;
  }
  .block-bs5-alvernia-footersociallinks .social-link svg {
    height: 22px;
    width: 32px;
  }
}

.webform-submission-form .form-control {
  font-size: 17px;
  line-height: 1.5em;
  padding: 1.2em;
}
.webform-submission-form .form-control::placeholder {
  color: #A2AAAD;
}
.webform-submission-form .form-type-date input::-webkit-calendar-picker-indicator {
  background-image: url("/themes/custom/bs5_alvernia/icons/calendar.svg");
  block-size: 1.4em;
  inline-size: 1.4em;
  padding: 0;
}
.webform-submission-form .submit-input-wrapper {
  font-size: 16px;
  height: fit-content;
  width: fit-content;
  position: relative;
  transition: transform 250ms ease;
}
.webform-submission-form .submit-input-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3em 3em 3em 0;
  border: 0.2em solid #EAAA00;
  transition: transform 250ms ease;
}
.webform-submission-form .submit-input-wrapper input, .webform-submission-form .submit-input-wrapper button {
  background-color: #EAAA00;
  border: none;
  border-radius: 3em 3em 3em 0;
  color: #000000;
  font-family: "Archivo", sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5em;
  padding: 0.8em 1.25em;
  position: relative;
  text-transform: uppercase;
  width: fit-content;
  z-index: 10;
}
.webform-submission-form .submit-input-wrapper:hover, .webform-submission-form .submit-input-wrapper:has(input:focus-visible) {
  transform: translate(0.5em, -0.5em);
}
.webform-submission-form .submit-input-wrapper:hover input, .webform-submission-form .submit-input-wrapper:hover button, .webform-submission-form .submit-input-wrapper:has(input:focus-visible) input, .webform-submission-form .submit-input-wrapper:has(input:focus-visible) button {
  background-color: #EAAA00;
}
.webform-submission-form .submit-input-wrapper:hover::before, .webform-submission-form .submit-input-wrapper:has(input:focus-visible)::before {
  transform: translate(-0.5em, 0.5em);
}
.webform-submission-form .icon--location {
  background-image: url("/themes/custom/bs5_alvernia/icons/map-pin.svg");
  background-position: center right 1.2em;
  background-repeat: no-repeat;
  background-size: 1.4em 1.4em;
}

.page-node-type-campaign-landing-page-2025 .block-system-breadcrumb-block,
.page-node-type-campaign-landing-page-2025 .region-nav-main,
.page-node-type-campaign-landing-page-2025 .region-nav-additional {
  display: none;
}

.node--type-campaign-landing-page-2025.node--view-mode-full .hero {
  position: relative;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__copy {
  background-color: #FFFFFF;
  border-bottom: 4px solid #9B2743;
  border-radius: 20px 20px 0 0;
  margin-top: -20px;
  position: relative;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__copy-inner {
  padding: 42px 12px;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-heading {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 0;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-program-highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 10px;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-program-highlights > li {
  display: flex;
  align-items: flex-start;
  column-gap: 12px;
  font-size: clamp(18px, 4vw, 24px);
  flex: 1;
  line-height: 1.2em;
  text-wrap: balance;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-program-highlights > li span {
  color: inherit;
  padding-top: 6px;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-program-highlights > li svg {
  fill: #9B2743;
  flex-shrink: 0;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-summary {
  font-size: 17px;
  line-height: 1.6em;
  margin-top: 24px;
  margin-bottom: 0;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 0;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__details .hero__detail {
  background-color: #F3F3F3;
  border-radius: 100vmax;
  font-size: clamp(16px, 5vw, 24px);
  margin: 0;
  padding: 0.33em 1em;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__details .hero__detail dt, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__details .hero__detail dd {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-size: inherit;
  line-height: 1.6em;
  margin: 0;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__details .hero__detail dt {
  font-weight: 400;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__details .hero__detail dd {
  font-weight: 700;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__details .hero__detail dd div {
  font-family: inherit;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-testimonial {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6em;
  margin-top: 24px;
  margin-bottom: 0;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-testimonial::before, .node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-testimonial::after {
  content: '"';
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form {
  background-color: #F3F3F3;
  border-radius: 30px 30px 0 0;
  flex-shrink: 0;
  padding: 42px 20px;
  position: relative;
  margin-top: 0;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_label {
  font-size: 12px;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_text, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_select {
  font-size: 17px;
  margin-bottom: 24px;
  position: relative;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_text .form_label,
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_text input::placeholder, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_select .form_label,
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_select input::placeholder {
  position: absolute;
  inset: 0;
  color: #A2AAAD;
  font-size: inherit;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1em 1.25em;
  line-height: 1.75em;
  pointer-events: none;
  z-index: 1;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_text input::placeholder, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_select input::placeholder {
  padding: 1.25rem;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_text input, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_text select, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_select input, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_select select {
  background-image: none;
  background-color: #FFFFFF;
  border: 1px solid #A2AAAD;
  border-radius: 5px;
  font-size: inherit;
  height: auto;
  line-height: 1.75em;
  padding: 1em 1.25em;
  position: relative;
  z-index: 0;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form input, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form select {
  width: 100%;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit {
  font-size: 16px;
  height: fit-content;
  width: fit-content;
  position: relative;
  transition: transform 250ms ease;
  width: 100%;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3em 3em 3em 0;
  border: 0.2em solid #EAAA00;
  transition: transform 250ms ease;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit input, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit button {
  background-color: #EAAA00;
  border: none;
  border-radius: 3em 3em 3em 0;
  color: #000000;
  font-family: "Archivo", sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5em;
  padding: 0.8em 1.25em;
  position: relative;
  text-transform: uppercase;
  width: fit-content;
  z-index: 10;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit:hover, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit:has(input:focus-visible) {
  transform: translate(0.5em, -0.5em);
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit:hover input, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit:hover button, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit:has(input:focus-visible) input, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit:has(input:focus-visible) button {
  background-color: #EAAA00;
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit:hover::before, .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit:has(input:focus-visible)::before {
  transform: translate(-0.5em, 0.5em);
}
.node--type-campaign-landing-page-2025.node--view-mode-full .hero__form .form_action_submit button {
  width: 100%;
}
.node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__copy {
  background-color: #9B2743;
}
.node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .field--name-field-heading,
.node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .field--name-field-summary,
.node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .field--name-field-testimonial {
  color: #FFFFFF;
}
.node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .field--name-field-program-highlights > li {
  color: #FFFFFF;
}
.node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .field--name-field-program-highlights > li svg {
  fill: #EAAA00;
}
.node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__details .hero__detail {
  background-color: #EAAA00;
}
@media screen and (min-width: 900px) {
  .node--type-campaign-landing-page-2025.node--view-mode-full .hero__copy {
    background-color: unset;
    border-bottom: none;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-program-highlights,
  .node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-summary,
  .node--type-campaign-landing-page-2025.node--view-mode-full .hero__details,
  .node--type-campaign-landing-page-2025.node--view-mode-full .field--name-field-testimonial {
    margin-top: 32px;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form {
    max-width: 365px;
    margin-top: calc(-100px - 15vh);
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-standard .hero__media img {
    height: 100vh;
    max-height: 1200px;
    object-fit: cover;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-standard .hero__copy {
    position: relative;
    inset: auto 0 0 0;
    display: flex;
    align-items: flex-end;
    margin-left: auto;
    margin-right: auto;
    max-width: 1730px;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-standard .hero__copy-inner {
    background-color: #FFFFFF;
    border-bottom: 4px solid #9B2743;
    border-radius: 64px 64px 0 0;
    flex: 1;
    max-width: 1285px;
    padding: 64px 42px;
    min-height: 400px;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-standard h1 {
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.25em;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-standard .field--name-field-program-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-standard .field--name-field-program-highlights svg path {
    fill: #9B2743;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__media {
    inset: 0;
    position: absolute;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__media .contextual-region {
    position: static;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__media img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__copy {
    background-color: unset;
    padding-top: 85px;
    padding-left: 45px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 10;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__copy-inner {
    flex-basis: 62.5%;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate h1 {
    color: #FFFFFF;
    font-size: clamp(56px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.2em;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__copy-primary {
    background-color: #9B2743;
    border-radius: 64px 64px 0 0;
    margin-top: 36px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 0;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .field--name-field-summary {
    margin-top: 0;
    order: -1;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .field--name-field-program-highlights {
    row-gap: 24px;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__details .hero__detail {
    background-color: #EAAA00;
    font-size: 20px;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .field--name-field-testimonial {
    font-size: 24px;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-post-graduate .hero__form {
    background-color: #FFFFFF;
    padding: 72px 42px;
    border-radius: 54px;
    border-bottom-right-radius: unset;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-returning-student .hero__media img {
    height: 100vh;
    max-height: 1200px;
    object-fit: cover;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-returning-student .hero__media::after {
    content: "";
    position: absolute;
    inset: calc(100% - 100px) 0 0 0;
    background-color: #F3F3F3;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-returning-student .hero__copy {
    position: absolute;
    inset: 0 0 25px 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-returning-student .hero__copy-inner {
    background-color: #FFFFFF;
    border-bottom: 4px solid #9B2743;
    border-radius: 64px 64px 0 0;
    flex-basis: 55%;
    padding: 32px 42px;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-returning-student .hero__copy-primary {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 0;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-returning-student .field--name-field-heading {
    font-size: 44px;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-returning-student .field--name-field-summary {
    order: -1;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-returning-student .hero__form {
    background-color: #FFFFFF;
    border-radius: 54px;
    border-bottom-right-radius: unset;
  }
}
@media screen and (min-width: 1500px) {
  .node--type-campaign-landing-page-2025.node--view-mode-full .hero__form {
    max-width: 450px;
    padding: 60px 42px;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-standard .hero__copy {
    padding-left: 64px;
  }
  .node--type-campaign-landing-page-2025.node--view-mode-full.node--campaign-type-returning-student .hero__copy {
    padding-left: 64px;
    padding-right: 64px;
  }
}

@media screen and (max-width: 900px) {
  .page-node-type-event-2025 .block-system-breadcrumb-block {
    display: none;
  }
}
.node--type-event-2025.node--view-mode-full .hero {
  margin-top: 20px;
  margin-bottom: 56px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1624px) {
  .node--type-event-2025.node--view-mode-full .hero {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.node--type-event-2025.node--view-mode-full .hero__media img {
  border-top-right-radius: 50px;
}
.node--type-event-2025.node--view-mode-full .hero__copy {
  background-color: #F3F3F3;
  margin-top: -56px;
  padding: 32px 24px;
  position: relative;
  border-radius: 56px;
  border-bottom-left-radius: unset;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 12px;
}
.node--type-event-2025.node--view-mode-full h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6em;
  margin-bottom: 0;
}
.node--type-event-2025.node--view-mode-full .field--name-field-summary {
  font-size: 20px;
  line-height: 1.6em;
  margin-bottom: 0;
}
.node--type-event-2025.node--view-mode-full .hero__register-link {
  margin-top: 12px;
  min-width: 235px;
  width: 100%;
}
.node--type-event-2025.node--view-mode-full .event-details {
  display: flex;
  flex-flow: row wrap;
  gap: 4px;
  margin-top: 56px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1624px) {
  .node--type-event-2025.node--view-mode-full .event-details {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.node--type-event-2025.node--view-mode-full .event-details > li {
  background-color: #F3F3F3;
  border-radius: 100vmax;
  font-family: "Archivo", sans-serif;
  font-size: clamp(14px, 3vw, 24px);
  line-height: 1.6em;
  padding: 0.333em 1em;
}
.node--type-event-2025.node--view-mode-full .event-buttons {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: fit-content;
}
@keyframes show-add-calendar {
  0% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@keyframes hide-add-calendar {
  0% {
    display: flex;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
.node--type-event-2025.node--view-mode-full .add-calendar {
  animation: hide-add-calendar 250ms ease forwards;
  position: absolute;
  inset: 50% 0 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.node--type-event-2025.node--view-mode-full .add-calendar.-active {
  animation: show-add-calendar 250ms ease forwards;
}
.node--type-event-2025.node--view-mode-full .add-calendar__center {
  background-color: #FFFFFF;
  box-shadow: 4px 4px 24px 0 rgba(0, 0, 0, 0.04);
  padding: 42px 64px;
  height: fit-content;
  position: relative;
  text-align: center;
  z-index: 10;
  border-radius: 64px;
  border-bottom-left-radius: unset;
}
.node--type-event-2025.node--view-mode-full .add-calendar__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 32px;
}
.node--type-event-2025.node--view-mode-full .add-calendar__buttons {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 12px;
}
.node--type-event-2025.node--view-mode-full .add-calendar__button {
  background-color: #F3F3F3;
  border: 1px solid #F3F3F3;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  padding: 0.6em 1.5em;
  text-decoration: none;
  transition: background-color 250ms ease;
}
.node--type-event-2025.node--view-mode-full .add-calendar__button:hover {
  background-color: #FFFFFF;
}
.node--type-event-2025.node--view-mode-full .add-calendar__button span {
  font-size: inherit;
  line-height: 0;
}
.node--type-event-2025.node--view-mode-full .add-calendar__button svg {
  height: 30px;
  width: 30px;
}
.node--type-event-2025.node--view-mode-full .add-calendar__close {
  background-color: transparent;
  border: none;
  border-radius: 100vmax;
  line-height: 0;
  padding: 10px;
  position: absolute;
  top: 24px;
  right: 34px;
  transition: background-color 200ms ease;
}
.node--type-event-2025.node--view-mode-full .add-calendar__close:hover {
  background-color: #F3F3F3;
}
.node--type-event-2025.node--view-mode-full .add-calendar__close svg {
  height: 14px;
  width: 14px;
}

@media screen and (min-width: 900px) {
  .node--type-event-2025.node--view-mode-full .hero {
    display: flex;
    margin-bottom: 100px;
  }
  .node--type-event-2025.node--view-mode-full .hero__media {
    align-self: stretch;
    flex: 1;
    margin-right: -90px;
  }
  .node--type-event-2025.node--view-mode-full .hero__media div:not(.contextual), .node--type-event-2025.node--view-mode-full .hero__media img {
    height: 100%;
  }
  .node--type-event-2025.node--view-mode-full .hero__media img {
    border-top-right-radius: 50px;
    object-fit: cover;
  }
  .node--type-event-2025.node--view-mode-full .hero__copy {
    align-self: center;
    background-color: #F3F3F3;
    border-radius: 0 50px 50px 0;
    flex-basis: 50%;
    margin-top: 92px;
    margin-bottom: 92px;
    padding: 42px 32px;
    position: relative;
    row-gap: 24px;
    z-index: 10;
  }
  .node--type-event-2025.node--view-mode-full h1 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.25em;
  }
  .node--type-event-2025.node--view-mode-full .hero__register-link {
    width: fit-content;
  }
  .node--type-event-2025.node--view-mode-full .event-details {
    justify-content: center;
  }
  .node--type-event-2025.node--view-mode-full .add-calendar__buttons {
    flex-direction: row;
    column-gap: 24px;
    justify-content: center;
  }
}
.node--type-event-2025.node--view-mode-teaser {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 24px;
  position: relative;
}
.node--type-event-2025.node--view-mode-teaser .node__media {
  position: relative;
}
.node--type-event-2025.node--view-mode-teaser .node__media img {
  aspect-ratio: 64/52;
  border-radius: 0 90px;
  object-fit: cover;
}
.node--type-event-2025.node--view-mode-teaser .field--name-field-event-type {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0089CE;
  border-radius: 0 100vmax 100vmax 0;
  font-size: 18px;
  padding: 0.66em 1.33em;
  z-index: 10;
}
.node--type-event-2025.node--view-mode-teaser .field--name-field-event-type p {
  color: #FFFFFF;
  font-size: inherit;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 0;
}
.node--type-event-2025.node--view-mode-teaser .node__copy {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 12px;
}
.node--type-event-2025.node--view-mode-teaser h3 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25em;
  margin-bottom: 0;
}
.node--type-event-2025.node--view-mode-teaser .event-details {
  display: flex;
  flex-flow: row wrap;
  gap: 4px;
  margin-bottom: 0;
}
.node--type-event-2025.node--view-mode-teaser .event-details li {
  border-radius: 100vmax;
  background-color: #F3F3F3;
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  line-height: 1em;
  margin: 0;
  padding: 0.5em 0.75em;
}
.node--type-event-2025.node--view-mode-teaser .event-details li svg {
  height: 20px;
  width: 20px;
}
.node--type-event-2025.node--view-mode-teaser .field--name-field-summary {
  font-size: 16px;
  line-height: 1.6em;
  margin-bottom: 0;
}
.node--type-event-2025.node--view-mode-teaser .node__link {
  margin-top: auto;
  order: -1;
}

/*
DISCLAIMER!!!
The provided designs for this content type were not created with responsiveness
in mind. My apologies for any/all unwieldy selectors and confusing layouts.
*/
@media screen and (max-width: 900px) {
  .page-node-type-landing .block-system-breadcrumb-block {
    display: none;
  }
}
.node--type-landing.node--view-mode-full .hero {
  margin-bottom: 60px;
}
.node--type-landing.node--view-mode-full .hero__lower,
.node--type-landing.node--view-mode-full .hero__thumbnail {
  display: none;
}
.node--type-landing.node--view-mode-full .hero__media {
  position: relative;
}
.node--type-landing.node--view-mode-full .hero__media .modal-group__button {
  position: absolute;
  inset: 0 0 56px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.node--type-landing.node--view-mode-full .hero__media .modal-group__button button {
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 100vmax;
  padding: 10px;
}
.node--type-landing.node--view-mode-full .hero__media .modal-group__button svg {
  height: 60px;
  width: 60px;
}
.node--type-landing.node--view-mode-full .hero__copy {
  background-color: #FFFFFF;
  border-bottom: 4px solid #9B2743;
  padding: 42px 24px 32px 24px;
  position: relative;
}
.node--type-landing.node--view-mode-full .hero:has(.hero__media) .hero__copy {
  border-radius: 56px 56px 0 0;
  margin-top: -56px;
}
.node--type-landing.node--view-mode-full h1 {
  font-size: clamp(32px, 12vw, 56px);
  font-weight: 700;
  line-height: 1.2em;
  margin: 0;
}
.node--type-landing.node--view-mode-full .hero:has(.field--name-field-heading) h1 {
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
}
.node--type-landing.node--view-mode-full .hero__summaries > .field--name-field-heading {
  font-size: clamp(32px, 12vw, 56px);
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 0;
  margin-top: 24px;
}
.node--type-landing.node--view-mode-full .field--name-field-hero-summary {
  font-size: 20px;
  line-height: 1.6em;
  margin-bottom: 0;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .node--type-landing.node--view-mode-full .hero {
    margin-bottom: 120px;
  }
  .node--type-landing.node--view-mode-full h1,
  .node--type-landing.node--view-mode-full .hero__summaries > .field--name-field-heading {
    font-family: "Archivo", sans-serif;
    font-size: 44px;
    font-weight: 900;
  }
  .node--type-landing.node--view-mode-full .hero:has(.field--name-field-heading) h1 {
    font-size: 18px;
  }
  .node--type-landing.node--view-mode-full .hero__media .modal-group__button {
    inset: 0;
  }
  .node--type-landing.node--view-mode-full .hero__media .modal-group__button button {
    padding: 18px;
  }
  .node--type-landing.node--view-mode-full .hero__media .modal-group__button svg {
    height: 144px;
    width: 144px;
  }
  .node--type-landing.node--view-mode-full.node--layout-simple .hero {
    display: grid;
    grid-template-columns: 20fr 13fr;
    align-items: center;
    column-gap: 64px;
    max-width: 1730px;
    margin-left: auto;
    margin-right: auto;
  }
  .node--type-landing.node--view-mode-full.node--layout-simple .hero .hero__copy {
    border-bottom: unset;
    border-radius: unset;
    margin-right: 50px;
    margin-top: unset;
    min-width: 400px;
    padding: unset;
  }
  .node--type-landing.node--view-mode-full.node--layout-simple .hero .field--name-field-hero-image img {
    border-top-right-radius: 78px;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero {
    max-width: 1730px;
    margin-left: auto;
    margin-right: auto;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__copy {
    margin-right: auto;
    max-width: calc(60% + 32px);
    padding: 48px;
    position: absolute;
    bottom: -172px;
    left: 0;
    border-radius: 32px;
    border-bottom-left-radius: unset;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__upper {
    position: relative;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__lower {
    display: block;
    margin-left: auto;
    max-width: 40%;
    padding-right: 20px;
    position: relative;
    z-index: 10;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__submenu {
    background-color: #F3F3F3;
    margin-top: -56px;
    padding: 48px 32px;
    border-radius: 32px;
    border-bottom-right-radius: unset;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__submenu h2 {
    color: #9B2743;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__submenu .nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 24px;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__submenu .nav-item > a {
    font-size: 18px;
    line-height: 1.6em;
    padding: 0;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__submenu .nav-item > a:hover {
    text-decoration: underline;
  }
  .node--type-landing.node--view-mode-full.node--layout-hide-media .hero {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) and (max-width: 1284px) {
  .node--type-landing.node--view-mode-full.node--layout-hide-media .hero {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media screen and (min-width: 900px) {
  .node--type-landing.node--view-mode-full.node--layout-hide-media .hero .hero__copy {
    border-bottom: unset;
    border-radius: unset;
    margin-top: 100px;
    padding: unset;
  }
  .node--type-landing.node--view-mode-full.node--layout-hide-media .hero .hero__summaries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1299px) {
  .node--type-landing.node--view-mode-full.node--layout-complex .hero:not(:has(.hero__submenu)) {
    margin-bottom: 292px;
  }
}
@media screen and (min-width: 1300px) {
  .node--type-landing.node--view-mode-full.node--layout-complex .hero:not(:has(.hero__lower)) {
    margin-bottom: 292px;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__upper {
    padding-bottom: 64px;
    position: relative;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .field--name-field-hero-image img {
    aspect-ratio: 2/1;
    object-fit: cover;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__copy {
    max-width: calc(40% + 32px);
    padding: 64px;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__lower {
    display: grid;
    grid-template-columns: 5fr 4fr;
    column-gap: 48px;
    max-width: 60%;
    padding-right: 60px;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__thumbnail {
    display: block;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__thumbnail img {
    border-radius: 34px;
    border-top-left-radius: unset;
  }
  .node--type-landing.node--view-mode-full.node--layout-complex .hero .hero__submenu {
    margin-top: unset;
  }
}

.page-node-type-program-2025 .block-system-breadcrumb-block {
  display: none;
}

.node--type-program-2025.node--view-mode-full .hero__upper {
  display: flex;
  padding: 52px 46px 66px 0;
}
.node--type-program-2025.node--view-mode-full .hero__media {
  flex: 1;
  margin-right: -150px;
  position: relative;
}
.node--type-program-2025.node--view-mode-full .hero__media .contextual-region {
  position: static;
}
.node--type-program-2025.node--view-mode-full .hero__media img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.node--type-program-2025.node--view-mode-full .hero__media img {
  border-top-right-radius: 50px;
}
.node--type-program-2025.node--view-mode-full .hero__copy {
  background-color: #F3F3F3;
  border-radius: 0 50px 50px 0;
  flex-basis: 50%;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 42px 32px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 24px;
}
.node--type-program-2025.node--view-mode-full .field--name-field-program-type {
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
}
.node--type-program-2025.node--view-mode-full h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25em;
}
.node--type-program-2025.node--view-mode-full .field--name-field-summary {
  line-height: 1.6em;
}
.node--type-program-2025.node--view-mode-full .field--name-field-callout-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
}
.node--type-program-2025.node--view-mode-full .field--name-field-callout-links > .field__item {
  justify-content: center;
  min-width: 235px;
}
.node--type-program-2025.node--view-mode-full .hero__lower {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1640px) {
  .node--type-program-2025.node--view-mode-full .hero__lower {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.node--type-program-2025.node--view-mode-full .hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}
.node--type-program-2025.node--view-mode-full .hero__details .hero__detail {
  background-color: #F3F3F3;
  border-radius: 100vmax;
  font-size: 24px;
  margin: 0;
  padding: 0.33em 1em;
}
.node--type-program-2025.node--view-mode-full .hero__details .hero__detail dt, .node--type-program-2025.node--view-mode-full .hero__details .hero__detail dd {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-size: inherit;
  line-height: 1.6em;
  margin: 0;
}
.node--type-program-2025.node--view-mode-full .hero__details .hero__detail dt {
  font-weight: 400;
}
.node--type-program-2025.node--view-mode-full .hero__details .hero__detail dd {
  font-weight: 700;
}
.node--type-program-2025.node--view-mode-full .hero__details .hero__detail dd div {
  font-family: inherit;
}
.node--type-program-2025.node--view-mode-full .hero__jump-links {
  margin-top: 42px;
}
.node--type-program-2025.node--view-mode-full .field--name-field-jump-links {
  background-color: #F3F3F3;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 24px 32px;
  width: fit-content;
  border-radius: 32px;
  border-bottom-right-radius: unset;
}
.node--type-program-2025.node--view-mode-full .field--name-field-jump-links a {
  color: #9B2743;
  font-size: 18px;
  line-height: 1.6em;
}
.node--type-program-2025.node--view-mode-full .field--name-field-jump-links a:hover {
  text-decoration: none;
}
.node--type-program-2025.node--view-mode-full .field--name-field-primary-content .field__item {
  scroll-margin-top: 60px;
}

@media screen and (max-width: 900px) {
  .page-node-type-success-story-2025 .block-system-breadcrumb-block {
    display: none;
  }
}
.node--type-success-story-2025.node--view-mode-full .hero {
  margin-bottom: 52px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1624px) {
  .node--type-success-story-2025.node--view-mode-full .hero {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.node--type-success-story-2025.node--view-mode-full .hero__media img {
  border-top-right-radius: 56px;
}
.node--type-success-story-2025.node--view-mode-full .hero__copy {
  background-color: #F3F3F3;
  margin-top: -56px;
  padding: 32px 24px;
  position: relative;
  border-radius: 56px;
  border-bottom-left-radius: unset;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 24px;
}
.node--type-success-story-2025.node--view-mode-full .field--name-field-department {
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
}
.node--type-success-story-2025.node--view-mode-full .field--name-field-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6em;
  margin-bottom: 0;
}
.node--type-success-story-2025.node--view-mode-full .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin-bottom: 36px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1624px) {
  .node--type-success-story-2025.node--view-mode-full .tags {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.node--type-success-story-2025.node--view-mode-full .tags > li {
  background-color: #F3F3F3;
  border-radius: 100vmax;
  font-size: clamp(14px, 4vw, 24px);
  line-height: 1.4em;
  padding: 0.33em 1em;
}
@media screen and (min-width: 900px) {
  .node--type-success-story-2025.node--view-mode-full .hero {
    position: relative;
  }
  .node--type-success-story-2025.node--view-mode-full .hero__copy {
    position: absolute;
    bottom: -1px;
    left: 0;
    background-color: #FFFFFF;
    border-top-left-radius: 0;
    padding: 34px 42px 42px 42px;
    row-gap: 32px;
  }
  .node--type-success-story-2025.node--view-mode-full .field--name-field-department {
    font-size: 18px;
  }
  .node--type-success-story-2025.node--view-mode-full .field--name-field-name {
    font-family: "Archivo", sans-serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.25em;
  }
  .node--type-success-story-2025.node--view-mode-full .tags {
    font-weight: 700;
    justify-content: center;
    margin-top: 95px;
  }
  .node--type-success-story-2025.node--view-mode-full .paragraph--type--text {
    box-sizing: content-box;
    padding-right: 140px;
    padding-left: 140px;
    margin-right: auto;
    margin-left: auto;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph {
    position: relative;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph point {
    background-color: #9B2743;
    border: 12.5px solid #EAAA00;
    border-radius: 100vmax;
    display: block;
    position: absolute;
    top: 25px;
    bottom: auto;
    height: 50px;
    width: 50px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph connector {
    border-color: #9B2743;
    border-style: dashed;
    border-width: 0;
    display: block;
    position: absolute;
    top: -44px;
    bottom: -40px;
    z-index: -1;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-first connector::before, .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-last connector::before {
    content: "";
    position: absolute;
    background-color: #9B2743;
    height: 20px;
    width: 20px;
    rotate: 45deg;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-left point {
    left: 0;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-left connector {
    border-left-width: 4px;
    left: 23px;
    right: calc(50% + 2px);
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-left .-tl-prev-diff {
    border-top-left-radius: 64px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-left .-tl-next-diff {
    border-bottom-left-radius: 64px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-left.-tl-first connector {
    border-top-left-radius: 64px;
    border-top-width: 4px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-left.-tl-last connector::before {
    inset: auto auto -10px -12px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-right point {
    right: 0;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-right connector {
    border-right-width: 4px;
    left: calc(50% + 2px);
    right: 23px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-right .-tl-prev-diff {
    border-top-right-radius: 64px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-right .-tl-next-diff {
    border-bottom-right-radius: 64px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-right.-tl-first connector {
    border-top-right-radius: 64px;
    border-top-width: 4px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-side-right.-tl-last connector::before {
    inset: auto -12px -10px auto;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph .-tl-prev-diff {
    border-top-width: 4px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph .-tl-next-diff {
    border-bottom-width: 4px;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-first connector::before {
    inset: -12px -10px auto auto;
  }
  .node--type-success-story-2025.node--view-mode-full .tl-paragraph.-tl-last connector {
    bottom: 0;
  }
}

.node--type-success-story-2025.node--view-mode-teaser {
  display: grid;
  grid-template-columns: 6fr 7fr;
  column-gap: 42px;
  align-items: center;
  position: relative;
}
.node--type-success-story-2025.node--view-mode-teaser .node__link {
  position: absolute;
  inset: 0;
}
.node--type-success-story-2025.node--view-mode-teaser .node__media img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  border-radius: 90px;
  border-bottom-right-radius: unset;
}
.node--type-success-story-2025.node--view-mode-teaser .node__title {
  color: #19232B;
  font-family: "Archivo", sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2em;
  margin-top: 0;
}
.node--type-success-story-2025.node--view-mode-teaser .node__title + .node__summary {
  margin-top: 24px;
}
.node--type-success-story-2025.node--view-mode-teaser .node__summary {
  line-height: 1.6em;
  margin-bottom: 0;
}
.node--type-success-story-2025.node--view-mode-teaser .node__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin-top: 24px;
  margin-bottom: 0;
  padding: 0;
}
.node--type-success-story-2025.node--view-mode-teaser .node__tags > li {
  background-color: #F3F3F3;
  border-radius: 100vmax;
  font-size: 12px;
  line-height: 1.4em;
  padding: 0.66em 1em;
}

.node--view-mode-card {
  background-color: #FFFFFF;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  padding: 11px 11px 20px 11px;
  position: relative;
  transition: transform 250ms ease, box-shadow 250ms ease;
  border-radius: 50px;
  border-bottom-left-radius: unset;
}
.node--view-mode-card:hover, .node--view-mode-card:has(.node__link:focus-visible) {
  box-shadow: none;
  transform: translateY(-10px);
}
.node--view-mode-card .node__link {
  position: absolute;
  inset: 0;
}
.node--view-mode-card .node__media img {
  aspect-ratio: 3/2;
  border-radius: 50px 50px 0 0;
  object-fit: cover;
}
.node--view-mode-card .node__copy time {
  color: #A2AAAD;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  margin-top: 24px;
}
.node--view-mode-card .node__copy h3 {
  color: #19232B;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4em;
  margin-top: 10px;
  margin-bottom: 0;
}

.paragraph--type--accordion {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 24px 12px;
  border-radius: 20px;
  border-bottom-left-radius: unset;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1324px) {
  .paragraph--type--accordion {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.paragraph--type--accordion button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2cap;
  background-color: unset;
  border: unset;
  padding: 0;
  width: 100%;
}
.paragraph--type--accordion button svg {
  fill: #000000;
  flex-shrink: 0;
  height: 48px;
  width: 48px;
}
.paragraph--type--accordion .field--name-field-heading {
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 0;
  text-align: left;
}
.paragraph--type--accordion .field--name-field-description {
  display: none;
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 0;
}
.paragraph--type--accordion .field--name-field-description *:first-child {
  margin-top: 0;
}
.paragraph--type--accordion .field--name-field-description *:last-child {
  margin-bottom: 0;
}
.paragraph--type--accordion.-open svg {
  rotate: 180deg;
}
.paragraph--type--accordion.-open .field--name-field-description {
  display: block;
}
.paragraph--type--accordion.bg-color--black *, .paragraph--type--accordion.bg-color--blue *, .paragraph--type--accordion.bg-color--purple *, .paragraph--type--accordion.bg-color--red * {
  color: #FFFFFF;
}
.paragraph--type--accordion.bg-color--black button svg, .paragraph--type--accordion.bg-color--blue button svg, .paragraph--type--accordion.bg-color--purple button svg, .paragraph--type--accordion.bg-color--red button svg {
  fill: #FFFFFF;
}
.paragraph--type--accordion.bg-color--black {
  background-color: #000000;
}
.paragraph--type--accordion.bg-color--blue {
  background-color: #0089CE;
}
.paragraph--type--accordion.bg-color--grey {
  background-color: #F3F3F3;
}
.paragraph--type--accordion.bg-color--purple {
  background-color: #7C6992;
}
.paragraph--type--accordion.bg-color--red {
  background-color: #9B2743;
}
.paragraph--type--accordion.bg-color--white {
  background-color: #FFFFFF;
}
.paragraph--type--accordion.bg-color--yellow {
  background-color: #EAAA00;
}
@media screen and (min-width: 900px) {
  .paragraph--type--accordion {
    padding: 40px 64px;
    border-radius: 32px;
    border-bottom-left-radius: unset;
  }
  .paragraph--type--accordion button {
    column-gap: 100px;
  }
}

.paragraph--type--accordion-group {
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1324px) {
  .paragraph--type--accordion-group {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.paragraph--type--accordion-group .paragraph--type--accordion {
  border-radius: unset;
  margin: 0;
  max-width: unset;
}
.paragraph--type--accordion-group:not(.bg-color-override) > .field--name-field-heading {
  font-family: "Archivo", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 1em;
}
.paragraph--type--accordion-group:not(.bg-color-override) .field--name-field-accordions {
  overflow: hidden;
  border-radius: 32px;
  border-bottom-left-radius: unset;
}
.paragraph--type--accordion-group.bg-color-override {
  padding: 40px 12px;
  border-radius: 32px;
  border-bottom-right-radius: unset;
}
.paragraph--type--accordion-group.bg-color-override > .field--name-field-heading {
  margin-bottom: 40px;
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
}
.paragraph--type--accordion-group.bg-color-override .paragraph--type--accordion {
  background-color: unset;
  padding: 32px 0;
}
.paragraph--type--accordion-group.bg-color-override .paragraph--type--accordion:first-child {
  padding-top: 0;
}
.paragraph--type--accordion-group.bg-color-override .paragraph--type--accordion:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.paragraph--type--accordion-group.bg-color--grey {
  background-color: #F3F3F3;
}
.paragraph--type--accordion-group.bg-color--grey .paragraph--type--accordion {
  border-bottom: 1px solid #000000;
}
.paragraph--type--accordion-group.bg-color--grey .paragraph--type--accordion * {
  color: #000000;
}
.paragraph--type--accordion-group.bg-color--grey .paragraph--type--accordion button svg {
  fill: #000000;
}
.paragraph--type--accordion-group.bg-color--red {
  background-color: #9B2743;
}
.paragraph--type--accordion-group.bg-color--red > .field--name-field-heading {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.paragraph--type--accordion-group.bg-color--red .paragraph--type--accordion {
  border-bottom: 1px solid #EAAA00;
}
.paragraph--type--accordion-group.bg-color--red .paragraph--type--accordion * {
  color: #FFFFFF;
}
.paragraph--type--accordion-group.bg-color--red .paragraph--type--accordion button svg {
  fill: #EAAA00;
}
.paragraph--type--accordion-group.bg-color--white {
  background-color: #FFFFFF;
  padding: 0;
}
.paragraph--type--accordion-group.bg-color--white .paragraph--type--accordion {
  border-bottom: 1px solid #000000;
}
.paragraph--type--accordion-group.bg-color--white .paragraph--type--accordion * {
  color: #000000;
}
.paragraph--type--accordion-group.bg-color--white .paragraph--type--accordion button svg {
  fill: #000000;
}
@media screen and (min-width: 900px) {
  .paragraph--type--accordion-group {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .paragraph--type--accordion-group.bg-color-override {
    padding: 64px;
    border-radius: 64px;
    border-bottom-right-radius: unset;
  }
}

.paragraph--type--callout {
  margin-top: 120px;
  margin-bottom: 120px;
  position: relative;
}
.paragraph--type--callout .paragraph__media img {
  object-fit: cover;
}
.paragraph--type--callout .paragraph__copy-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 24px;
}
.paragraph--type--callout .field--name-field-eyebrow {
  margin-bottom: 0;
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
}
.paragraph--type--callout .field--name-field-heading {
  color: #000000;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.6em;
  margin: 0;
}
.paragraph--type--callout .field--name-field-links {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 12px;
}
.paragraph--type--callout .field--name-field-links .alv-button {
  min-width: 235px;
  width: 100%;
}
.paragraph--type--callout.layout--image-above, .paragraph--type--callout.layout--image-below {
  max-width: 1730px;
  margin-left: auto;
  margin-right: auto;
}
.paragraph--type--callout.layout--image-above .paragraph__media, .paragraph--type--callout.layout--image-below .paragraph__media {
  padding-top: 120px;
}
.paragraph--type--callout.layout--image-above .paragraph__media img, .paragraph--type--callout.layout--image-below .paragraph__media img {
  height: 1000px;
  width: 100%;
}
.paragraph--type--callout.layout--image-above .paragraph__copy, .paragraph--type--callout.layout--image-below .paragraph__copy {
  position: absolute;
  inset: 0 12px auto 12px;
  z-index: 10;
}
.paragraph--type--callout.layout--image-above .paragraph__copy-inner, .paragraph--type--callout.layout--image-below .paragraph__copy-inner {
  background-color: #F3F3F3;
  padding: 50px 12px 42px 12px;
  border-radius: 32px;
  border-bottom-left-radius: unset;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 24px;
}
.paragraph--type--callout.layout--image-behind .paragraph__media img {
  border-radius: 56px 56px 0 0;
  height: 750px;
  width: 100%;
}
.paragraph--type--callout.layout--image-behind .paragraph__copy {
  margin: -120px 12px 0 12px;
  position: relative;
}
.paragraph--type--callout.layout--image-behind .paragraph__copy-inner {
  background-color: #FFFFFF;
  border-radius: 0 56px 56px 0;
  padding: 32px 24px;
}
.paragraph--type--callout.layout--image-behind .field--name-field-heading {
  font-size: clamp(24px, 3vw, 30px);
}
.paragraph--type--callout.layout--image-behind .field--name-field-links .alv-button {
  min-width: unset;
}
.paragraph--type--callout.layout--image-none .paragraph__copy-inner {
  background-color: #F3F3F3;
  padding: 32px 12px;
}
.paragraph--type--callout.layout--image-none .paragraph__media {
  display: none;
}
@media screen and (min-width: 700px) {
  .paragraph--type--callout .field--name-field-links {
    flex-flow: row wrap;
    column-gap: 24px;
  }
  .paragraph--type--callout .field--name-field-links .alv-button {
    width: fit-content;
  }
  .paragraph--type--callout.layout--image-behind .field--name-field-links {
    column-gap: 12px;
  }
}
@media screen and (min-width: 900px) {
  .paragraph--type--callout.layout--image-above .paragraph__media {
    padding-top: 270px;
  }
  .paragraph--type--callout.layout--image-above .paragraph__copy {
    inset: 0 0 auto 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) and (max-width: 1340px) {
  .paragraph--type--callout.layout--image-above .paragraph__copy {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .paragraph--type--callout.layout--image-above .paragraph__copy-inner {
    padding: 64px 82px;
    text-align: center;
  }
  .paragraph--type--callout.layout--image-above .field--name-field-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .paragraph--type--callout.layout--image-above .field--name-field-links {
    justify-content: center;
  }
  .paragraph--type--callout.layout--image-below .paragraph__media {
    padding-bottom: 270px;
  }
  .paragraph--type--callout.layout--image-below .paragraph__copy {
    inset: auto 0 0 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) and (max-width: 1340px) {
  .paragraph--type--callout.layout--image-below .paragraph__copy {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .paragraph--type--callout.layout--image-below .paragraph__copy-inner {
    padding: 64px 82px;
    text-align: center;
  }
  .paragraph--type--callout.layout--image-below .field--name-field-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .paragraph--type--callout.layout--image-below .field--name-field-links {
    justify-content: center;
  }
  .paragraph--type--callout.layout--image-none .paragraph__copy {
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) and (max-width: 1420px) {
  .paragraph--type--callout.layout--image-none .paragraph__copy {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .paragraph--type--callout.layout--image-none .paragraph__copy-inner {
    padding: 64px 122px;
    row-gap: 48px;
    text-align: center;
    border-radius: 64px;
    border-bottom-left-radius: unset;
  }
  .paragraph--type--callout.layout--image-none .field--name-field-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .paragraph--type--callout.layout--image-none .field--name-field-links {
    justify-content: center;
  }
}
@media screen and (min-width: 1100px) {
  .paragraph--type--callout .paragraph__media img {
    height: auto;
  }
  .paragraph--type--callout .paragraph__copy-inner {
    padding: 74px 82px;
  }
  .paragraph--type--callout .field--name-field-links {
    column-gap: 48px;
  }
  .paragraph--type--callout .field--name-field-links > .field__item {
    justify-content: center;
  }
  .paragraph--type--callout.layout--image-behind {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1640px) {
  .paragraph--type--callout.layout--image-behind {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .paragraph--type--callout.layout--image-behind .paragraph__media {
    inset: 0;
    position: absolute;
  }
  .paragraph--type--callout.layout--image-behind .paragraph__media .contextual-region {
    position: static;
  }
  .paragraph--type--callout.layout--image-behind .paragraph__media img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .paragraph--type--callout.layout--image-behind .paragraph__media img {
    border-radius: 64px;
    border-bottom-left-radius: unset;
  }
  .paragraph--type--callout.layout--image-behind .paragraph__copy {
    margin: 0 auto 0 0;
    padding: 60px 54px;
  }
  .paragraph--type--callout.layout--image-behind .paragraph__copy-inner {
    max-width: 565px;
    padding: 64px;
    row-gap: 32px;
    width: 100%;
    border-radius: 64px;
    border-bottom-left-radius: unset;
  }
  .paragraph--type--callout.layout--image-behind .field--name-field-heading {
    font-weight: 500;
  }
}

.paragraph--type--card {
  position: relative;
}
.paragraph--type--card .paragraph__media {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 56px;
  border-bottom-left-radius: unset;
  position: relative;
}
.paragraph--type--card .paragraph__media .contextual-region {
  position: static;
}
.paragraph--type--card .paragraph__media img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.paragraph--type--card .paragraph__copy {
  background-color: #FFFFFF;
  max-width: 95%;
  margin-top: -48px;
  padding: 16px 12px;
  position: relative;
  width: fit-content;
  z-index: 10;
  border-radius: 32px;
  border-bottom-left-radius: unset;
}
.paragraph--type--card .paragraph__copy .field--name-field-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5em;
  margin: 0;
  text-transform: uppercase;
}
.paragraph--type--card .paragraph__copy .field--name-field-heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5em;
  margin: 0;
}
.paragraph--type--card .paragraph__copy .field--name-field-body-plain {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.64em;
  margin-bottom: 0;
}
.paragraph--type--card:not(:has(.paragraph__media)) .paragraph__copy {
  height: 100%;
  width: 100%;
  margin-top: 0;
  max-width: unset;
}
.paragraph--type--card.style--hazy .paragraph__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(113, 21, 51, 0.8);
}
.paragraph--type--card.style--quote .paragraph__media {
  display: none;
}
.paragraph--type--card.style--quote .paragraph__copy {
  background-color: #9B2743;
  line-height: 0.2em;
  max-width: unset !important;
  width: 100%;
}
.paragraph--type--card.style--quote .paragraph__copy::before {
  content: "";
  display: block;
  height: 20px;
  width: 24px;
  margin-bottom: 0.5em;
  background-image: url("/themes/custom/bs5_alvernia/icons/card-quote.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.paragraph--type--card.style--quote .field--name-field-heading,
.paragraph--type--card.style--quote .field--name-field-body-plain {
  color: #FFFFFF;
}
@media screen and (min-width: 700px) {
  .paragraph--type--card:has(.paragraph__copy) .paragraph__media {
    padding-bottom: 34px;
  }
  .paragraph--type--card .paragraph__copy {
    padding: 22px 28px;
    position: absolute;
    inset: auto auto 0 0;
    width: fit-content;
    z-index: 10;
    border-radius: 45px;
    border-bottom-left-radius: unset;
  }
  .paragraph--type--card .paragraph__copy .field--name-field-eyebrow {
    font-size: 12px;
  }
  .paragraph--type--card .paragraph__copy .field--name-field-heading {
    font-size: 22px;
    font-weight: 900;
  }
  .paragraph--type--card .paragraph__copy .field--name-field-body-plain {
    font-size: 20px;
  }
  .paragraph--type--card.style--quote .paragraph__copy {
    position: relative;
  }
}
@media screen and (min-width: 1100px) {
  .paragraph--type--card.p-layout--vertical .paragraph__media {
    aspect-ratio: 15/19;
    padding-bottom: 0;
  }
  .paragraph--type--card.p-layout--overlapping .paragraph__media {
    aspect-ratio: 16/9;
    padding-bottom: 0;
  }
  .paragraph--type--card.p-layout--overlapping .paragraph__copy {
    max-width: 85%;
  }
  .paragraph--type--card.p-layout--overlapping.style--hazy .paragraph__copy {
    background-color: unset;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 0;
    padding: 0;
  }
  .paragraph--type--card.p-layout--overlapping.style--hazy .paragraph__copy .field--name-field-body-plain {
    color: #FFFFFF;
    font-size: 16px;
    padding: 2em;
  }
  .paragraph--type--card.p-layout--overlapping.style--hazy .paragraph__copy-upper {
    background-color: #FFFFFF;
    font-size: 24px;
    padding: 1.33em;
    border-radius: 1.33em;
    border-bottom-left-radius: unset;
  }
  .paragraph--type--card.p-layout--overlapping.style--quote .paragraph__copy {
    aspect-ratio: 16/9;
  }
  .paragraph--type--card.p-layout--overlapping:nth-child(2) .paragraph__media {
    border-radius: 50px;
    border-bottom-right-radius: unset;
  }
  .paragraph--type--card.p-layout--overlapping:nth-child(2) .paragraph__copy {
    align-items: flex-end;
    right: 0;
    left: auto;
    border-radius: 50px;
    border-bottom-right-radius: unset;
  }
  .paragraph--type--card.p-layout--overlapping:nth-child(2) .paragraph__copy-upper {
    border-radius: 1.33em;
    border-bottom-right-radius: unset;
  }
}

.bg-color--red .paragraph--type--card.style--quote .paragraph__copy {
  border: 2px solid #FFFFFF;
}

.paragraph--type--card-carousel {
  margin-top: 100px;
  margin-bottom: 100px;
}
.paragraph--type--card-carousel > .paragraph__inner {
  background-color: #F3F3F3;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 24px;
}
.paragraph--type--card-carousel > .paragraph__inner > .field--name-field-eyebrow {
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 0;
}
.paragraph--type--card-carousel > .paragraph__inner > .field--name-field-heading {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.25em;
  margin-top: 0;
}
.paragraph--type--card-carousel .paragraph__carousel {
  user-select: none;
}
.paragraph--type--card-carousel .field--name-field-carousel-cards {
  display: flex;
  align-items: stretch;
  column-gap: 20px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.paragraph--type--card-carousel .field--name-field-carousel-cards::-webkit-scrollbar {
  display: none;
}
.paragraph--type--card-carousel .field--name-field-carousel-cards > .field__item {
  flex-shrink: 0;
  width: 300px;
}
.paragraph--type--card-carousel .field--name-field-carousel-cards .paragraph-card {
  height: 100%;
}
.paragraph--type--card-carousel .field--name-field-carousel-cards .paragraph--type--stat-card {
  background-color: #FFFFFF;
}
.paragraph--type--card-carousel .paragraph__input {
  display: flex;
  column-gap: 6px;
}
.paragraph--type--card-carousel .paragraph__input button {
  background-color: unset;
  border: none;
  border-radius: 100vmax;
  height: 54px;
  width: 54px;
  padding: 7px;
  transition: fill 200ms ease, transform 200ms ease;
}
.paragraph--type--card-carousel .paragraph__input button svg {
  border-radius: 100vmax;
  fill: #9B2743;
  height: 100%;
  width: 100%;
}
.paragraph--type--card-carousel .paragraph__input button.slide-left:hover {
  transform: translateX(-5px);
}
.paragraph--type--card-carousel .paragraph__input button.slide-right:hover {
  transform: translateX(5px);
}
@media screen and (min-width: 700px) {
  .paragraph--type--card-carousel .field--name-field-carousel-cards > .field__item {
    width: 410px;
  }
  .paragraph--type--card-carousel .paragraph__input {
    column-gap: 12px;
  }
  .paragraph--type--card-carousel .paragraph__input button {
    height: 96px;
    width: 96px;
    padding: 13px;
  }
}
@media screen and (min-width: 1100px) {
  .paragraph--type--card-carousel {
    margin-top: 120px;
    margin-bottom: 120px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1640px) {
  .paragraph--type--card-carousel {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .paragraph--type--card-carousel > .paragraph__inner {
    row-gap: 42px;
    padding: 42px 56px;
    border-radius: 50px;
    border-bottom-right-radius: unset;
  }
}

.paragraph--type--card-gallery.layout--vertical > .paragraph__inner, .paragraph--type--card-gallery.layout--overlapping > .paragraph__inner {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1624px) {
  .paragraph--type--card-gallery.layout--vertical > .paragraph__inner, .paragraph--type--card-gallery.layout--overlapping > .paragraph__inner {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.paragraph--type--card-gallery.layout--horizontal > .paragraph__inner, .paragraph--type--card-gallery.layout--staggered > .paragraph__inner {
  max-width: 1430px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1454px) {
  .paragraph--type--card-gallery.layout--horizontal > .paragraph__inner, .paragraph--type--card-gallery.layout--staggered > .paragraph__inner {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.paragraph--type--card-gallery .paragraph__copy-col > .field--name-field-eyebrow {
  margin-bottom: 20px;
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
}
.paragraph--type--card-gallery .paragraph__copy-col > .field--name-field-heading {
  color: #000000;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25em;
  margin: 0;
}
.paragraph--type--card-gallery .paragraph__copy-col > .field--name-field-body-plain {
  color: #19232B;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4em;
  margin-top: 20px;
}
.paragraph--type--card-gallery .paragraph__copy-col > .field--name-field-link {
  margin-top: 20px;
}
.paragraph--type--card-gallery .field--name-field-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
.paragraph--type--card-gallery .field--name-field-cards > .paragraph-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.paragraph--type--card-gallery.bg-color--grey {
  background-color: #F3F3F3;
  padding-top: 60px;
  padding-bottom: 60px;
}
.paragraph--type--card-gallery.bg-color--red {
  background-color: #9B2743;
  padding-top: 60px;
  padding-bottom: 60px;
}
.paragraph--type--card-gallery.bg-color--red .paragraph__copy-col > .field--name-field-eyebrow {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.paragraph--type--card-gallery.bg-color--red .paragraph__copy-col > .field--name-field-heading {
  color: #FFFFFF;
}
.paragraph--type--card-gallery.bg-color--red .paragraph__copy-col > .field--name-field-body-plain {
  color: #FFFFFF;
}
.paragraph--type--card-gallery.bg-color--white {
  background-color: #FFFFFF;
  margin-top: 120px;
  margin-bottom: 120px;
}
@media screen and (min-width: 700px) {
  .paragraph--type--card-gallery .field--name-field-cards > .paragraph-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1100px) {
  .paragraph--type--card-gallery.layout--vertical > .paragraph__inner > .paragraph__copy, .paragraph--type--card-gallery.layout--overlapping > .paragraph__inner > .paragraph__copy, .paragraph--type--card-gallery.layout--staggered > .paragraph__inner > .paragraph__copy {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    margin-bottom: 75px;
  }
  .paragraph--type--card-gallery.layout--vertical .paragraph__copy-col, .paragraph--type--card-gallery.layout--overlapping .paragraph__copy-col, .paragraph--type--card-gallery.layout--staggered .paragraph__copy-col {
    max-width: 660px;
  }
  .paragraph--type--card-gallery.layout--vertical .field--name-field-cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .paragraph--type--card-gallery.layout--vertical .field--name-field-cards > .paragraph-wrapper {
    grid-column: span 2;
    grid-template-columns: subgrid;
  }
  .paragraph--type--card-gallery.layout--horizontal > .paragraph__inner {
    display: grid;
    grid-template-columns: 1fr 750px;
    align-items: center;
    column-gap: 64px;
  }
  .paragraph--type--card-gallery.layout--horizontal .paragraph__copy-col > .field--name-field-body-plain {
    font-size: 16px;
    font-weight: 400;
    margin-top: 32px;
  }
  .paragraph--type--card-gallery.layout--horizontal .paragraph__copy-col > .field--name-field-link {
    margin-top: 36px;
  }
  .paragraph--type--card-gallery.layout--overlapping .field--name-field-cards {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
  }
  .paragraph--type--card-gallery.layout--overlapping .field--name-field-cards > .paragraph-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .paragraph--type--card-gallery.layout--overlapping .field--name-field-cards > .paragraph-wrapper > .paragraph:nth-child(1) {
    margin-right: -46px;
  }
  .paragraph--type--card-gallery.layout--overlapping .field--name-field-cards > .paragraph-wrapper > .paragraph:nth-child(2) {
    margin-top: 110px;
    margin-left: -46px;
    position: relative;
    z-index: 10;
  }
  .paragraph--type--card-gallery.layout--staggered .field--name-field-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .paragraph--type--card-gallery.layout--staggered .field--name-field-cards > .paragraph-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .paragraph--type--card-gallery.layout--staggered .field--name-field-cards > .paragraph-wrapper:nth-child(2) {
    margin-top: 132px;
  }
}

.paragraph--type--drop-quote {
  background-color: #F3F3F3;
  margin-top: 42px;
  margin-bottom: 42px;
  padding: 85px 24px 24px 24px;
  position: relative;
  border-radius: 32px;
  border-bottom-left-radius: unset;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1324px) {
  .paragraph--type--drop-quote {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.paragraph--type--drop-quote .field--name-field-eyebrow {
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 12px;
}
.paragraph--type--drop-quote .field--name-field-quote-text {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6em;
  margin-bottom: 0;
}
.paragraph--type--drop-quote::before, .paragraph--type--drop-quote::after {
  content: "";
  position: absolute;
  height: 40px;
  width: 45px;
  background: url("/themes/custom/bs5_alvernia/icons/drop-quote.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}
.paragraph--type--drop-quote::before {
  display: block;
  inset: 24px auto auto 24px;
}
.paragraph--type--drop-quote::after {
  display: none;
  inset: auto 24px 24px auto;
  rotate: 180deg;
}
@media screen and (min-width: 425px) {
  .paragraph--type--drop-quote .field--name-field-quote-text {
    font-size: 32px;
  }
}
@media screen and (min-width: 900px) {
  .paragraph--type--drop-quote {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 64px 82px;
    text-align: center;
    border-radius: 64px;
    border-bottom-left-radius: unset;
  }
  .paragraph--type--drop-quote::before {
    inset: 30px auto auto 30px;
  }
  .paragraph--type--drop-quote::after {
    display: block;
    inset: auto 30px 30px auto;
  }
  .paragraph--type--drop-quote .field--name-field-eyebrow {
    font-size: 10px;
    margin: 0 auto 32px auto;
  }
  .paragraph--type--drop-quote .field--name-field-quote-text {
    font-size: 44px;
    font-weight: 700;
    margin: 0 auto;
    max-width: 1080px;
    text-wrap: balance;
  }
}

.paragraph--type--50-50 {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  margin-top: 100px;
  margin-bottom: 100px;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1404px) {
  .paragraph--type--50-50 {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.paragraph--type--50-50 .paragraph__media img {
  border-radius: 0 32px 0 32px;
  width: 100%;
}
.paragraph--type--50-50 .paragraph__copy {
  margin-left: 10px;
  margin-right: 10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 20px;
}
.paragraph--type--50-50 .field--name-field-heading {
  color: #19232B;
  font-size: clamp(20px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.4em;
  margin: 0;
}
.paragraph--type--50-50 .field--name-field-body-plain {
  color: #000000;
  font-size: 20px;
  line-height: 1.6em;
  margin-bottom: 0;
}
.paragraph--type--50-50 .field--name-field-link .alv-button {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .paragraph--type--50-50 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .paragraph--type--50-50 .field--name-field-heading {
    font-weight: 900;
  }
  .paragraph--type--50-50 .field--name-field-body-plain {
    color: #000000;
    font-size: 16px;
  }
  .paragraph--type--50-50 .field--name-field-link .alv-button {
    width: fit-content;
  }
  .paragraph--type--50-50.layout--image-right-overlapping .paragraph__copy, .paragraph--type--50-50.layout--image-right .paragraph__copy {
    order: -1;
  }
  .paragraph--type--50-50.layout--image-left .paragraph__copy, .paragraph--type--50-50.layout--image-right .paragraph__copy {
    margin-left: 42px;
    margin-right: 42px;
  }
  .paragraph--type--50-50.layout--image-left .paragraph__media img, .paragraph--type--50-50.layout--image-right .paragraph__media img {
    border-radius: 90px;
    border-bottom-right-radius: unset;
  }
  .paragraph--type--50-50.layout--image-left-overlapping .paragraph__copy {
    margin-left: -70px;
  }
  .paragraph--type--50-50.layout--image-right-overlapping .paragraph__copy {
    margin-right: -70px;
  }
  .paragraph--type--50-50.layout--image-left-overlapping .paragraph__copy, .paragraph--type--50-50.layout--image-right-overlapping .paragraph__copy {
    background-color: #F3F3F3;
    padding: 42px;
    border-radius: 50px;
    border-bottom-left-radius: unset;
  }
  .paragraph--type--50-50.layout--image-left-overlapping .field--name-field-body-plain, .paragraph--type--50-50.layout--image-right-overlapping .field--name-field-body-plain {
    color: #000000;
    font-size: 21px;
    letter-spacing: 0.03em;
    line-height: 1.5em;
  }
  .paragraph--type--50-50.layout--image-left-overlapping .paragraph__media img, .paragraph--type--50-50.layout--image-right-overlapping .paragraph__media img {
    border-radius: 60px;
    border-bottom-right-radius: unset;
  }
}

.paragraph--type--gallery-clover {
  margin-top: 60px;
  margin-bottom: 60px;
}
.paragraph--type--gallery-clover .media:first-child img {
  border-radius: 32px;
  border-bottom-left-radius: unset;
}
.paragraph--type--gallery-clover .media:nth-child(3), .paragraph--type--gallery-clover .media:nth-child(4) {
  display: none;
}
.paragraph--type--gallery-clover .paragraph__copy {
  margin-top: 24px;
  padding: 12px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 16px;
}
.paragraph--type--gallery-clover .field--name-field-eyebrow {
  margin-bottom: 0;
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
}
.paragraph--type--gallery-clover .field--name-field-heading {
  color: #19232B;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.6em;
  margin-top: 0;
}
.paragraph--type--gallery-clover .field--name-field-body-plain {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 0;
}
.paragraph--type--gallery-clover .field--name-field-link {
  margin-top: 12px;
}
.paragraph--type--gallery-clover .field--name-field-link .alv-button {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .paragraph--type--gallery-clover {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .paragraph--type--gallery-clover .paragraph__inner {
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 42px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) and (max-width: 1340px) {
  .paragraph--type--gallery-clover .paragraph__inner {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .paragraph--type--gallery-clover .paragraph__copy {
    padding: 0;
    row-gap: 24px;
  }
  .paragraph--type--gallery-clover .field--name-field-heading {
    line-height: 1.25em;
  }
  .paragraph--type--gallery-clover .field--name-field-link .alv-button {
    width: fit-content;
  }
  .paragraph--type--gallery-clover .media {
    border-radius: 64px;
  }
  .paragraph--type--gallery-clover .media:first-child {
    align-self: stretch;
    border-bottom-right-radius: unset;
    min-height: 100%;
  }
  .paragraph--type--gallery-clover .media:first-child img {
    border-radius: 64px;
    border-bottom-right-radius: unset;
  }
  .paragraph--type--gallery-clover .media:nth-child(3) {
    display: block;
    width: 50%;
    margin-left: auto;
  }
  .paragraph--type--gallery-clover .media:nth-child(3) img {
    border-radius: 50px;
    border-top-right-radius: unset;
  }
  .paragraph--type--gallery-clover .media:nth-child(4) {
    display: block;
  }
  .paragraph--type--gallery-clover .media:nth-child(4) img {
    border-radius: 75px;
    border-top-left-radius: unset;
  }
}

.paragraph--type--icon-link {
  width: fit-content;
}
.paragraph--type--icon-link .paragraph__link {
  display: flex;
  align-items: center;
  column-gap: 24px;
  text-decoration: none;
}
.paragraph--type--icon-link .paragraph__link:hover .field--name-field-media .media {
  translate: 0;
}
.paragraph--type--icon-link .paragraph__label {
  color: #000000;
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 0.2em;
}
.paragraph--type--icon-link .field--name-field-media {
  border: 3px solid #EAAA00;
  border-radius: 30px 35px 70px 65px;
  height: 90px;
  width: 90px;
  position: relative;
  transform: translate(6px, -6px);
}
.paragraph--type--icon-link .field--name-field-media .media {
  background-color: #9B2743;
  border-radius: 30px 35px 70px 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: -3px;
  translate: -6px 6px;
  transition: translate 250ms ease;
  z-index: 10;
}
.paragraph--type--icon-link .field--name-field-media img {
  object-fit: cover;
  width: 45px;
}
@media screen and (max-width: 1100px) {
  .paragraph--type--icon-link .paragraph__link {
    column-gap: 18px;
  }
  .paragraph--type--icon-link .paragraph__label {
    font-size: 14px;
  }
  .paragraph--type--icon-link .field--name-field-media {
    border-width: 1.5px;
    transform: translate(4px, -4px);
    height: 45px;
    width: 45px;
  }
  .paragraph--type--icon-link .field--name-field-media .media {
    inset: -1.5px;
    translate: -4px 4px;
  }
  .paragraph--type--icon-link .field--name-field-media img {
    width: 24px;
  }
}

.paragraph--type--media {
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1324px) {
  .paragraph--type--media {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.paragraph--type--media img {
  border-radius: 32px;
  border-bottom-left-radius: unset;
}

.paragraph--type--remote-video {
  margin-top: 80px;
  margin-bottom: 80px;
  overflow: hidden;
  border-radius: 32px;
  border-bottom-left-radius: unset;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1324px) {
  .paragraph--type--remote-video {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.paragraph--type--slate-form {
  background-color: #F3F3F3;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 36px 24px;
  border-radius: 50px;
  border-bottom-left-radius: unset;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 924px) {
  .paragraph--type--slate-form {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.paragraph--type--slate-form form {
  font-size: 17px;
}
.paragraph--type--slate-form form * {
  font-size: inherit;
}
.paragraph--type--slate-form label {
  font-size: inherit;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.paragraph--type--slate-form .form_text input {
  background-color: #FFFFFF;
  border: 1px solid #A2AAAD;
  border-radius: 5px;
  font-size: inherit;
  font-weight: 400;
  height: auto;
  padding: 1em 1.1em;
  width: 100%;
}
.paragraph--type--slate-form .form_select select {
  background-color: #FFFFFF;
  border: 1px solid #A2AAAD;
  border-radius: 5px;
  font-size: inherit;
  font-weight: 400;
  height: auto;
  padding: 1em 1.1em;
  width: 100%;
}
.paragraph--type--slate-form .form_action {
  margin-top: 36px;
  font-size: 16px;
  height: fit-content;
  width: 100%;
  position: relative;
  transition: transform 250ms ease;
}
.paragraph--type--slate-form .form_action::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3em 3em 3em 0;
  border: 0.2em solid #9B2743;
  transition: transform 250ms ease;
}
.paragraph--type--slate-form .form_action input, .paragraph--type--slate-form .form_action button {
  background-color: #9B2743;
  border: none;
  border-radius: 3em 3em 3em 0;
  color: #FFFFFF;
  font-family: "Archivo", sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5em;
  padding: 0.8em 1.25em;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  z-index: 10;
}
.paragraph--type--slate-form .form_action:hover, .paragraph--type--slate-form .form_action:has(input:focus-visible) {
  transform: translate(0.5em, -0.5em);
}
.paragraph--type--slate-form .form_action:hover input, .paragraph--type--slate-form .form_action:hover button, .paragraph--type--slate-form .form_action:has(input:focus-visible) input, .paragraph--type--slate-form .form_action:has(input:focus-visible) button {
  background-color: #9B2743;
}
.paragraph--type--slate-form .form_action:hover::before, .paragraph--type--slate-form .form_action:has(input:focus-visible)::before {
  transform: translate(-0.5em, 0.5em);
}

.paragraph--type--stat-card {
  background-color: #F3F3F3;
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding: 24px;
  border-radius: 50px;
  border-bottom-left-radius: unset;
}
.paragraph--type--stat-card .paragraph__media {
  padding-top: 7.5px;
  padding-right: 7.5px;
  position: relative;
}
.paragraph--type--stat-card .paragraph__media::before {
  content: "";
  position: absolute;
  inset: 0 0 7.5px 7.5px;
  border: 3px solid #9B2743;
  border-radius: 30px 35px 70px 65px;
}
.paragraph--type--stat-card .paragraph__media .media {
  background-color: #EAAA00;
  border-radius: 30px 35px 70px 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  height: 75px;
  width: 75px;
}
.paragraph--type--stat-card .paragraph__media .media img {
  object-fit: cover;
  height: 45px;
  width: 45px;
}
.paragraph--type--stat-card .paragraph__copy {
  display: flex;
  flex-direction: column-reverse;
}
.paragraph--type--stat-card .field--name-field-stat-value {
  font-family: "Archivo", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4em;
}
.paragraph--type--stat-card .field--name-field-heading {
  color: #A2AAAD;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4em;
  margin: 0;
}
@media screen and (min-width: 700px) {
  .paragraph--type--stat-card {
    padding: 48px 24px;
  }
  .paragraph--type--stat-card .paragraph__media {
    padding-top: 10px;
    padding-right: 10px;
  }
  .paragraph--type--stat-card .paragraph__media::before {
    inset: 0 0 10px 10px;
  }
  .paragraph--type--stat-card .paragraph__media .media {
    height: 100px;
    width: 100px;
  }
  .paragraph--type--stat-card .paragraph__media .media img {
    height: 60px;
    width: 60px;
  }
  .paragraph--type--stat-card .field--name-field-stat-value {
    font-size: 44px;
  }
  .paragraph--type--stat-card .field--name-field-heading {
    font-size: 20px;
  }
}

.paragraph--type--table {
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1324px) {
  .paragraph--type--table {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.paragraph--type--table .field--type-text-long {
  width: 100%;
  overflow-x: scroll;
}
.paragraph--type--table table {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}
.paragraph--type--table table tr:nth-child(odd) {
  background-color: rgba(155, 39, 67, 0.4);
}
.paragraph--type--table table tr:nth-child(even) {
  background-color: #F3F3F3;
  background-color: rgba(155, 39, 67, 0.3);
}
.paragraph--type--table table tr:first-child td {
  font-weight: 700;
  text-wrap: nowrap;
}
.paragraph--type--table table td {
  font-size: 18px;
  padding: 0.6em 0.4em;
}

.paragraph--type--text {
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1324px) {
  .paragraph--type--text {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.paragraph--type--text-card {
  background-color: #A2AAAD;
  padding: 24px 12px;
  border-radius: 32px;
  border-bottom-left-radius: unset;
}
.paragraph--type--text-card.bg-color--black *, .paragraph--type--text-card.bg-color--blue *, .paragraph--type--text-card.bg-color--grey *, .paragraph--type--text-card.bg-color--purple *, .paragraph--type--text-card.bg-color--red * {
  color: #FFFFFF;
}
.paragraph--type--text-card.bg-color--black {
  background-color: #000000;
}
.paragraph--type--text-card.bg-color--blue {
  background-color: #0089CE;
}
.paragraph--type--text-card.bg-color--grey {
  background-color: #A2AAAD;
}
.paragraph--type--text-card.bg-color--purple {
  background-color: #7C6992;
}
.paragraph--type--text-card.bg-color--red {
  background-color: #9B2743;
}
.paragraph--type--text-card.bg-color--white {
  background-color: #FFFFFF;
}
.paragraph--type--text-card.bg-color--yellow {
  background-color: #EAAA00;
}
.paragraph--type--text-card .field--name-field-heading {
  font-size: 24px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
}
.paragraph--type--text-card .field--name-field-description * {
  font-size: 16px;
  line-height: 1.8em;
}
.paragraph--type--text-card .field--name-field-description p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 700px) {
  .paragraph--type--text-card {
    padding: 42px;
    border-radius: 50px;
    border-bottom-left-radius: unset;
  }
  .paragraph--type--text-card .field--name-field-description {
    font-size: 32px;
  }
}

.paragraph--type--view {
  margin-top: 80px;
  margin-bottom: 80px;
}

.paragraph--type--webform-embed {
  background-color: #F3F3F3;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 24px 12px;
}
.paragraph--type--webform-embed .paragraph__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 12px;
}
.paragraph--type--webform-embed .field--name-field-eyebrow {
  margin-bottom: 24px;
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
}
.paragraph--type--webform-embed .field--name-field-heading {
  font-size: 30px;
  font-weight: 700;
  margin-top: 0;
}
.paragraph--type--webform-embed .field--name-field-body-plain {
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 12px;
}
.paragraph--type--webform-embed form .submit-input-wrapper {
  width: 100%;
}
.paragraph--type--webform-embed form .submit-input-wrapper input {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .paragraph--type--webform-embed {
    margin-top: 120px;
    margin-bottom: 120px;
    padding: 64px 64px 48px 64px;
    border-radius: 64px;
    border-bottom-left-radius: unset;
    max-width: 1510px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) and (max-width: 1550px) {
  .paragraph--type--webform-embed {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .paragraph--type--webform-embed .field--name-field-eyebrow {
    flex-basis: 100%;
    font-size: 18px;
    margin-bottom: 48px;
  }
  .paragraph--type--webform-embed .paragraph__inner {
    flex-direction: row;
    column-gap: 64px;
    flex-wrap: wrap;
  }
  .paragraph--type--webform-embed .paragraph__copy {
    flex: 1;
  }
  .paragraph--type--webform-embed .field--name-field-heading {
    font-size: 44px;
    font-weight: 900;
  }
  .paragraph--type--webform-embed .field--name-field-body-plain {
    font-size: 18px;
    line-height: 1.6em;
    margin-top: 24px;
  }
  .paragraph--type--webform-embed .paragraph__webform {
    flex-basis: 50%;
  }
}

.view-id-other_events {
  background-color: #F3F3F3;
  padding-top: 100px;
  padding-bottom: 100px;
}
.view-id-other_events header h2 {
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
}
.view-id-other_events .item-list > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 13px;
  margin: 20px 0 0 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .view-id-other_events .item-list > ul {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.view-id-other_events .item-list > ul > li {
  margin: 0;
}
.view-id-other_events .item-list > ul .node {
  min-height: 100%;
}

.view-id-success_stories {
  margin-top: 120px;
  margin-bottom: 120px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1340px) {
  .view-id-success_stories {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.view-id-success_stories .view-filters {
  margin-bottom: 35px;
  padding-bottom: 45px;
  position: relative;
}
.view-id-success_stories .view-filters label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.view-id-success_stories .view-filters .form--inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
}
.view-id-success_stories .view-filters .form-type-select {
  margin: 0;
  max-width: 240px;
}
.view-id-success_stories .view-filters .form-type-select select {
  background-image: url("/themes/custom/bs5_alvernia/icons/select-caret.svg");
  background-size: 1.5em;
  border: 1px solid #A2AAAD;
  border-radius: 0.3em;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8em;
  padding: 1em 2.25em 1em 1.15em;
  position: relative;
}
.view-id-success_stories .view-filters .form-actions {
  margin: 0;
}
.view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset) {
  font-size: 16px;
  height: fit-content;
  width: fit-content;
  position: relative;
  transition: transform 250ms ease;
}
.view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3em 3em 3em 0;
  border: 0.2em solid #9B2743;
  transition: transform 250ms ease;
}
.view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset) input, .view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset) button {
  background-color: #9B2743;
  border: none;
  border-radius: 3em 3em 3em 0;
  color: #FFFFFF;
  font-family: "Archivo", sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5em;
  padding: 0.8em 1.25em;
  position: relative;
  text-transform: uppercase;
  width: fit-content;
  z-index: 10;
}
.view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset):hover, .view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset):has(input:focus-visible) {
  transform: translate(0.5em, -0.5em);
}
.view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset):hover input, .view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset):hover button, .view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset):has(input:focus-visible) input, .view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset):has(input:focus-visible) button {
  background-color: #9B2743;
}
.view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset):hover::before, .view-id-success_stories .view-filters .submit-input-wrapper:not(.input--name-reset):has(input:focus-visible)::before {
  transform: translate(-0.5em, 0.5em);
}
.view-id-success_stories .view-filters .input--name-reset {
  position: absolute;
  inset: calc(100% - 25px) 0 auto 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.view-id-success_stories .view-filters .input--name-reset input {
  background: none;
  border: none;
  color: #A2AAAD;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6em;
  padding: 0;
  text-transform: uppercase;
}
.view-id-success_stories .view-filters .input--name-reset input:hover, .view-id-success_stories .view-filters .input--name-reset input:focus-visible {
  text-decoration: underline;
}
.view-id-success_stories .view-content {
  display: flex;
  flex-direction: column;
  row-gap: 44px;
}
.view-id-success_stories .view-empty {
  background-color: #F3F3F3;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 80px;
  text-align: center;
  width: fit-content;
  border-radius: 40px;
  border-bottom-left-radius: unset;
}
.view-id-success_stories .view-empty h3 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 0.3em;
}
.view-id-success_stories .view-empty p {
  font-size: 24px;
  margin: 0;
}
.view-id-success_stories .pager--load-more .pager__items {
  padding: 0;
}
.view-id-success_stories .pager--load-more .pager__item {
  margin: 44px auto 0 auto;
}

.view-id-success_stories_related {
  background-color: #F3F3F3;
  padding-top: 100px;
  padding-bottom: 100px;
}
.view-id-success_stories_related header h2 {
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #9B2743;
  color: #9B2743;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1em;
  padding-bottom: 0.55em;
  text-transform: uppercase;
  width: fit-content;
}
.view-id-success_stories_related .item-list > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 13px;
  margin: 20px 0 0 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .view-id-success_stories_related .item-list > ul {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.view-id-success_stories_related .item-list > ul > li {
  margin: 0;
}
.view-id-success_stories_related .item-list > ul .node {
  min-height: 100%;
}

.view-id-upcoming_events {
  margin-top: 120px;
  margin-bottom: 120px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1340px) {
  .view-id-upcoming_events {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.view-id-upcoming_events .form--inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 46px;
  margin-bottom: 80px;
}
.view-id-upcoming_events .form--inline::after {
  display: none;
}
.view-id-upcoming_events .form-item {
  margin: 0;
}
.view-id-upcoming_events .form-item label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.view-id-upcoming_events .form-item-search {
  flex-basis: 100%;
  font-size: 32px;
  position: relative;
}
.view-id-upcoming_events .form-item-search input[type=text] {
  border: 1px solid #9B2743;
  border-radius: 100vmax;
  font-size: inherit;
  letter-spacing: 0.005em;
  line-height: 1em;
  padding: 30px 16px 30px 32px;
}
.view-id-upcoming_events .form-item-search input[type=text]::placeholder {
  color: #A2AAAD;
}
.view-id-upcoming_events .form-item-search .submit-input-wrapper {
  position: absolute;
  inset: 14px 14px 14px auto;
  height: auto;
}
.view-id-upcoming_events .form-item-search .submit-input-wrapper:hover {
  cursor: pointer;
}
.view-id-upcoming_events .form-item-search .submit-input-wrapper input {
  color: transparent;
  height: 100%;
  width: 86px;
}
.view-id-upcoming_events .form-item-search .submit-input-wrapper .search-icon {
  background-color: #9B2743;
  border-radius: 3em 3em 3em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  z-index: 10;
}
.view-id-upcoming_events .form-item-search .submit-input-wrapper img {
  height: 34px;
  width: 40px;
}
.view-id-upcoming_events .form-type-select {
  flex: 1;
}
.view-id-upcoming_events .form-type-select select {
  background-image: url("/themes/custom/bs5_alvernia/icons/select-caret.svg");
  background-size: 1.5em;
  border: 1px solid #A2AAAD;
  border-radius: 100vmax;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6em;
  padding: 1.15em 0.9em;
}
.view-id-upcoming_events .form-actions {
  margin: 0;
}
.view-id-upcoming_events .submit-input-wrapper {
  font-size: 16px;
  height: fit-content;
  width: fit-content;
  position: relative;
  transition: transform 250ms ease;
}
.view-id-upcoming_events .submit-input-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3em 3em 3em 0;
  border: 0.2em solid #9B2743;
  transition: transform 250ms ease;
}
.view-id-upcoming_events .submit-input-wrapper input, .view-id-upcoming_events .submit-input-wrapper button {
  background-color: #9B2743;
  border: none;
  border-radius: 3em 3em 3em 0;
  color: #FFFFFF;
  font-family: "Archivo", sans-serif;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5em;
  padding: 0.8em 1.25em;
  position: relative;
  text-transform: uppercase;
  width: fit-content;
  z-index: 10;
}
.view-id-upcoming_events .submit-input-wrapper:hover, .view-id-upcoming_events .submit-input-wrapper:has(input:focus-visible) {
  transform: translate(0.5em, -0.5em);
}
.view-id-upcoming_events .submit-input-wrapper:hover input, .view-id-upcoming_events .submit-input-wrapper:hover button, .view-id-upcoming_events .submit-input-wrapper:has(input:focus-visible) input, .view-id-upcoming_events .submit-input-wrapper:has(input:focus-visible) button {
  background-color: #9B2743;
}
.view-id-upcoming_events .submit-input-wrapper:hover::before, .view-id-upcoming_events .submit-input-wrapper:has(input:focus-visible)::before {
  transform: translate(-0.5em, 0.5em);
}
.view-id-upcoming_events .view-subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 50px;
  margin-top: 80px;
  margin-bottom: 80px;
  filter: grayscale(1);
  position: relative;
}
.view-id-upcoming_events .view-subscribe::after {
  content: "";
  position: absolute;
  inset: 0;
}
.view-id-upcoming_events .view-subscribe__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0;
}
.view-id-upcoming_events .view-subscribe__icons {
  display: flex;
  column-gap: 24px;
}
.view-id-upcoming_events .view-subscribe__icons svg {
  height: 32px;
  width: 32px;
}
.view-id-upcoming_events .item-list > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 66px 34px;
}
.view-id-upcoming_events .item-list > ul > li {
  margin: 0;
}
.view-id-upcoming_events .item-list > ul .node {
  height: 100%;
}

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