.unordered-list-basic {
  display: flex;
  flex-direction: column;
  list-style-type: disc;
  row-gap: 0.75rem;
}
.unordered-list-basic li::marker {
  color: var(--base-500);
}
.ordered-list-basic {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
.ordered-list-basic li::marker {
  color: var(--base-500);
}
.gb-btn-primary {
  align-items: center;
  background-color: var(--orange-pri);
  color: var(--base-0);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transform: translate3d(0px, 0px, 0px);
  transition: all 0.3s ease 0s;
  border: 1px solid var(--orange-pri);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}
.gb-btn-primary:hover {
  background-color: var(--orange-sec);
  transition: all 0.3s ease 0s;
  color: var(--base-0);
  border-top-color: var(--orange-sec);
  border-right-color: var(--orange-sec);
  border-bottom-color: var(--orange-sec);
  border-left-color: var(--orange-sec);
}
.gb-btn-secondary {
  background-color: var(--blue-pri);
  border-bottom-color: var(--blue-pri);
  border-left-color: var(--blue-pri);
  border-right-color: var(--blue-pri);
  border-top-color: var(--blue-pri);
}
.gb-btn-secondary:hover {
  background-color: var(--blue-sec);
  border-top-color: var(--blue-sec);
  border-right-color: var(--blue-sec);
  border-bottom-color: var(--blue-sec);
  border-left-color: var(--blue-sec);
}
.gb-btn-primary_outline {
  background-color: rgba(255, 255, 255, 0);
  color: var(--orange-pri);
  border: 1px solid var(--orange-pri);
}
.gb-btn-primary_outline:hover {
  color: var(--base-0);
  background-color: var(--orange-sec);
  border: 2px solid var(--orange-sec);
}
.gb-btn-secondary_outline {
  background-color: rgba(255, 255, 255, 0);
  color: var(--blue-pri);
  border: 1px solid var(--blue-pri);
}
.gb-btn-secondary_outline:hover {
  background-color: var(--blue-sec);
  color: var(--base-0);
  border-top-color: var(--blue-sec);
  border-right-color: var(--blue-sec);
  border-bottom-color: var(--blue-sec);
  border-left-color: var(--blue-sec);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .grid-2 {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .grid-3 {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .grid-5 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.gap-xs {
  column-gap: 1rem;
  row-gap: 1rem;
}
.gap-s {
  column-gap: 2rem;
  row-gap: 2rem;
}
.gap-m {
  column-gap: 3rem;
  row-gap: 3rem;
}
.padding-1 {
  padding: 1rem;
}
.padding-2 {
  padding: clamp(1.3rem, calc(1.0455rem + 1.2727vw), 2rem);
}
.gap-l {
  column-gap: 6em;
  row-gap: 2em;
}
.gb-btn-unstyled {
  color: var(--base-800);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease 0s;
  width: fit-content;
  padding: 0px;
}
.gb-btn-unstyled:hover {
  color: var(--base-700);
}
.gb-btn-unstyled a {
  color: var(--base-700);
}
.gb-btn-unstyled_noLine:hover {
  color: var(--blue-sec);
}
.gb-btn-unstyled_noLine a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.query-loop__card-base:hover .query-loop__card-title a {
  transition: all 0.3s ease 0s;
  text-decoration: underline #474469;
}
.query-loop__card-base > img {
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-m);
}
@media (max-width: 767px) {
  .query-loop__card-base > img {
    height: 175px;
  }
}
.query-loop__card-label {
  padding-bottom: 0.5rem;
}
.query-loop__card-label * {
  text-decoration: none;
  font-size: 0.6rem;
  color: var(--base-700);
  background-color: rgba(75, 164, 227, 0.11);
  border-radius: var(--radius-s);
  padding: 0.4rem;
}
.query-loop__card-title a {
  text-decoration: underline var(--base-0);
  color: var(--base-700);
}
.ct-blog__main-page a.page-numbers {
  border-radius: 8px;
}
.grid-2__1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 767px) {
  .grid-2__1-2 {
    grid-template-columns: 1fr;
  }
}
.grid-2__2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 767px) {
  .grid-2__2-1 {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.gb-btn-primary__light {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--base-0);
}
.gb-btn-primary__light:hover {
  background-color: var(--base-0);
  border-top-color: var(--base-0);
  border-right-color: var(--base-0);
  border-bottom-color: var(--base-0);
  border-left-color: var(--base-0);
  color: var(--base-800);
}
.gb-pill-primary {
  background-color: rgba(192, 193, 207, 0.2);
  color: var(--base-300);
  font-size: var(--fs-headline-body-s);
  font-weight: 400;
  text-decoration: none;
  border: 1.5px solid var(--base-400);
  border-radius: 200px;
  padding: 0.5rem 1rem;
}
.gb-pill-primary:hover {
  border-top-color: var(--base-700);
  border-right-color: var(--base-700);
  border-bottom-color: var(--base-700);
  border-left-color: var(--base-700);
  transition: all 0.3s ease 0s;
  color: var(--base-100);
  background-color: var(--base-700);
}
.bg__indigo {
  background-color: var(--base-900);
}
.bg__rounded-top__white {
  background-color: var(--base-0);
  border-top-left-radius: var(--radius-xxl);
  border-top-right-radius: var(--radius-xxl);
}
@media (max-width: 767px) {
  .bg__rounded-top__white {
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
  }
}
.gb-btn-unstyled_noLine_orange {
  color: var(--orange-sec);
}
.gb-btn-unstyled_noLine_orange:hover {
  color: var(--orange-pri);
}
.gb-textLink-orange {
  color: var(--orange-pri);
  font-weight: 700;
}
.gb-textLink-orange a {
  text-decoration: none;
  color: var(--orange-sec);
}
.gb-textLink-orange a:hover {
  color: var(--orange-pri);
}
.blog-callout {
  background-color: var(--base-0);
  border-radius: var(--radius-m);
  padding: 2rem;
}
.blog-cta {
  background-color: var(--base-200);
  border-radius: var(--radius-m);
  padding: 2rem;
}
.fontweight-700 {
  font-weight: 700;
}
.grid-2__1-9 {
  display: grid;
  grid-template-columns: 1fr 9fr;
}
.gb-btn-primary__dark {
  background-color: var(--base-850);
  border-bottom-color: var(--base-800);
  border-left-color: var(--base-800);
  border-right-color: var(--base-800);
  border-top-color: var(--base-800);
}
.gb-btn-primary__dark:hover {
  background-color: var(--base-900);
  border-top-color: var(--base-900);
  border-right-color: var(--base-900);
  border-bottom-color: var(--base-900);
  border-left-color: var(--base-900);
}
.gb-btn-primary__dark_outline {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-color: var(--base-800);
  border-left-color: var(--base-800);
  border-right-color: var(--base-800);
  border-top-color: var(--base-800);
  color: var(--base-850);
}
.gb-btn-primary__dark_outline:hover {
  background-color: var(--base-900);
  border-top-color: var(--base-900);
  border-right-color: var(--base-900);
  border-bottom-color: var(--base-900);
  border-left-color: var(--base-900);
}
.gb-btn-unstyled_light {
  color: var(--base-0);
}
.gb-btn-unstyled_light:hover {
  color: var(--base-200);
}
.gb-btn-unstyled_light:is(:hover, :focus) {
  color: var(--base-0);
}
.gb-btn-unstyled_noLine_light {
  color: var(--base-0);
}
.offerings_tab-menu-item.gb-block-is-current h3 {
  color: var(--base-0);
  padding-left: 1rem;
  border-left: 2px solid var(--base-0);
}
.offerings_tab-menu-item h3 {
  color: var(--base-600);
}
@media (max-width: 767px) {
  .offerings_tab-menu-item {
    flex-grow: 1;
    flex-shrink: 0;
  }
}
.grid-flex__250min {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  height: 100%;
}
@media (max-width: 767px) {
  .grid-flex__250min {
    display: flex;
    flex-direction: column;
  }
}
.checkmark-bullet-icon__white:before {
  color: var(--base-0);
}
.checkmark-bullet-icon__base600:before {
  color: var(--base-600);
}
.padding-3 {
  padding: clamp(1.3rem, calc(0.6818rem + 3.0909vw), 3rem);
}
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none;
  }
}
.hide-on-desktop {
  display: none;
}
@media (max-width: 1024px) {
  .hide-on-desktop {
    display: none;
  }
}
@media (max-width: 767px) {
  .hide-on-desktop {
    display: flex;
  }
}
.linked-container {
  text-decoration: none;
}
.bg__rounded-top__indigo {
  background-color: var(--base-850);
  border-top-left-radius: var(--radius-xxl);
  border-top-right-radius: var(--radius-xxl);
}
@media (max-width: 767px) {
  .bg__rounded-top__indigo {
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
  }
}
.shadowed {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.bg__rounded-top__base50 {
  background-color: var(--base-50);
  border-top-left-radius: var(--radius-xxl);
  border-top-right-radius: var(--radius-xxl);
}
@media (max-width: 767px) {
  .bg__rounded-top__base50 {
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
  }
}
.cta-appear {
  align-items: center;
  opacity: 1;
  overflow-x: hidden;
  transform: translate3d(-4.75em, 0px, 0px);
}
.cta-arrow-rotate {
  transform: rotate(45deg);
}
.cta__parent {
  overflow-x: hidden;
}
.cta__parent:hover .cta-appear {
  opacity: 1;
  transition: all 0.3s ease 0s;
  transform: translate3d(0px, 0px, 0px);
}
.cta__parent:hover .cta-arrow-rotate {
  transform: rotate(-45deg);
  transition: all 0.3s ease 0s;
}
.revealed-text {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease 0s;
}
.revealed-text p {
  min-height: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
}
.revealed-text-parent__dark {
  background-color: var(--base-900);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  min-height: 23em;
}
.revealed-text-parent__dark h3 {
  color: var(--base-100);
}
.revealed-text-parent__dark:hover {
  background-color: var(--base-0);
  transition: all 0.3s ease 0s;
}
.revealed-text-parent__dark:hover .revealed-text {
  grid-template-rows: 1fr;
  padding-bottom: 1em;
  padding-top: 0px;
  color: var(--base-700);
  border-bottom: 1px solid var(--base-400);
}
.revealed-text-parent__dark:hover .revealed-text-icon__dark {
  background-color: var(--base-100);
  transition: all 0.3s ease 0s;
  color: var(--base-500);
}
.revealed-text-parent__dark:hover h3 {
  color: var(--base-700);
}
.revealed-text-parent__dark .revealed-text-icon__dark {
  background-color: var(--base-850);
  color: var(--base-600);
  transform: rotate3d(0, 0, 0, 45deg);
}
@media (max-width: 767px) {
  .revealed-text-parent__dark {
    min-height: 0px;
  }
}
.border-radius-xs {
  border-radius: var(--radius-xs);
}
.border-radius-s {
  border-radius: var(--radius-s);
}
.border-radius-m {
  border-radius: var(--radius-m);
}
.border-radius-l {
  border-radius: var(--radius-l);
}
.border-radius-xl {
  border-radius: var(--radius-xl);
}
.text-color__indigo {
  color: var(--base-700);
}
.text-color__white {
  color: var(--base-0);
}
.text-color__white a {
  color: var(--base-0);
}
.text-color__white a:hover {
  color: var(--blue-pri);
}
.text-center {
  text-align: center;
}
@media (max-width: 767px) {
  .text-center__mobile {
    text-align: center;
  }
}
.display-flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
@media (max-width: 767px) {
  .flex-row {
    flex-direction: column;
  }
}
.align-center {
  align-items: center;
}
.flex-row__allscreens {
  flex-direction: row;
}
.justify-center {
  justify-content: center;
}
.tc-tabs {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .tc-tabs {
    flex-direction: column;
  }
}
.tc-tabs-menu {
  column-gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 40%;
  width: 100%;
}
@media (max-width: 767px) {
  .tc-tabs-menu {
    max-width: 100%;
    overflow-x: auto;
  }
}
.tc-tabs-menu-item {
  color: var(--base-500);
  padding: 2em 1em 2em 0em;
}
.tc-tabs-menu-item:is(
  .gb-block-is-current,
  .gb-block-is-current:hover,
  .gb-block-is-current:focus
) {
  color: var(--base-700);
}
.tc-tabs-menu-item:is(
    .gb-block-is-current,
    .gb-block-is-current:hover,
    .gb-block-is-current:focus
  )
  .caret-tabcordion {
  display: none;
}
.tc-tabs-menu-item:is(
    .gb-block-is-current,
    .gb-block-is-current:hover,
    .gb-block-is-current:focus
  )
  .tc-body {
  grid-template-rows: 1fr;
}
.tc-tabs-menu-item:is(
    .gb-block-is-current,
    .gb-block-is-current:hover,
    .gb-block-is-current:focus
  )
  .tc-tabs-menu-item-icon {
  color: var(--blue-pri);
}
.tc-tabs-menu-item:is(
    .gb-block-is-current,
    .gb-block-is-current:hover,
    .gb-block-is-current:focus
  )
  h3 {
  color: var(--base-700);
}
.tc-tabs-menu-item:is(:hover, :focus) {
  color: #000000;
}
.tc-tabs-menu-item:is(:hover, :focus) h3 {
  color: var(--base-700);
  transition: all 0.3s ease 0s;
}
.tc-tabs-menu-item:not(.gb-block-is-current) h3 {
  margin-bottom: 0px;
  font-size: 98%;
}
@media (max-width: 767px) {
  .tc-tabs-menu-item {
    flex-grow: 1;
    flex-shrink: 0;
  }
}
.tc-tabs-items {
  max-width: 60%;
  width: 100%;
}
@media (max-width: 767px) {
  .tc-tabs-items {
    display: none;
    max-width: 100%;
  }
}
.tc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.25s ease 0s;
}
.tc-body * {
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .tc-body .tc-img {
    display: none;
  }
}
.tc-img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
  width: auto;
}
.opacity-80 {
  opacity: 0.8;
}
.gb-textLink-indigo {
  color: var(--base-700);
  font-weight: 700;
}
.gb-textLink-indigo:hover {
  color: var(--base-800);
}
.gb-textLink-indigo a {
  text-decoration: none;
  color: var(--base-700);
}
.gb-textLink-indigo a:hover {
  color: var(--blue-sec);
}
@media (max-width: 767px) {
  .mt-1_mobile-only {
    padding-top: 1.5em;
  }
}
.grid-1 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.justify-items-center {
  justify-items: center;
}
.padding-tb-1 {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.align-items-center {
  align-items: center;
}
.grid-2__4-3 {
  display: grid;
  grid-template-columns: 4fr 3fr;
}
@media (max-width: 767px) {
  .grid-2__4-3 {
    grid-template-columns: 1fr;
  }
}
.cta-arrow-rotate__container {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.cta-arrow-rotate__parent_light {
  background-color: var(--base-0);
}
.cta-arrow-rotate__parent_light:hover {
  background-color: var(--base-900);
  transition: all 0.25s ease 0s;
  color: var(--base-0);
}
.cta-arrow-rotate__parent_light:hover .cta-arrow-rotate {
  transform: rotate(0deg);
  transition: transform 0.3s ease 0s;
  color: var(--base-500);
}
.cta-arrow-rotate__parent_light:hover .cta-arrow-rotate-ctatext {
  transform: translate3d(0px, 0px, 0px);
}
.cta-arrow-rotate-ctatext {
  color: var(--base-0);
  font-weight: 700;
  transform: translate3d(-10px, 0px, 0px);
  transition: transform 0.3s ease 0s;
}
.stretch-link:hover .gb-textLink-indigo {
  color: var(--blue-sec);
}
.stretch-link:hover .gb-textLink-orange {
  color: var(--orange-sec);
}
.gb-pill-secondary {
  background-color: var(--base-200);
  border-bottom-color: var(--base-500);
  border-left-color: var(--base-500);
  border-right-color: var(--base-500);
  border-top-color: var(--base-500);
  font-size: var(--fs-body);
  font-weight: 400;
  text-decoration: none;
}
.gb-pill-secondary:hover {
  border-top-color: var(--base-0);
  border-right-color: var(--base-0);
  border-bottom-color: var(--base-0);
  border-left-color: var(--base-0);
  transition: all 0.3s ease 0s;
  color: var(--base-0);
  background-color: var(--base-700);
}
@media (max-width: 767px) {
  .mb-1_mobile-only {
    margin-bottom: 1em;
  }
}
.circle-mask img {
  border-radius: 50%;
}
.hover_move-up {
  transform: translate3d(0px, 0px, 0px);
  transition: transform 0.3s ease 0s;
}
.hover_move-up:hover {
  transform: translate3d(0px, -5px, 0px);
  transition: transform 0.3s ease 0s;
}
.bg__vertical-split__indigo {
  background-blend-mode: normal;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 45%,
    var(--base-850) 45%
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 767px) {
  .bg__vertical-split__indigo {
    background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 45%,
      var(--base-850) 45%
    );
  }
}
.bg__white {
  background-color: var(--base-0);
}
.gap-xxs {
  column-gap: 0.5rem;
  row-gap: 0.5rem;
}
.grid-2__3-4 {
  display: grid;
  grid-template-columns: 3fr 4fr;
}
@media (max-width: 767px) {
  .grid-2__3-4 {
    grid-template-columns: 1fr;
  }
}
.quote-container {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--base-500);
  border-bottom: 1px solid var(--base-500);
}
.mtb-2 {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.tc-tabs-accordion {
  max-width: 100%;
}
.flex__1-1-0p {
  flex-basis: 0%;
  flex-grow: 1;
  flex-shrink: 1;
}
.gb-headline-pullquote-1 {
  line-height: 2.25rem;
  text-align: left;
}
@media (max-width: 767px) {
  .gb-headline-pullquote-1 {
    font-size: var(--fs-body);
    line-height: 1.75;
  }
}
.grid-3__1-2 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}
.gb-pill-primary_light {
  background-color: var(--base-200);
  color: var(--base-700);
}
.gb-video-container {
  display: flex;
  min-height: 600px;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}
.grid-3__2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}
.long-form-content-pullquote {
  margin-bottom: 3rem;
  margin-top: 2.5rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--base-400);
  border-bottom: 1px solid var(--base-400);
}
.overlay-panel-basic {
  background-color: var(--base-0);
  flex-direction: column;
  max-width: 40rem;
  border-radius: var(--radius-m);
  margin: 2rem;
  padding: 1.5rem 2rem;
}
.linked-text_noLine {
  text-decoration: none;
}
.linked-text_noLine a {
  text-decoration: none;
}
