.c__button_group {
  margin-block: 12rem;
  padding-inline: 3rem;
}
.c__button_group > div:has(a) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  width: min(45em, 100%);
  margin-block: 4rem;
  margin-inline: auto;
}
.c__button_group > div:has(a) a {
  pointer-events: none;
  width: min(10em, 40vw);
  font-size: 1.3em;
  border: 4px solid black;
  text-align: center;
  text-decoration: none;
  font-family: Larsseit-Bold, Arial;
  font-weight: 400;
  padding: 0.6rem 0.8rem;
  color: black;
  background-image: linear-gradient(0, black 50%, transparent 0%);
  background-size: 100% 200%;
  background-position: 0 0;
  overflow: hidden;
  transition: background-position 0.2s cubic-bezier(0.87, 0, 0.13, 1), color 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}
.c__button_group > div:has(a) a:hover {
  background-position: 0 100%;
  color: white;
}
.c__button_group > div:not(:has(a)) {
  margin-inline: auto;
  text-align: center;
  width: min(50ch, 100%);
}
.c__button_group > div h3 {
  font-family: Larsseit-Bold, Arial;
  text-transform: uppercase;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0.4em;
}

.c__list_icons,
.c__text_and_image_alt {
  padding-block: 6rem;
}
.c__list_icons h2,
.c__text_and_image_alt h2 {
  margin-bottom: 0.3em;
}
@media (min-width: 1280px) {
  .c__list_icons h2,
.c__text_and_image_alt h2 {
    font-size: 12rem;
  }
}
.c__list_icons p,
.c__text_and_image_alt p {
  font-size: 2rem;
  -webkit-padding-end: 12rem;
          padding-inline-end: 12rem;
  text-wrap: balance;
}
.c__list_icons strong,
.c__text_and_image_alt strong {
  font-weight: 600;
}
@media (min-width: 1280px) {
  .c__list_icons,
.c__text_and_image_alt {
    padding-block: 12rem;
  }
}

.c__fast_track_banner {
  position: fixed;
  right: 0;
  bottom: 10rem;
  height: min(80vh, 400px);
  height: auto;
  box-shadow: 500px 0 500px 200px rgba(155, 234, 207, 0.6);
  transition: width 0.2s cubic-bezier(0.87, 0, 0.13, 1), box-shadow 0.1s;
  z-index: 99;
  width: 0;
}
.c__fast_track_banner[data-active] {
  width: min(80vw, 500px);
  box-shadow: 0 0 500px 200px rgba(155, 234, 207, 0.6);
  transition: width 0.2s cubic-bezier(0.87, 0, 0.13, 1), box-shadow 2s;
}
.c__fast_track_banner .handle {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  transform-origin: 0 100%;
  transform: rotate(-90deg);
  text-wrap: nowrap;
  background-color: rgb(87, 237, 185);
  width: auto;
  padding: 0.6rem 1.5rem;
  font-family: Larsseit-Bold, Arial;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
}
.c__fast_track_banner .handle div:last-child {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: rgb(87, 237, 185);
  padding: 0.6rem 1.5rem;
  transition: top 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}
.c__fast_track_banner[data-active] .handle div:last-child {
  top: 0;
}
.c__fast_track_banner .content a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  text-align: center;
  padding: 4rem;
  width: min(80vw, 500px);
}
.c__fast_track_banner .content a > *:not([role=presentation]) {
  position: relative;
  z-index: 2;
}
.c__fast_track_banner .content h3,
.c__fast_track_banner .content p {
  position: relative;
  text-align: center;
  margin-bottom: 1rem !important;
  color: white;
}
.c__fast_track_banner .content strong {
  font-weight: 600;
  border-bottom: 2px solid white;
}
.c__fast_track_banner .content h3 {
  font-family: Larsseit-Bold, Arial;
  text-transform: uppercase;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0.4em;
}
.c__fast_track_banner .content .btn {
  width: min(10em, 40vw);
  font-size: 1.3em;
  border: 4px solid white;
  text-align: center;
  text-decoration: none;
  font-family: Larsseit-Bold, Arial;
  font-weight: 400;
  padding: 0.6rem 0.8rem;
  color: white;
  margin-top: 4rem;
  background-image: linear-gradient(0, white 50%, transparent 0%);
  background-size: 100% 200%;
  background-position: 0 0;
  overflow: hidden;
  transition: background-position 0.2s cubic-bezier(0.87, 0, 0.13, 1), color 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}
.c__fast_track_banner .content a:hover .btn {
  background-position: 0 100%;
  color: black;
}
.c__fast_track_banner .content [role=presentation] {
  --color-bg1: rgb(113, 34, 229);
  --color-bg2: rgb(0, 228, 147);
  position: absolute;
  inset: 0;
  opacity: 1;
  background: linear-gradient(-90deg, var(--color-bg1) 50%, var(--color-bg2));
  background-size: 120% 120%;
  background-position: 0 0;
  transition: background-position 0.2s cubic-bezier(0.87, 0, 0.13, 1);
  z-index: 1;
}
.c__fast_track_banner .content [role=presentation]:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(images/fast-track-texture.jpg) no-repeat 50% 50%;
  background-size: cover;
  mix-blend-mode: screen;
}

.in_page_nav {
  display: flex;
  gap: 0;
  z-index: 5;
}
.in_page_nav.sticky {
  position: fixed;
  inset: 0;
  bottom: auto;
}
.in_page_nav > li {
  display: flex;
  align-items: center;
  width: 10%;
  flex-grow: 1;
  align-self: stretch;
  transition: width 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}
.in_page_nav > li:hover {
  transition: width 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
@media (min-width: 1025px) {
  .in_page_nav > li:hover {
    width: 14%;
  }
}
.in_page_nav > li.short {
  width: 6rem;
  flex-shrink: 0;
  flex-grow: 0;
}
.in_page_nav > li.short:hover {
  width: 6.4rem;
}
.in_page_nav > li > a {
  font-size: 3.2rem;
}
@media (max-width: 1025px) {
  .in_page_nav > li > a {
    font-size: 2rem;
  }
}
.in_page_nav a {
  flex-grow: 1;
  align-self: stretch;
  display: flex;
  justify-content: center;
  padding: 1rem 1.6rem;
  align-items: center;
  font-family: "BwStretch-Heavy", Impact;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  text-align: center;
  line-height: 1;
  background-color: rgb(30, 30, 30);
  background-image: linear-gradient(-35deg, #232323 50%, #262626 100%);
  background-size: 100%;
}
.in_page_nav a:hover {
  background-image: linear-gradient(-35deg, #282828 50%, #2d2d2d 100%);
}
.in_page_nav a.active {
  pointer-events: none;
}
.in_page_nav .short a {
  padding: 2rem;
}
@media (min-width: 1025px) {
  .in_page_nav .short a {
    padding: 2rem;
  }
}
.in_page_nav img {
  width: 2rem;
  height: 2rem;
  display: block;
}

.stick_nav_active [role=main] {
  -webkit-padding-before: 6rem;
          padding-block-start: 6rem;
}

.index-item-grid__group {
  margin: 2rem auto 8rem;
}
@media (max-width: 1300px) {
  .index-item-grid__group {
    padding-inline: 2rem;
  }
}
@media (min-width: 800px) {
  .index-item-grid__group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .index-item-grid__group:nth-child(4) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.index-item-grid img {
  max-width: 100%;
  height: auto;
}

.index-item-grid__item {
  display: block;
  text-decoration: none;
  color: inherit;
  text-wrap: balance;
}
.index-item-grid__item h2 {
  text-transform: uppercase;
  margin-bottom: 0;
}
.index-item-grid__item figure {
  margin: 0;
}
.index-item-grid__item img {
  vertical-align: middle;
}
.index-item-grid__item .faux_btn,
.index-item-grid__item .indicator {
  display: inline-block;
  border: 4px solid white;
  color: white;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 1rem 1.6rem;
  margin: auto;
  cursor: pointer;
  background-image: linear-gradient(0, white 50%, transparent 0%);
  background-size: 100% 200%;
  background-position: 0 0;
  overflow: hidden;
  transition: background-position 0.2s cubic-bezier(0.87, 0, 0.13, 1), color 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}
.index-item-grid__item .faux_btn polygon,
.index-item-grid__item .indicator polygon {
  fill: white;
}
.index-item-grid__item:hover .faux_btn,
.index-item-grid__item:hover .indicator {
  background-position: 0 100%;
  background-size: 100% 200%;
  color: black;
}
.index-item-grid__item:hover .faux_btn polygon,
.index-item-grid__item:hover .indicator polygon {
  fill: black;
}
@media (max-width: 800px) {
  .index-item-grid__group .index-item-grid__item {
    -webkit-margin-after: 6rem;
            margin-block-end: 6rem;
  }
}
.index-item-grid__group .index-item-grid__item figure {
  position: relative;
  aspect-ratio: 50/43;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}
.index-item-grid__group .index-item-grid__item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.index-item-grid__group .index-item-grid__item .faux_btn {
  display: none;
}
.index-item-grid__group .index-item-grid__item .indicator {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  height: 6rem;
  width: 6rem;
  padding: 0.75rem 1.2rem;
}
.index-item-grid__group .index-item-grid__item .indicator svg {
  width: 100%;
  height: 100%;
}
.index-item-grid > .index-item-grid__item {
  position: relative;
  display: flex;
  height: 50vh;
  overflow: hidden;
  -webkit-margin-after: 6rem;
          margin-block-end: 6rem;
}
.index-item-grid > .index-item-grid__item:last-child {
  margin-bottom: 0;
}
.index-item-grid > .index-item-grid__item figure {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: black;
}
.index-item-grid > .index-item-grid__item img {
  position: absolute;
  top: 50%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  opacity: 0.7;
}
.index-item-grid > .index-item-grid__item .content {
  position: relative;
  margin: auto;
  text-align: center;
  color: white;
  z-index: 3;
}
@media (max-width: 800px) {
  .index-item-grid > .index-item-grid__item .content {
    padding-inline: 2rem;
  }
}
.index-item-grid > .index-item-grid__item h2 {
  font-family: "BwStretch-Heavy", Impact;
  font-size: 5rem;
}
@media (min-width: 768px) {
  .index-item-grid > .index-item-grid__item h2 {
    font-size: 7.5rem;
  }
}
@media (min-width: 1280px) {
  .index-item-grid > .index-item-grid__item h2 {
    font-size: 10rem;
    letter-spacing: -0.2rem;
  }
}
.index-item-grid > .index-item-grid__item p {
  font-size: 2.2rem;
  font-weight: 600;
}
.index-item-grid > .index-item-grid__item p + .faux_btn {
  -webkit-margin-before: 3.5rem;
          margin-block-start: 3.5rem;
}
.index-item-grid > .index-item-grid__item .indicator {
  display: none;
}
.index-item-grid > .index-item-grid__item:first-child:after {
  content: "";
  background-image: url(../../zoo/img/bg-gradient.jpg);
  position: absolute;
  inset: 0;
  z-index: 2;
  -webkit-mask-image: linear-gradient(transparent 20%, rgb(0, 0, 0));
          mask-image: linear-gradient(transparent 20%, rgb(0, 0, 0));
  opacity: 0.8;
}

.c__item_scroller {
  margin-block: 12rem;
  margin-inline: auto;
}
.c__item_scroller h2 {
  font-family: Larsseit-Bold, Arial;
  font-size: 2.7rem;
  line-height: 1.2;
  text-align: center;
  padding-inline: 3rem;
  text-wrap: balance;
}
.c__item_scroller h2 + div {
  margin-top: 1.5rem;
}
.c__item_scroller > div:nth-child(2) {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  margin-block: 4rem;
  padding-inline: 3rem;
  margin-inline: auto;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.c__item_scroller > div:nth-child(2)::-webkit-scrollbar {
  display: none;
}
.c__item_scroller > div:nth-child(2) > div {
  flex: 0 0 min(560px, 60vw);
  text-align: center;
}
.c__item_scroller figure {
  margin: 0;
  margin-bottom: 4rem;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.c__item_scroller img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c__item_scroller h3,
.c__item_scroller p {
  margin-inline: min(4rem, 3vw);
}
.c__item_scroller h3 {
  font-family: Larsseit-Bold, Arial;
  text-transform: uppercase;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0.4em;
}
.c__item_scroller p {
  font-size: 2rem;
}
.c__item_scroller .scroll_btns {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-block: 4rem;
}
@media (width < 1024px) {
  .c__item_scroller .scroll_btns {
    display: none;
  }
}
.c__item_scroller .scroll_btns div {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(150deg, #00e493 0%, #7122e5 70%);
  background-size: 120% 120%;
  background-position: 0 0;
  transition: background-position 0.2s cubic-bezier(0.87, 0, 0.13, 1);
  cursor: pointer;
}
.c__item_scroller .scroll_btns div:first-child svg {
  transform: rotate(180deg);
}
.c__item_scroller .scroll_btns div:hover {
  background-position: 100% 100%;
}
.c__item_scroller .scroll_btns path {
  fill: white;
}
.c__item_scroller:has(> div:nth-child(2) > div:nth-child(3)) {
  width: min(1680px + 2.4rem + 6rem, 100%);
}
.c__item_scroller:has(> div:nth-child(2) > div:nth-child(4)) {
  width: min(2240px + 3.6rem + 6rem, 100%);
}
.c__item_scroller:has(> div:nth-child(2) > div:nth-child(5)) {
  width: min(2800px + 4.8rem + 6rem, 100%);
}
.c__item_scroller:has(> div:nth-child(2) > div:nth-child(6)) {
  width: min(3360px + 6rem + 6rem, 100%);
}

.c__list_icons {
  position: relative;
  display: block;
}
.c__list_icons > img,
.c__list_icons .background {
  position: absolute;
  inset: 0;
  top: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  pointer-events: none;
  z-index: 1;
}
.c__list_icons .background {
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  pointer-events: none;
}
.c__list_icons li.active .background {
  opacity: 1;
}
.c__list_icons:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.66);
  z-index: 3;
}
.c__list_icons .inner a,
.c__list_icons .inner h2,
.c__list_icons .inner p {
  position: relative;
  z-index: 4;
}
@media (min-width: 650px) {
  .c__list_icons .inner {
    display: flex;
  }
}
@media (min-width: 650px) {
  .c__list_icons .inner > div:first-child {
    width: 50%;
  }
}
@media (min-width: 650px) {
  .c__list_icons .inner > div:last-child {
    -webkit-padding-start: 12rem;
            padding-inline-start: 12rem;
  }
}
.c__list_icons ul {
  list-style: none;
}
@media (max-width: 650px) {
  .c__list_icons ul {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
}
.c__list_icons li a {
  display: grid;
  grid-template-columns: [icon-start] 4rem [icon-end label-start] auto [label-end];
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.2s cubic-bezier(0.87, 0, 0.13, 1);
  padding-block: 0.5rem;
  -webkit-padding-end: 2rem;
          padding-inline-end: 2rem;
}
.c__list_icons li a:hover {
  color: #00e493;
}
.c__list_icons li a:hover svg > * {
  fill: #00e493;
}
.c__list_icons li a .icon,
.c__list_icons li a svg {
  grid-column: icon;
  width: 100%;
}
.c__list_icons li a svg > * {
  transition: fill 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}
.c__list_icons li a span {
  grid-column: label;
}
@media (min-width: 1280px) {
  .c__list_icons {
    -webkit-padding-after: 24rem;
            padding-block-end: 24rem;
  }
}

.c__text_and_image_alt {
  margin-block: 0 !important;
}

.c__team_grid_simple .team_member_bio {
  position: absolute;
  inset: 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  padding: 2.5rem 4rem;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  z-index: 2;
  pointer-events: none;
  cursor: pointer;
  overflow-y: scroll;
}
.c__team_grid_simple .team_member_bio :first-child {
  margin-top: auto;
}
.c__team_grid_simple .team_member_bio :last-child {
  margin-bottom: auto;
}
.c__team_grid_simple .team_member_bio::-webkit-scrollbar-track {
  background-color: transparent;
}
.c__team_grid_simple .team_member_bio::-webkit-scrollbar {
  width: 20px;
  background-color: transparent;
}
.c__team_grid_simple .team_member_bio::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 8px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  background-color: white;
}
.c__team_grid_simple .team_member_bio p {
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
}
.c__team_grid_simple .team_member_bio strong {
  font-weight: 600;
}
.c__team_grid_simple .team_member_bio div:not(:last-child) p,
.c__team_grid_simple .team_member_bio p:not(:last-child) {
  -webkit-margin-after: 1.5em;
          margin-block-end: 1.5em;
}
.c__team_grid_simple .team_member_bio a {
  color: white;
}
.c__team_grid_simple .team_member_bio {
  transition: transform 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: transform 0.5s cubic-bezier(0.87, 0, 0.13, 1);
  transform: translateY(110%);
}
.c__team_grid_simple .team-grid__item {
  cursor: pointer;
  overflow: hidden;
}
.c__team_grid_simple .team-grid__item.active .team_member_bio, .c__team_grid_simple .team-grid__item:hover .team_member_bio {
  transform: translateY(0);
  pointer-events: all;
}

.c__video_cover {
  background-color: black;
  position: relative;
  width: 100%;
  height: 56.25vw;
  max-height: calc(100vh - 60px);
}
.c__video_cover .video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  z-index: 1;
}
.c__video_cover .video-embed iframe {
  width: 100vw;
  height: 56.3vw;
}
.c__video_cover h1 {
  position: absolute;
  inset: 0;
  top: auto;
  bottom: 4rem;
  color: white;
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.75;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.75);
  z-index: 2;
}
.c__video_cover h1 strong {
  font-family: "Larsseit-Bold", Arial;
  font-weight: 400;
}
@media (max-width: 768px) {
  .c__video_cover h1 {
    display: none;
  }
}
@media (min-width: 1280px) {
  .c__video_cover h1 {
    font-size: 2.7rem;
  }
}

@media screen and (orientation: landscape) {
  .content-hero {
    height: 80vh;
  }
}

.services-list-outer {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

body.services .pg-footer-outer {
  display: block;
}

body.fast_track .content-hero:has(svg) .content-hero__content {
  transform: translate(-50%, -30%);
}
body.fast_track .content-hero svg {
  width: min(80ch, 100%);
}
body.fast_track .content-hero svg:first-child {
  -webkit-animation: fast_track_headline__move_in__from_left 1s cubic-bezier(0.44, 0.85, 0.75, 1.11) 1 backwards, fast_track_headline__scale_up 0.5s 0.9s linear 1 backwards;
          animation: fast_track_headline__move_in__from_left 1s cubic-bezier(0.44, 0.85, 0.75, 1.11) 1 backwards, fast_track_headline__scale_up 0.5s 0.9s linear 1 backwards;
}
body.fast_track .content-hero svg:last-child {
  -webkit-animation: fast_track_headline__move_in__from_right 1s cubic-bezier(0.44, 0.85, 0.75, 1.11) 1 backwards, fast_track_headline__scale_up 0.5s 0.9s linear 1 backwards;
          animation: fast_track_headline__move_in__from_right 1s cubic-bezier(0.44, 0.85, 0.75, 1.11) 1 backwards, fast_track_headline__scale_up 0.5s 0.9s linear 1 backwards;
}
body.fast_track .content-hero path,
body.fast_track .content-hero polygon {
  fill: white;
}
body.fast_track .content-hero p {
  font-weight: 600;
}
body.fast_track .brand-intro .brand-intro__headline h2 {
  width: 12ch;
}
body.fast_track .brand-intro-outer:has(+ .outer) {
  padding-bottom: min(340px, 50vw);
}
body.fast_track .brand-intro-outer + .outer {
  position: relative;
  margin-top: max(-300px, -45vw);
  z-index: 2;
}
body.fast_track .c__item_scroller figure,
body.fast_track .text-img .text-img__img-outer {
  position: relative;
}
body.fast_track .c__item_scroller figure:after,
body.fast_track .text-img .text-img__img-outer:after {
  content: "";
  position: absolute;
  inset: 0;
  height: 8px;
  background: linear-gradient(-150deg, #00e493 0%, #7122e5 100%);
}
body.fast_track .content-hero [role=presentation] {
  --color-bg1: rgb(113, 34, 229);
  --color-bg2: rgb(0, 228, 147);
  --color1: 0, 228, 147;
  --color2: 221, 74, 255;
  --color3: 100, 220, 255;
  --color4: 200, 50, 50;
  --color5: 180, 180, 50;
  --color-interactive: 140, 100, 255;
  --circle-size: 200%;
  --blending: hard-light;
  --duration_multiplier: .3;
  position: absolute;
  inset: 0;
  background: linear-gradient(98deg, var(--color-bg1), var(--color-bg2));
  overflow: hidden;
  opacity: 0.6;
}
body.fast_track .content-hero [role=presentation] div {
  position: absolute;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  -webkit-animation: moveVertical 30s ease infinite;
          animation: moveVertical 30s ease infinite;
  opacity: 1;
}
body.fast_track .content-hero [role=presentation] div:nth-child(1) {
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  transform-origin: calc(50% + 400px);
  -webkit-animation: moveInCircle calc(var(--duration_multiplier) * 40s) linear infinite;
          animation: moveInCircle calc(var(--duration_multiplier) * 40s) linear infinite;
}
body.fast_track .content-hero [role=presentation] div:nth-child(2) {
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  transform-origin: calc(50% - 400px);
  animation: moveInCircle calc(var(--duration_multiplier) * 20s) reverse infinite;
}
body.fast_track .content-hero [role=presentation] div:nth-child(3) {
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  transform-origin: calc(50% + 400px);
  -webkit-animation: moveInCircle calc(var(--duration_multiplier) * 40s) linear infinite;
          animation: moveInCircle calc(var(--duration_multiplier) * 40s) linear infinite;
}
body.fast_track .content-hero [role=presentation] div:nth-child(4) {
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  transform-origin: calc(50% - 200px);
  -webkit-animation: moveHorizontal calc(var(--duration_multiplier) * 40s) ease infinite;
          animation: moveHorizontal calc(var(--duration_multiplier) * 40s) ease infinite;
}
body.fast_track .content-hero [role=presentation] div:nth-child(5) {
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  -webkit-animation: moveInCircle calc(var(--duration_multiplier) * 20s) ease infinite;
          animation: moveInCircle calc(var(--duration_multiplier) * 20s) ease infinite;
}
body.fast_track .text-img + .text-img:not(:has(+ .text-img)) {
  position: relative;
}
body.fast_track .text-img + .text-img:not(:has(+ .text-img)) .text-img__text {
  padding-block: 20rem 10rem;
  color: white;
}
body.fast_track .text-img + .text-img:not(:has(+ .text-img)) .mb-md {
  margin: 0;
}
body.fast_track .text-img + .text-img:not(:has(+ .text-img)) [role=presentation] {
  --color-bg1: rgb(113, 34, 229);
  --color-bg2: rgb(0, 228, 147);
  --circle-size: 60%;
  position: absolute;
  inset: 0;
  top: 10rem;
  opacity: 1;
  background: linear-gradient(-90deg, var(--color-bg1) 50%, var(--color-bg2));
}
body.fast_track .text-img + .text-img:not(:has(+ .text-img)) [role=presentation]:after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(images/fast-track-texture.jpg) no-repeat 50% 50%;
  background-size: cover;
  mix-blend-mode: screen;
}
@-webkit-keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@-webkit-keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
@-webkit-keyframes fast_track_headline__move_in__from_left {
  0% {
    translate: -100vw 0;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes fast_track_headline__move_in__from_left {
  0% {
    translate: -100vw 0;
  }
  100% {
    translate: 0 0;
  }
}
@-webkit-keyframes fast_track_headline__move_in__from_right {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes fast_track_headline__move_in__from_right {
  0% {
    translate: 100vw 0;
  }
  100% {
    translate: 0 0;
  }
}
@-webkit-keyframes fast_track_headline__scale_up {
  0%, 80% {
    scale: 0.9;
  }
  100% {
    scale: 1;
  }
}
@keyframes fast_track_headline__scale_up {
  0%, 80% {
    scale: 0.9;
  }
  100% {
    scale: 1;
  }
}
@-webkit-keyframes headline_build_from_left {
  0% {
    transform: translateX(-100vw) scale(0.8);
  }
  80% {
    transform: translateX(0) scale(0.8);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}
@keyframes headline_build_from_left {
  0% {
    transform: translateX(-100vw) scale(0.8);
  }
  80% {
    transform: translateX(0) scale(0.8);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}
.page-template-page-home .c__list_icons,
.page-template-page-home .c__text_and_image_alt {
  background-color: black;
  color: white;
}
.c__list_icons .btn,
.c__text_and_image_alt .btn {
  color: white !important;
}
.c__list_icons .btn:after,
.c__text_and_image_alt .btn:after {
  background-color: white !important;
}
/*# sourceMappingURL=additions.css.map */
