@charset "UTF-8";
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75 ;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-zoomInUp {
  animation: 0.2s ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: 0.2s ease-out both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: 0.175s ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: 0.2s ease both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: 0.5s ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: 0.2s ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: 0.2s ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: 0.2s ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: 0.1s linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65 ;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

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

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: 0.35s ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: 0.35s ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,
.fancybox__container:not(.is-compact) .has-map .fancybox__content,
.fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0 ;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1 ;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px ;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.f-thumbs__track {
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  min-width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  --clip-path: inset(0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0))) round var(--f-thumb-border-radius, 0));
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.is-modern .f-thumbs__slide > * {
  -webkit-clip-path: var(--clip-path);
  clip-path: var(--clip-path);
}

.is-modern.in-touch .f-thumbs__slide {
  filter: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: all 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  margin: auto 0;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px ;
}

.fancybox__thumbs.is-hidden {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

/*!
  Theme: GitHub
  Description: Light theme as seen on github.com
  Author: github.com
  Maintainer: @Hirse
  Updated: 2021-05-15

  Outdated base version: https://github.com/primer/github-syntax-light
  Current colors taken from GitHub's CSS
*/
pre code.hljs {
  overflow-x: auto;
  display: block;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

.hljs {
  color: #24292e;
  background: #fff;
}

.hljs-doctag,
.hljs-keyword,
.hljs-meta .hljs-keyword,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-variable.language_ {
  color: #d73a49;
}

.hljs-title,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-title.function_ {
  color: #6f42c1;
}

.hljs-attr,
.hljs-attribute,
.hljs-literal,
.hljs-meta,
.hljs-number,
.hljs-operator,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-id,
.hljs-variable {
  color: #005cc5;
}

.hljs-meta .hljs-string,
.hljs-regexp,
.hljs-string {
  color: #032f62;
}

.hljs-built_in,
.hljs-symbol {
  color: #e36209;
}

.hljs-code,
.hljs-comment,
.hljs-formula {
  color: #6a737d;
}

.hljs-name,
.hljs-quote,
.hljs-selector-pseudo,
.hljs-selector-tag {
  color: #22863a;
}

.hljs-subst {
  color: #24292e;
}

.hljs-section {
  font-weight: 700;
  color: #005cc5;
}

.hljs-bullet {
  color: #735c0f;
}

.hljs-emphasis {
  font-style: italic;
  color: #24292e;
}

.hljs-strong {
  font-weight: 700;
  color: #24292e;
}

.hljs-addition {
  color: #22863a;
  background-color: #f0fff4;
}

.hljs-deletion {
  color: #b31d28;
  background-color: #ffeef0;
}

.nice-select {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  float: left;
  clear: both;
  display: block;
  box-sizing: border-box;
  width: auto;
  height: 38px;
  padding-right: 30px;
  padding-left: 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  line-height: 36px;
  text-align: left !important;
  white-space: nowrap;
  background-color: #fff;
  border: 0;
  border-radius: 5px;
  outline: none;
  transition: all 0.2s ease-in-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

.nice-select::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  display: block;
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transition: all 0.15s ease-in-out;
}

.nice-select.open::after {
  z-index: 9;
  transform: rotate(-135deg);
}

.nice-select .nice-select-dropdown {
  pointer-events: none;
  position: absolute;
  z-index: 9;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(19px);
  margin-top: 4px;
  opacity: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}

.nice-select .option {
  cursor: pointer;
  padding-right: 29px;
  padding-left: 18px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
  list-style: none;
  outline: none;
  transition: all 0.2s;
}

.nice-select.open .nice-select-dropdown {
  pointer-events: auto;
  transform: scale(1) translateY(0);
  opacity: 1;
}

.nice-select.small .option {
  min-height: 34px;
  line-height: 34px;
}

.nice-select.disabled {
  pointer-events: none;
  color: #999;
  border-color: #ededed;
}

.nice-select.disabled::after {
  border-color: #ccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .nice-select-dropdown {
  right: 0 !important;
  left: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .nice-select-dropdown {
  right: 0;
  left: auto;
}

.nice-select.small {
  height: 36px;
  font-size: 12px;
  line-height: 34px;
}

.nice-select.small::after {
  width: 4px;
  height: 4px;
}

.nice-select .list {
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  max-height: 210px;
  padding: 0;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: rgba(0, 0, 0, 0) !important;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  cursor: default;
  color: #999;
  background-color: rgba(0, 0, 0, 0);
}

.nice-select .optgroup {
  font-weight: bold;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
  display: none;
}

.no-csspointerevents .nice-select.open .nice-select-dropdown {
  display: block;
}

.nice-select .list::-webkit-scrollbar {
  width: 0;
}

.nice-select .has-multiple {
  height: auto;
  min-height: 36px;
  padding: 7px 12px;
  line-height: 22px;
  white-space: inherit;
}

.nice-select .has-multiple span.current {
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 3px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 24px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.nice-select .has-multiple .multiple-options {
  display: block;
  padding: 0;
  line-height: 24px;
}

.nice-select .nice-select-search-box {
  pointer-events: none;
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  border-radius: 5px 5px 0 0;
}

.nice-select .nice-select-search {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  min-height: 36px;
  margin: 0 10px 0 0;
  padding: 7px 12px;
  font-size: 14px;
  line-height: 22px;
  color: #444;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  outline: 0 !important;
}

:root {
  --black: #000000;
  --primary-font: Helvetica, Arial, sans-serif;
  --secondary-font: Verdana;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*::before,
*::after {
  display: block;
}

img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  background-color: transparent;
}

p a,
label a {
  display: inline;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

::-moz-selection {
  background-color: var(--black, black);
  color: var(--white, white);
  text-shadow: none;
}

::selection {
  background-color: var(--black, black);
  color: var(--white, white);
  text-shadow: none;
}

form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  background-color: transparent;
  color: inherit;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  overflow: visible;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

[hidden] {
  display: none !important;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  margin: 0;
}

main {
  display: block;
  overflow-x: hidden;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 50%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.8em;
}

img {
  border-style: none;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-size: 100%;
  font-family: var(--primary-font);
  color: var(--black);
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input {
  overflow: visible;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -moz-appearance: button;
  appearance: button;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* stylelint-disable scss/no-global-function-names */
/* We declare colors in a map as key: value
with the color name as the key and the hex
as the value

And we are goint to use it in _utils.scss */
/* VOYDEYA Patient Colors  */
/* Gradients VOYDEYA */
/* Boilerplate Colors */
/* VOYDEYA Fonts */
*,
*::before,
*::after {
  font-family: "Roboto", "Arial", "Helvetica", sans-serif;
}

/*
  This mixin will build the prefix values for the property and value passed in.
  It will also add the property and value without the prefix.
  Example:
    @include build-prefix-values('transition', 'all 1s linear');
*/
/* 
  Example usage:
    .my-class {
      // Default usage
      @include transition();
      // Custom usage
      @include transition('all', 1s, linear);
    }
*/
.wrapper {
  position: relative;
  width: 100%;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
}
@media screen and (min-width: 428px) {
  .wrapper {
    max-width: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 768px) {
  .wrapper {
    max-width: calc(100% - 4rem);
  }
}
@media screen and (min-width: 1024px) {
  .wrapper {
    max-width: calc(100% - 4.2813rem);
  }
}
@media screen and (min-width: 1250px) {
  .wrapper {
    max-width: 1235px;
  }
}

html.no-scroll {
  overflow: hidden;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background-color: #FFF;
}

footer {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.25;
  letter-spacing: normal;
}

h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }
}

h2 {
  font-size: 32px;
  line-height: 40px;
}

h3 {
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
}

h4 {
  font-size: 24px;
  line-height: 30px;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

em {
  font-style: italic;
}

a {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #A3227D;
}

label a,
p a {
  font-weight: bold;
  text-decoration: underline;
}

small {
  font-size: 0.75rem;
  line-height: 0.8788rem;
}

ul li {
  list-style-type: none;
}

ul li::marker {
  display: none;
}

main {
  flex: 1 0 auto;
}
main ul li {
  list-style-type: disc;
}
main ul li::marker {
  color: #000;
}

sup.symbol-sup {
  top: initial;
  font-size: inherit;
  line-height: 0;
}

.design-system-section {
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #000;
}

.example-code {
  position: relative;
}

.code {
  overflow-x: auto;
  display: block;
  width: 100%;
  font-style: normal;
  color: #212529;
}

.copy-clipboard {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 10px;
  margin: 0.5rem;
  padding: 0.5rem;
  color: #FFF;
  background-color: #000;
  border-radius: 0.5rem;
}

.hljs {
  background-color: #fff;
}

.hljs-tag {
  color: #333;
}

.hljs-name {
  color: #c6303e;
}

.hljs-attr {
  color: #6f42c1;
}

.hljs-string {
  color: #084298;
}

swiper-container {
  /* Change the default color of the all swiper elements */
  --swiper-theme-color: #000;
  z-index: 0;
  /* Width and height of slider */
  width: 100%;
  height: auto;
}

.myswiper-custum-text {
  padding: 3rem;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}

.animate-box {
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate {
  transform: translateY(0);
  opacity: 1;
}

/* Using @each we create a CSS class for
color and background using the name in the class
and the value as the property value that we need

Ex: .color--white { color: #FFFFFFF; } and
.bg-color--white { background-color: #FFFFFF; } */
.color--dark-purple {
  color: #A3227D;
}

.bg-color--dark-purple {
  background-color: #A3227D;
}

.color--arsenic {
  color: #3F4444;
}

.bg-color--arsenic {
  background-color: #3F4444;
}

.color--midnight-blue {
  color: #06408B;
}

.bg-color--midnight-blue {
  background-color: #06408B;
}

.color--bright-yellow {
  color: #F7A71C;
}

.bg-color--bright-yellow {
  background-color: #F7A71C;
}

.color--teal-green {
  color: #008578;
}

.bg-color--teal-green {
  background-color: #008578;
}

.color--teal-green-2 {
  color: #00867B;
}

.bg-color--teal-green-2 {
  background-color: #00867B;
}

.color--dark-blue {
  color: #1F4487;
}

.bg-color--dark-blue {
  background-color: #1F4487;
}

.color--veronese-green {
  color: #009584;
}

.bg-color--veronese-green {
  background-color: #009584;
}

.color--black {
  color: #000;
}

.bg-color--black {
  background-color: #000;
}

.color--black-50 {
  color: rgba(0, 0, 0, 0.5);
}

.bg-color--black-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.color--white {
  color: #FFF;
}

.bg-color--white {
  background-color: #FFF;
}

.color--white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.bg-color--white-50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.color--white-fefefe {
  color: #FEFEFE;
}

.bg-color--white-fefefe {
  background-color: #FEFEFE;
}

.color--brandeis-blues {
  color: #06F;
}

.bg-color--brandeis-blues {
  background-color: #06F;
}

.color--pine-green {
  color: #00786C;
}

.bg-color--pine-green {
  background-color: #00786C;
}

.color--old-lace {
  color: #FEF6E7;
}

.bg-color--old-lace {
  background-color: #FEF6E7;
}

.color--light-silver {
  color: #D8D8D8;
}

.bg-color--light-silver {
  background-color: #D8D8D8;
}

.color--milk {
  color: #FFFCF6;
}

.bg-color--milk {
  background-color: #FFFCF6;
}

.color--french-plum {
  color: #7F125F;
}

.bg-color--french-plum {
  background-color: #7F125F;
}

.color--medium-blue {
  color: #0B5CA7;
}

.bg-color--medium-blue {
  background-color: #0B5CA7;
}

.color--quick-silver {
  color: #A1A1A1;
}

.bg-color--quick-silver {
  background-color: #A1A1A1;
}

.color--bright-gray {
  color: #E6ECF3;
}

.bg-color--bright-gray {
  background-color: #E6ECF3;
}

.color--dark-blue-gray {
  color: #666CA3;
}

.bg-color--dark-blue-gray {
  background-color: #666CA3;
}

.color--waterloo {
  color: #83869A;
}

.bg-color--waterloo {
  background-color: #83869A;
}

.color--violet-red {
  color: #F74780;
}

.bg-color--violet-red {
  background-color: #F74780;
}

.color--pink {
  color: #FFA7C3;
}

.bg-color--pink {
  background-color: #FFA7C3;
}

.color--red {
  color: #F00;
}

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

.color--gray-alto {
  color: #D2D2D2;
}

.bg-color--gray-alto {
  background-color: #D2D2D2;
}

.body-callout {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.image-detail-callout {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.image-caption {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  line-height: 14px;
}

.footnotes {
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
}

.gradient-card {
  -o-border-image: linear-gradient(270deg, #a3227d 0%, #f7a71c 50.32%, rgb(163, 34, 125) 99.05%);
     border-image: linear-gradient(270deg, #a3227d 0%, #f7a71c 50.32%, rgb(163, 34, 125) 99.05%);
}

.border-bottom {
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.border-line-bottom {
  width: 50%;
  border-bottom: 1px solid #008578;
}

.icon-shadow {
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5)); /* Standard syntax */
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5)); /* WebKit compatibility */
}

.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.natural-height {
  align-items: flex-start;
}

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

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

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

.first {
  order: -1;
}

.last {
  order: 1;
}

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

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

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

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 1rem;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 1rem;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 1rem;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 1rem;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 1rem;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 1rem;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 1rem;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
  padding: 1rem;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 1rem;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 1rem;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

.row.center-xs {
  justify-content: center;
}

.row.end-xs {
  justify-content: flex-end;
}

.row.top-xs {
  align-items: flex-start;
}

.row.middle-xs {
  align-items: center;
}

.row.bottom-xs {
  align-items: flex-end;
}

.row.around-xs {
  justify-content: space-around;
}

.row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 41rem) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 65rem) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 91rem) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 121rem) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.row.show {
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block !important;
  }
  .row.show-xs-only {
    display: flex !important;
  }
  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block !important;
  }
  .row.show-sm {
    display: flex !important;
  }
  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
  .show-sm-only {
    display: block !important;
  }
  .row.show-sm-only {
    display: flex !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) {
  .show-md {
    display: block !important;
  }
  .row.show-md {
    display: flex !important;
  }
  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
  .show-md-only {
    display: block !important;
  }
  .row.show-md-only {
    display: flex !important;
  }
  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block !important;
  }
  .row.show-lg {
    display: flex !important;
  }
  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block !important;
  }
  .row.show-lg-only {
    display: flex !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block !important;
  }
  .row.show-xl {
    display: flex !important;
  }
  .hide-xl {
    display: none !important;
  }
}
:root {
  --button-text-color: #FFF;
  --button-background-color: #A3227D;
  --button-border-color: transparent;
  --button-hover-text-color: #FFF;
  --button-hover-background-color: linear-gradient(180deg, #A3227D 0%, #780F5A 100%);
  --button-hover-border-color: transparent;
  --button-active-text-color: #FFF;
  --button-active-background-color: #7F125F;
  --button-active-border-color: transparent;
  --button-disabled-text-color: #FFF;
  --button-disabled-background-color: #A1A1A1;
  --button-disabled-border-color: transparent;
}

.button {
  transition: all, 0.4s, ease-in-out 1s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-self: stretch;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 42.5px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: var(--button-text-color);
  text-decoration: none;
  text-transform: uppercase;
  background: var(--button-background-color);
  border: 1px solid var(--button-border-color);
  border-radius: 18px;
  transition: background 0s;
}
.button:hover {
  color: var(--button-hover-text-color);
  background: var(--button-hover-background-color);
  border-color: var(--button-hover-border-color);
}
.button:active {
  color: var(--button-active-text-color);
  background: var(--button-active-background-color);
  border-color: var(--button-active-border-color);
}
.button.disabled {
  cursor: not-allowed;
  color: var(--button-disabled-text-color);
  background: var(--button-disabled-background-color);
  border-color: var(--button-disabled-border-color);
}
.button--secondary {
  --button-text-color: #FFF;
  --button-background-color: #06408B;
  --button-border-color: transparent;
  --button-hover-text-color: #FFF;
  --button-hover-background-color: linear-gradient(180deg, #0E72BD 0%, #06408B 100%);
  --button-hover-border-color: transparent;
  --button-active-text-color: #FFF;
  --button-active-background-color: #0B5CA7;
  --button-active-border-color: transparent;
}
.button--tertiary {
  --button-text-color: #06408B;
  --button-background-color: #FFF;
  --button-border-color: #F7A71C;
  --button-hover-background-color: #A3227D;
  --button-hover-text-color: #FFF;
  --button-hover-border-color: transparent;
  --button-active-background-color: #FFFCF6;
  --button-active-text-color: #06408B;
  --button-active-border-color: #F7A71C;
  --button-disabled-text-color: #A1A1A1;
  --button-disabled-background-color: #FFF;
  --button-disabled-border-color: #A1A1A1;
  text-transform: none;
}

:root {
  --topnav-space-between: 22px;
  --topnav-pseudo-element-before-item-left: calc(((var(--topnav-space-between) / 2) + 4px) * -1);
}

.site__header {
  /* Styles for Header Main Container */
  position: sticky;
  z-index: 3;
  top: 0;
  width: 100%;
  background-color: #FFF;
}
@media screen and (max-width: 1440px) {
  .site__header .wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 1441px) {
  .site__header .wrapper {
    max-width: 100%;
  }
}
.site__header .header__inner {
  /* Styles for Header Content Container */
  width: 100%;
}
@media screen and (min-width: 1150px) {
  .site__header .header__inner {
    position: relative;
    display: grid;
    grid-template-areas: "logo topnav" "logo mainnav";
    grid-template-columns: minmax(0, 222px) minmax(0, 1113px);
    align-items: center;
    justify-content: space-between;
    padding: 0 0 6px 31px;
  }
}
@media screen and (min-width: 1300px) {
  .site__header .header__inner {
    padding-left: 61px;
  }
}
.site__header .header__top {
  /* Styles for Header Top Mobile Content & Logo Container */
  position: relative;
  display: flex;
  grid-area: logo;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px 16px 16px;
}
.site__header .header__top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(270deg, #A3227D 2.41%, #F7A71C 99.05%);
}
@media screen and (min-width: 1150px) {
  .site__header .header__top::after {
    display: none;
  }
}
@media screen and (min-width: 1150px) {
  .site__header .header__top {
    display: inline-block;
    width: 90%;
    height: auto;
    padding: 0;
  }
}
.site__header .header__button {
  /* Styles for Header Buttons */
  width: 40px;
  height: 40px;
  color: black;
  background-color: transparent;
}
.site__header .header__toggle {
  --button-active-background-color: transparent;
  --button-hover-background-color: transparent;
  position: relative;
  align-self: center;
  /* Styles for Header Mobile Toggle */
  width: 41px;
  height: 27px;
  padding: 0;
  line-height: 1;
  border-bottom: 3px solid #A3227D;
  border-radius: 2px;
}
.site__header .header__toggle::before, .site__header .header__toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 41px;
  height: 3px;
  background-color: #A3227D;
  border-radius: 50px;
  transition: transform 0.3s linear;
}
.site__header .header__toggle::after {
  top: 0;
  bottom: 0;
  margin-top: 11.65px;
  margin-bottom: auto;
}
.site__header .header__toggle--opened {
  border-bottom-width: 0;
}
.site__header .header__toggle--opened::before {
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
  margin-top: auto;
  margin-bottom: auto;
}
.site__header .header__toggle--opened::after {
  transform: rotate(-45deg);
}
@media screen and (min-width: 1150px) {
  .site__header .header__toggle {
    display: none;
  }
}
.site__header .header__logo .logo__link {
  /* Styles for link HTML Tag with Logo */
}
.site__header .header__logo .logo__image {
  /* Styles for Logo Image */
  width: 156px;
  max-height: 62px;
}
.site__header .header__logo .logo__image-container {
  /* Styles for Logo Image Container */
}
@media screen and (min-width: 1150px) {
  .site__header .header__logo .logo__image {
    width: auto;
    max-width: 190px;
    max-height: 86px;
  }
}
@media screen and (min-width: 1400px) {
  .site__header .header__logo .logo__image {
    max-width: 221px;
  }
}
.site__header .header__icon {
  /* Styles for Icons in Header */
  position: relative;
  display: inline-block;
}
.site__header .header__icon::after, .site__header .header__icon::before {
  position: absolute;
  background-color: black;
  transition: all 0.3s linear;
}
.site__header .header__icon.icon__toggler {
  /* Styles for icon with this class */
  border-bottom-width: 0;
}
.site__header .header__icon.icon__toggler::before {
  top: 8px;
  transform: rotate(45deg);
}
.site__header .header__icon.icon__toggler::after {
  transform: rotate(-45deg);
}
.site__header .header__icon.icon__arrow {
  width: 20px;
  height: 11px;
}
.site__header .header__icon.icon__arrow::before, .site__header .header__icon.icon__arrow::after {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  border-radius: 5px;
}
.site__header .header__icon.icon__arrow--down::before {
  top: 0;
  left: 6px;
  transform: rotate(140deg);
}
.site__header .header__icon.icon__arrow--down::after {
  top: 0;
  left: 12px;
  transform: rotate(-140deg);
}
.site__header .header__icon.icon__arrow--up::before {
  top: 0;
  left: 6px;
  transform: rotate(45deg);
}
.site__header .header__icon.icon__arrow--up::after {
  top: 0;
  left: 12px;
  transform: rotate(-45deg);
}
.site__header .top_nav {
  gap: var(--topnav-space-between);
  display: flex;
  grid-area: topnav;
  justify-content: flex-end;
  padding: 9px 20px;
  color: #FFF;
  background-color: #A3227D;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .site__header .top_nav > * {
    margin: calc(var(--topnav-space-between) / 2);
  }
}
.site__header .top_nav__link {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #FFF;
}
.site__header .top_nav__item {
  position: relative;
}
.site__header .top_nav__item:not(:first-child)::before {
  content: "/";
  position: absolute;
  top: -5px;
  left: var(--topnav-pseudo-element-before-item-left);
  width: 4px;
  font-size: 22px;
  font-weight: bold;
  color: #F7A71C;
}
.site__header .top_nav__item.top_nav--mobile-not-before::before {
  display: none;
}
@media screen and (min-width: 1150px) {
  .site__header .top_nav__item.top_nav--mobile-not-before::before {
    display: block;
  }
}
.site__header .top_nav__item.top_nav--desktop {
  display: none;
}
@media screen and (min-width: 1150px) {
  .site__header .top_nav__item.top_nav--desktop {
    display: flex;
  }
}
@media screen and (min-width: 1150px) {
  .site__header .top_nav {
    --topnav-space-between: calc((100% - 652px) / 6);
    --topnav-pseudo-element-before-item-left: calc(var(--topnav-space-between) / 5);
    position: relative;
    max-width: 1113px;
    padding-top: 16px;
    padding-right: 51px;
    padding-bottom: 16px;
  }
  .site__header .top_nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    transform: skew(-15deg);
    display: block;
    width: 26px;
    height: calc(100% + 1px);
    background-color: #FFF;
  }
}
@media screen and (min-width: 1200px) {
  .site__header .top_nav {
    --topnav-space-between: calc((100% - 626.73px) / 6);
    --topnav-pseudo-element-before-item-left: calc((var(--topnav-space-between) / 3) + 4px);
  }
}
@media screen and (min-width: 1300px) {
  .site__header .top_nav {
    --topnav-space-between: calc((100% - 620px) / 6);
    --topnav-pseudo-element-before-item-left: calc((var(--topnav-space-between) / 2) + 4px);
  }
}
@media screen and (min-width: 1150px) {
  .site__header {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  }
}
@media screen and (min-width: 1150px) {
  .site__header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(270deg, #A3227D 0%, #F7A71C 50.32%, rgb(163, 34, 125) 99.05%);
  }
}

:root {
  --height-submenu-animation: 200px;
}

.site__navigation {
  /* Styles for Main Nav Container */
  position: absolute;
  left: 0;
  overflow: hidden;
  grid-area: mainnav;
  width: 100vw;
  padding: 0;
  background-color: white;
}
.site__navigation--hidden {
  height: 0;
}
.site__navigation--hiding {
  animation: hide-navigation 0.35s;
}
.site__navigation--show {
  overflow-y: scroll;
  box-sizing: border-box;
  height: 100dvh;
  padding-bottom: 150px;
  animation: show-navigation 0.35s;
}
@media screen and (min-width: 1150px) {
  .site__navigation {
    position: relative;
    left: unset;
    overflow: unset;
    display: inline-block;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    background-color: transparent;
  }
}

.main__navigation {
  /* Styles for List in Main Nav */
}

.nav__menu {
  /* Styles for List in Main Nav */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav__menu::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #0E74BF 0%, #06408B 100%);
}
@media screen and (min-width: 1150px) {
  .nav__menu::before {
    display: none;
  }
}
.nav__menu__item {
  /* Styles for List Item in Main Nav */
  gap: 10px;
  z-index: 1;
  display: flex;
  row-gap: 0;
  align-items: center;
  width: 100%;
  background-color: transparent;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .nav__menu__item > * {
    margin: calc(10px / 2);
  }
}
.nav__menu__item .menu-item__link {
  /* Styles for Links in Main List */
  font-weight: 400;
}
.nav__menu__item .menu-item__link:not(.button) {
  width: 100%;
  padding: 16px 0;
  padding-left: 26.5px;
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item .menu-item__link:not(.button) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    line-height: 18px;
    color: #06408B;
    text-align: center;
  }
}
@media screen and (min-width: 1150px) {
  .nav__menu__item .menu-item__link {
    font-weight: 700;
  }
  .nav__menu__item .menu-item__link strong {
    color: #A3227D;
  }
  .nav__menu__item .menu-item__link .menu-item__text {
    display: inline-block;
    max-width: 13ch;
  }
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.nav__menu__item--mobile {
    display: none;
  }
}
.nav__menu__item.top_nav--desktop {
  background-color: #FFF;
}
.nav__menu__item.top_nav--desktop .menu-item__link {
  font-weight: 700;
  color: #3F4444;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.top_nav--desktop {
    display: none;
  }
}
.nav__menu__item .header__button {
  /* Styles for buttons */
}
.nav__menu__item .header__button .header__icon {
  /* Styles for icons */
}
.nav__menu__item.has__subnav {
  /* Styles for Lists with Sub Menu */
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .nav__menu__item.has__subnav > * {
    margin: calc(0 / 2);
  }
}
.nav__menu__item.has__subnav .menu-item__link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-right: 26.5px;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.has__subnav .menu-item__link {
    justify-content: center;
    padding-right: 0;
  }
}
.nav__menu__item.has__subnav .header__button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.has__subnav {
    justify-content: center;
  }
}
.nav__menu__item.nav__menu__item--stay-connected {
  background-color: #FFF;
}
.nav__menu__item.nav__menu__item--stay-connected .menu-item__link:not(.button) {
  font-weight: 700;
  color: #3F4444;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.nav__menu__item--stay-connected {
    padding-right: 47px;
    padding-left: 26px;
    background-color: transparent;
  }
  .nav__menu__item.nav__menu__item--stay-connected .menu-item__link {
    align-self: center;
    height: -moz-fit-content;
    height: fit-content;
    padding: 12.5px 14.74px 10.5px 15.74px;
    line-height: 18px;
    letter-spacing: 0;
  }
}
.nav__menu__item.nav__menu__item--spacing {
  padding-bottom: 8px;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.nav__menu__item--spacing {
    padding: 0;
  }
}
.nav__menu__item .header__toggle-submenu {
  /* Styles for Sub Menu Toggler */
  --button-hover-background-color: transparent;
  --button-active-background-color: transparent;
  --button-background-color: transparent;
  align-self: center;
  width: 18.14px;
  height: 10.81px;
}
.nav__menu__item .header__toggle-submenu .header__icon::after, .nav__menu__item .header__toggle-submenu .header__icon::before {
  width: 3px;
  height: 11px;
  background-color: #FFF;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item .header__toggle-submenu .header__icon::after, .nav__menu__item .header__toggle-submenu .header__icon::before {
    width: 2px;
    background-color: #F7A71C;
  }
}
@media screen and (min-width: 1150px) {
  .nav__menu__item {
    gap: 0;
    position: relative;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
    height: 75px;
    padding: 0;
    border: none;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__menu__item > * {
      margin: calc(0 / 2);
    }
  }
  .nav__menu__item.nav__menu__item--stay-connected {
    justify-content: flex-end;
  }
  .nav__menu__item.nav__menu__item--stay-connected .menu-item__text {
    display: inline;
    max-width: unset;
  }
  .nav__menu__item:not(.nav__menu__item--stay-connected) {
    max-width: 195px;
  }
  .nav__menu__item:not(.nav__menu__item--stay-connected):hover::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transform: skew(-15deg);
    display: block;
    width: 100%;
    height: 100%;
    background-color: #06408B;
  }
  .nav__menu__item:not(.nav__menu__item--stay-connected):hover .menu-item__link {
    color: #FFF;
  }
  .nav__menu__item:not(.nav__menu__item--stay-connected):hover .menu-item__link strong {
    color: #FFF;
  }
  .nav__menu__item.nav__menu__item--active:not(.nav__menu__item--stay-connected)::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transform: skew(-15deg);
    display: block;
    width: 100%;
    height: 100%;
    background-color: #06408B;
  }
  .nav__menu__item.nav__menu__item--active:not(.nav__menu__item--stay-connected) .menu-item__link .menu-item__text {
    color: #FFF;
  }
  .nav__menu__item.nav__menu__item--active:not(.nav__menu__item--stay-connected) .menu-item__link .menu-item__text strong {
    color: #FFF;
  }
}
@media screen and (min-width: 1150px) {
  .nav__menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.nav__subnav {
  /* Styles for List of Sub Menu */
  overflow: hidden;
  width: 100%;
  height: 0;
  background-color: transparent;
}
.nav__subnav--show {
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid transparent;
  animation: show-submenu 0.35s;
}
.nav__subnav--hiding {
  border: 1px solid rgba(0, 0, 0, 0);
  animation: hide-submenu 0.35s;
}
@media screen and (min-width: 1150px) {
  .nav__subnav--horizontal {
    display: flex;
  }
}
@media screen and (min-width: 1150px) {
  .nav__subnav--vertical {
    display: flex;
    flex-direction: column;
  }
}
.nav__subnav .subnav__item {
  /* Styles for List Item of Sub Menu */
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 26.5px;
  list-style: none;
}
.nav__subnav .subnav__item .subnav-item__link {
  /* Styles for Links in Sub Menu */
  padding-left: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #FFF;
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item .subnav-item__link {
    width: 100%;
    padding: 17px 42px;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    color: #3F4444;
  }
  .nav__subnav .subnav__item .subnav-item__link:hover {
    background-color: #E6ECF3;
  }
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item {
    padding: 0;
  }
  .nav__subnav .subnav__item:first-child {
    position: relative;
  }
  .nav__subnav .subnav__item:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #E6ECF3;
  }
  .nav__subnav .subnav__item.subnav__item--active .subnav-item__link {
    background-color: #E6ECF3;
  }
}
@media screen and (min-width: 1150px) {
  .nav__subnav {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 10px;
    width: -moz-max-content;
    width: max-content;
    background-color: #FFF;
  }
  .nav__subnav--show {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    border: 2px solid #06408B;
  }
  .nav__subnav--hiding {
    padding: 0;
  }
}

@keyframes show-submenu {
  0% {
    height: 0;
  }
  100% {
    height: var(--height-submenu-animation);
  }
}
@keyframes hide-submenu {
  0% {
    height: var(--height-submenu-animation);
  }
  100% {
    height: 0;
  }
}
@keyframes show-navigation {
  0% {
    height: 0;
  }
  100% {
    height: 100dvh;
  }
}
@keyframes hide-navigation {
  0% {
    height: 100dvh;
  }
  100% {
    height: 0;
  }
}
:root {
  --hero-bg: rgb(213 213 213);
  --hero-wrapper-margin: 2rem;
  --hero-max-width-content-wrapper: calc(100% - var(--hero-wrapper-margin));
  --hero-min-height: 400;
  --hero-max-height: 750;
  --hero-min-screen-size: 320;
  --hero-max-screen-size: 1440;
}
@media screen and (min-width: 1024px) {
  :root {
    --hero-wrapper-margin: 3rem;
  }
}

.hero {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: var(--hero-bg);
}
.hero__full-height {
  height: 100vh;
}
.hero .hero__wrapper {
  display: flex;
  flex-direction: column;
}
.hero .hero__wrapper .hero__content-container {
  order: 2;
}
.hero .hero__wrapper .hero__content-container .hero__content-wrapper {
  width: 100%;
  max-width: var(--hero-max-width-content-wrapper);
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}
.hero .hero__wrapper .hero__image-container {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .hero .hero__wrapper {
    flex-direction: row;
  }
  .hero .hero__wrapper .hero__content-container {
    order: initial;
  }
  .hero .hero__wrapper .hero__content-container .hero__content-wrapper {
    max-width: calc(var(--hero-max-width-content-wrapper) + (100% - var(--hero-max-width-content-wrapper)) / 2);
    margin-right: 0;
  }
}
.hero .hero__actions {
  display: flex;
  flex-direction: column;
}
.hero .hero__actions > *:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .hero .hero__actions {
    flex-direction: row;
  }
  .hero .hero__actions > *:not(:last-of-type) {
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
}
.hero__absolute-layout {
  position: relative;
}
.hero__absolute-layout .hero__wrapper {
  justify-content: center;
  height: calc(var(--hero-min-height) * 1px + (var(--hero-max-height) - var(--hero-min-height)) * (100vw - var(--hero-min-screen-size) * 1px) / (var(--hero-max-screen-size) - var(--hero-min-screen-size)));
  max-height: calc(var(--hero-max-height) * 1px);
}
.hero__absolute-layout .hero__wrapper .hero__content-container {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .hero__absolute-layout .hero__wrapper .hero__content-container .hero__content-wrapper {
    max-width: var(--hero-max-width-content-wrapper);
    margin-right: auto;
  }
}
@media screen and (min-width: 1024px) {
  .hero__absolute-layout .hero__wrapper {
    align-items: center;
    justify-content: flex-start;
  }
}
.hero__absolute-layout .hero__image-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__absolute-layout .hero__image-container picture {
  overflow: hidden;
  height: 100%;
}
.hero__absolute-layout .hero__image-container picture img {
  width: auto;
  max-width: initial;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.internal-nav {
  --internal-nav-top: 0px;
  top: var(--internal-nav-top);
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 0.625rem;
  background-color: #000;
}
.internal-nav__container {
  display: flex;
  justify-content: center;
}
.internal-nav__list {
  position: relative;
  display: flex;
  gap: 0.625rem;
  justify-content: flex-start;
  padding: 0.625rem;
}
.internal-nav__list-item {
  list-style-type: none;
}
.internal-nav__list-item-link {
  padding: 0.3125rem 0.625rem;
  color: #FFF;
}
.internal-nav__list-item--is-active {
  background-color: #FFF;
}
.internal-nav__list-item--is-active .internal-nav__list-item-link {
  color: #000;
}
.internal-nav[data-scroll-to-active=true] .internal-nav__list {
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}
.internal-nav[data-scroll-to-active=true] .internal-nav__list::-webkit-scrollbar {
  display: none;
}
.internal-nav.is--fixed {
  position: fixed;
  z-index: 5;
  top: var(--internal-nav-top);
  left: 0;
}

.isi {
  z-index: 2;
  background-color: #FFF;
  /* &.is-open {
    z-index: 10;
    top: 0;
    height: 100vh;

    .isi__grid-left,
    .isi__grid-right {
      overflow-y: scroll;
      max-height: 100vh;

      &::-webkit-scrollbar {
        width: 5px;
      }

      &::-webkit-scrollbar-track {
        border-radius: 20px;
        box-shadow: inset 0 0 8px rgb(0 0 0);
      }

      &::-webkit-scrollbar-thumb {
        background: rgb(255 255 255 / 50%);
        border-radius: 10px;
      }

      &::-webkit-scrollbar-thumb:hover {
        background: rgb(156 156 156);
      }
    }

    .isi__toggle {
      rotate: 180deg;
    }
  } */
}
.isi__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 655px) {
  .isi__row {
    grid-template-columns: auto;
  }
}
@media screen and (min-width: 1250px) {
  .isi__row {
    grid-template-columns: minmax(0, 610px) 1fr;
  }
}
.isi__header {
  background-color: #06408B;
}
.isi__header-inner {
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
}
@media screen and (max-width: 768px) {
  .isi__header-inner {
    margin-right: 20px;
    margin-left: 20px;
  }
}
.isi__header-heading {
  font-size: 17px;
  font-weight: 700;
  line-height: 40px;
  color: #FFF;
  text-transform: uppercase;
}
.isi.is-fixed {
  --height: 10rem;
  position: fixed;
  z-index: 2;
  top: calc(100% - var(--height));
  width: 100%;
  height: var(--height);
  transition: top 0.5s ease-in-out, height 0.5s ease-in-out;
}
.isi__content-head {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .isi__content-head br {
    display: none;
  }
}
.isi__content-subhead, .isi__content-subhead2 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #3F4444;
}
.isi__content-subhed {
  margin-bottom: 5px;
}
.isi__content-subhead2 {
  max-width: 55ch;
  margin-bottom: 10px;
}
@media screen and (min-width: 375px) {
  .isi__content-subhead2 {
    min-width: 33ch;
  }
}
@media screen and (min-width: 450px) {
  .isi__content-subhead2 {
    min-width: unset;
  }
}
.isi__content-body-copy, .isi__content-body-copy2 {
  max-width: 56.5ch;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #3F4444;
}
.isi__content-body-copy p,
.isi__content-body-copy strong,
.isi__content-body-copy span,
.isi__content-body-copy li,
.isi__content-body-copy a, .isi__content-body-copy2 p,
.isi__content-body-copy2 strong,
.isi__content-body-copy2 span,
.isi__content-body-copy2 li,
.isi__content-body-copy2 a {
  font-size: 18px;
}
.isi__content-body-copy strong, .isi__content-body-copy2 strong {
  font-weight: 700;
}
.isi__content-body-copy-box, .isi__content-body-copy2-box {
  padding: 5px 8px;
  font-size: 16px;
  border: 1px solid #000;
}
.isi__content-body-copy-box p,
.isi__content-body-copy-box strong,
.isi__content-body-copy-box span,
.isi__content-body-copy-box li,
.isi__content-body-copy-box a, .isi__content-body-copy2-box p,
.isi__content-body-copy2-box strong,
.isi__content-body-copy2-box span,
.isi__content-body-copy2-box li,
.isi__content-body-copy2-box a {
  font-size: 16px;
}
.isi__content-body-copy.isi__content-mb-5, .isi__content-body-copy2.isi__content-mb-5 {
  margin-bottom: 5px;
}
.isi__content-body-copy.isi__content-mb-10, .isi__content-body-copy2.isi__content-mb-10 {
  margin-bottom: 10px;
}
@media screen and (min-width: 375px) {
  .isi__content-body-copy {
    min-width: 33.9ch;
  }
}
@media screen and (min-width: 450px) {
  .isi__content-body-copy {
    min-width: unset;
  }
}
@media screen and (min-width: 375px) {
  .isi__content-body-copy2 {
    min-width: 33ch;
  }
}
@media screen and (min-width: 450px) {
  .isi__content-body-copy2 {
    min-width: unset;
  }
}
.isi__content-list {
  max-width: 67ch;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 1.2rem;
  color: #3F4444;
}
.isi__content-list li {
  padding-top: 5px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #3F4444;
  list-style-type: disc;
}
.isi__content-list li:first-child {
  padding-top: 0;
}
@media screen and (max-width: 655px) {
  .isi__content-list {
    max-width: 40ch;
  }
}
.isi__content-order-list {
  max-width: 64.5ch;
  padding-top: 0;
  padding-bottom: 15px;
  padding-left: 2rem;
  color: #3F4444;
}
.isi__content-order-list li {
  padding-top: 5px;
  font-size: 18px;
  line-height: 22px;
  list-style-type: decimal;
}
.isi__content-order-list li:first-child {
  padding-top: 0;
}
@media screen and (min-width: 375px) {
  .isi__content-order-list {
    min-width: 37.6ch;
  }
}
@media screen and (min-width: 450px) {
  .isi__content-order-list {
    min-width: unset;
  }
}
.isi__content-link {
  display: inline;
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (max-width: 41rem) {
  .isi__content .wrapper {
    max-width: 100%;
    margin: 0;
  }
}
.isi__mobile-tabs {
  width: 100%;
}
.isi__mobile-tabs ul.tabs[role=tablist] {
  overflow-y: hidden;
  height: 31px;
  padding: 0;
}
.isi__mobile-tabs [role=tablist] li {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #ededed;
}
.isi__mobile-tabs [role=tablist] li a {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  border: 0;
}
.isi__mobile-tabs #isi-tab1 {
  color: #A3227D;
}
.isi__mobile-tabs #isi-tab1[aria-selected] {
  color: #FFF;
  background-color: #A3227D;
}
.isi__mobile-tabs #isi-tab2 {
  color: #008578;
}
.isi__mobile-tabs #isi-tab2[aria-selected] {
  color: #FFF;
  background-color: #008578;
}
@media screen and (min-width: 41rem) {
  .isi__mobile-tabs {
    display: none;
  }
}
.isi__grid-left {
  padding-top: 0 !important;
  padding-right: 10px !important;
  padding-bottom: 1.5rem !important;
  padding-left: 0 !important;
}
.isi__grid-left .isi__content-head {
  color: #A3227D;
}
.isi__grid-left .isi__content-link {
  color: #A3227D;
}
.isi__grid-left .isi__content-last-note {
  color: #3F4444;
}
@media screen and (min-width: 1024px) {
  .isi__grid-left .isi__content-last-note {
    max-width: 59ch;
  }
}
@media screen and (max-width: 768px) {
  .isi__grid-left {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
@media only screen and (min-width: 1440px) {
  .isi__grid-left {
    padding-top: 0 !important;
    padding-right: 10px !important;
    padding-bottom: 3rem !important;
    padding-left: 0 !important;
  }
}
.isi__grid-right {
  padding-top: 0 !important;
  padding-right: 10px !important;
  padding-bottom: 1.5rem !important;
  padding-left: 30px !important;
}
.isi__grid-right .isi__content-head {
  color: #008578;
}
.isi__grid-right .isi__content-link {
  color: #008578;
}
.isi__grid-right .isi__content-subhead2 {
  max-width: 58ch;
}
@media screen and (min-width: 375px) {
  .isi__grid-right .isi__content-list {
    min-width: 39ch;
  }
}
@media screen and (min-width: 450px) {
  .isi__grid-right .isi__content-list {
    min-width: unset;
  }
}
.isi__grid-right .isi__content-order-list {
  max-width: 64ch;
}
.isi__grid-right .isi__content-body-copy {
  max-width: 60ch;
}
@media screen and (min-width: 375px) {
  .isi__grid-right .isi__content-body-copy {
    min-width: 34ch;
  }
}
@media screen and (min-width: 450px) {
  .isi__grid-right .isi__content-body-copy {
    min-width: unset;
  }
}
.isi__grid-right .isi__content-body-copy2 {
  max-width: 58.7ch;
}
@media screen and (min-width: 375px) {
  .isi__grid-right .isi__content-body-copy2 {
    min-width: 34ch;
  }
}
@media screen and (min-width: 450px) {
  .isi__grid-right .isi__content-body-copy2 {
    min-width: unset;
  }
}
.isi__grid-right .br-ultomiris-side-effects {
  display: none;
}
@media screen and (min-width: 375px) {
  .isi__grid-right .br-ultomiris-side-effects {
    display: inline;
  }
}
@media screen and (min-width: 394px) {
  .isi__grid-right .br-ultomiris-side-effects {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .isi__grid-right {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
@media only screen and (min-width: 1440px) {
  .isi__grid-right {
    padding-top: 0 !important;
    padding-right: 10px !important;
    padding-bottom: 3rem !important;
    padding-left: 30px !important;
  }
}
.isi__toggle {
  cursor: pointer;
}
.isi__toggle::after {
  content: url("/assets/images/isi-icon.png");
  display: block;
  width: 20px;
  height: 20px;
  transition: all 1s ease-in-out;
}
.isi .isi__toggle {
  display: block;
}
.isi.is-open-toggle .isi__toggle {
  rotate: 180deg;
}
.isi.is-open-toggle .isi__header-inner {
  cursor: auto;
}
.isi.is-open-toggle .isi__grid-left,
.isi.is-open-toggle .isi__grid-right {
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 100vh;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.isi.is-open-toggle .isi__grid-left::-webkit-scrollbar,
.isi.is-open-toggle .isi__grid-right::-webkit-scrollbar {
  width: 5px;
}
.isi.is-open-toggle .isi__grid-left::-webkit-scrollbar-track,
.isi.is-open-toggle .isi__grid-right::-webkit-scrollbar-track {
  border-radius: 20px;
  box-shadow: inset 0 0 8px rgb(0, 0, 0);
}
.isi.is-open-toggle .isi__grid-left::-webkit-scrollbar-thumb,
.isi.is-open-toggle .isi__grid-right::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.isi.is-open-toggle .isi__grid-left::-webkit-scrollbar-thumb:hover,
.isi.is-open-toggle .isi__grid-right::-webkit-scrollbar-thumb:hover {
  background: rgb(156, 156, 156);
}
@media screen and (min-width: 41rem) {
  .isi__grid-right[hidden], .isi__grid-left[hidden] {
    display: block !important;
  }
}
.isi #indication-section {
  scroll-margin-top: 8.4rem;
}
@media screen and (max-width: 768px) {
  .isi #indication-section {
    scroll-margin-top: 8.2rem;
  }
}
@media screen and (min-width: 1250px) {
  .isi .isi__header .wrapper {
    max-width: calc(1235px + (100vw - 1235px) / 4);
    margin-left: calc((100vw - 1235px) / 2);
  }
}
@media screen and (min-width: 1440px) {
  .isi .isi__header .wrapper {
    max-width: 1265px;
    margin-left: calc((100vw - 1235px) / 2);
  }
}
@media screen and (min-width: 1250px) {
  .isi .isi__content .wrapper {
    max-width: calc(1235px + (100vw - 1235px) / 2);
    margin-left: calc((100vw - 1235px) / 2);
  }
}
@media screen and (min-width: 1440px) {
  .isi .isi__content .wrapper {
    max-width: 1335px;
    margin-left: calc((100vw - 1235px) / 2);
  }
}

ul.tabs[role=tablist] {
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-y: scroll;
  display: flex;
  align-items: center;
  height: 3.125rem;
  margin: 0;
  padding: 0.3125rem 0.9375rem;
  background-color: #c1c1c1;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

[role=tablist] li {
  height: 2.5rem;
  margin-right: 1rem;
  list-style-type: none;
}
[role=tablist] li::marker {
  display: none;
}

[role=tablist] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.875rem;
  height: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.125rem;
  color: currentcolor;
  border: 2px solid currentcolor;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  [role=tablist] a {
    font-size: 1.25rem;
    line-height: 1.4375rem;
  }
}

[role=tablist] [aria-selected] {
  font-weight: 900;
  background-color: #FFF;
  border: 2px solid #FFF;
}

[role=tabpanel] {
  padding: 1rem;
}

/* stylelint-disable rule-empty-line-before */
input {
  width: 100%;
}
input[type=submit] {
  cursor: pointer;
}
input[type=checkbox], input[type=radio] {
  transform: translateY(-0.075em);
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: currentcolor;
  border: 1px solid #3F4444;
}
input[type=radio] {
  border-radius: 50%;
}
input[type=radio]::before {
  content: "";
  transform: scale(0);
  width: 0.65em;
  height: 0.65em;
  background-color: CanvasText;
  border-radius: 50%;
  box-shadow: inset 1em 1em currentcolor;
  transition: 120ms transform ease-in-out;
}
input[type=radio]:checked::before {
  transform: scale(1.5);
}
input[type=checkbox] {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #D2D2D2;
  border-radius: 0.25rem;
}
input[type=checkbox]:checked {
  -o-object-fit: cover;
     object-fit: cover;
  background: url("/assets/images/check-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  border-color: transparent;
}

.form__control {
  position: relative;
  display: block;
  margin-bottom: 12px;
  padding: 5px 1rem;
  transition: all 100ms ease-in-out;
  /* stylelint-disable-next-line no-descending-specificity */
}
.form__control .form__control-label,
.form__control .form__control-legend {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: #3F4444;
}
.form__control .form__control-legend {
  margin-bottom: 0.5rem;
  line-height: 18px;
}
.form__control .form__control-error {
  display: none;
  font-size: 1rem;
  color: #F00;
}
@media screen and (min-width: 1024px) {
  .form__control .form__control-error {
    font-size: 0.875rem;
  }
}
.form__control.field-required .form__control-label::after,
.form__control.field-required .form__control-legend::after {
  content: "*";
  display: inline-block;
  color: #3F4444;
}
.form__control .form__control-input {
  width: 100%;
  height: 40px;
  padding: 0.625rem 1rem;
  font-size: 16px;
  font-weight: 300;
  color: #3F4444;
  background-color: #FFF;
  outline: 1px solid #3F4444;
}
.form__control .form__control-input::-moz-placeholder {
  font-size: 16px;
  font-weight: 300;
  color: #3F4444;
}
.form__control .form__control-input::placeholder {
  font-size: 16px;
  font-weight: 300;
  color: #3F4444;
}
@media only screen and (min-width: 41rem) {
  .form__control .form__control-input::-moz-placeholder {
    font-size: 18px;
  }
  .form__control .form__control-input::placeholder {
    font-size: 18px;
  }
}
@media only screen and (min-width: 41rem) {
  .form__control .form__control-input {
    font-size: 18px;
  }
}
.form__control .form__control-select-wrapper {
  position: relative;
  height: 40px;
  font-size: 1.125rem;
  font-weight: 300;
  color: #3F4444;
  outline: 1px solid #3F4444;
}
.form__control .form__control-select-wrapper .form__control-select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
}
.form__control .form__control-select-wrapper .form__control-select:focus {
  border: none;
  outline: none;
}
.form__control .form__control-select-wrapper .form__control-select option,
.form__control .form__control-select-wrapper .form__control-select option:checked {
  font-size: 1.125rem;
  font-weight: 300;
  color: #3F4444;
}
.form__control .form__control-radio,
.form__control .form__control-checkbox {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.form__control .form__control-radio:not(:last-of-type),
.form__control .form__control-checkbox:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.form__control .form__control-radio input,
.form__control .form__control-checkbox input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  margin-right: 5px;
  border-radius: 6px;
}
@media only screen and (max-width: 41rem) {
  .form__control .form__control-radio,
  .form__control .form__control-checkbox {
    margin-top: 0;
  }
}
.form__control .form__control-checkbox {
  align-items: flex-start;
}
.form__control .form__control-checkbox .form__control-label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}
.form__control .form__control-checkbox .form__control-label::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .form__control .form__control-checkbox .form__control-label {
    max-width: 105ch;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1500px) {
  .form__control .form__control-checkbox .form__control-label {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .form__control .form__control-checkbox {
    padding-inline: 1rem;
  }
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-label {
  color: #F00;
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-input,
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-select-wrapper {
  outline-color: #F00;
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-error {
  display: block;
}
@media only screen and (max-width: 41rem) {
  .form__control {
    padding: 0;
  }
}

.accordion__item_content {
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
  max-height: 0;
  margin-right: 3rem;
  margin-bottom: 1.5rem;
  margin-left: 3rem;
  padding-top: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem;
  color: #000;
}
.accordion__item_content .link {
  position: relative;
  margin-top: 1rem;
  font-size: 16px;
  color: #A3227D;
  text-decoration: underline;
}
.accordion__item_content .list {
  padding-left: 1.2rem;
}
.accordion__item_content .list li {
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  list-style-type: disc;
}
.accordion__item_content .list li::marker {
  display: block;
  color: #F7A71C;
}
.accordion__item_content .list li sub {
  font-size: 11px;
}
.accordion__item_content .list li sup {
  position: relative;
  top: -6px;
  font-size: 11px;
}
.accordion__item_content .sublist {
  padding-top: 10px;
  padding-left: 1rem;
}
.accordion__item_content .sublist li {
  padding-left: 10px;
  list-style-type: "-";
}
.accordion__item_content .sublist li::marker {
  color: #F7A71C;
}
.accordion__item_content p {
  padding-bottom: 1rem;
  color: #000;
}
.accordion__item_content[role=tabpanel] {
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .accordion__item_content {
    margin-right: 3rem;
    margin-left: 1.5rem;
    padding-right: 2.7rem;
    padding-left: 0;
  }
}
.accordion__item_title {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
  padding-right: 2rem;
  padding-left: 1.5rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #A3227D;
  text-align: left;
}
.accordion__item_title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1.3313rem;
  height: 0.8087rem;
  margin-top: 0.25rem;
  background-image: url("/assets/images/accordions/icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .accordion__item_title {
    padding-right: 2.7rem;
    padding-left: 0;
  }
}
.accordion [aria-expanded=true] {
  background-color: #fff;
  border: 1px solid #A3227D;
  border-radius: 1.3rem;
}
.accordion [aria-expanded=true] .accordion__item_title::after {
  background-image: url("/assets/images/accordions/icon-open.png");
}
.accordion [aria-expanded=true] .accordion__item_content {
  max-height: 1000px;
  padding-right: 16px;
}
.accordion__item {
  transition: background-color 0.3s ease;
  margin-bottom: 0.5rem;
  color: #A3227D;
  background-color: transparent;
  transition-delay: 0.3s;
}
.accordion__item[aria-expanded=false] {
  color: #FFF;
  background-color: #A3227D;
  border-radius: 1.3rem;
}
.accordion__item[aria-expanded=false] .accordion__item_title {
  transition: color 0.3s ease;
  color: #FFF;
  transition-delay: 0.3s;
}
.accordion__item[aria-expanded=true] {
  background-color: transparent;
  transition: none;
}
.accordion__item_header {
  padding-top: 1rem;
  padding-right: 1.25rem;
  padding-bottom: 1rem;
}
.accordion__item.study .accordion__item {
  border-radius: 8px;
}
.accordion__item.study .accordion__item_content {
  transition: all 0.3s ease-in-out;
  position: relative;
  margin-right: 1rem;
  margin-bottom: 0;
  margin-left: 1rem;
}
.accordion__item.study .accordion__item_title {
  margin-right: 0;
}
.accordion__item.study .accordion__item_title::after {
  transition: rotate 0.3s ease-in-out;
  top: -7.8px;
  width: 32px;
  height: 32px;
  background-image: url("/assets/images/accordions/icon-expand.png");
}
.accordion__item.study[aria-expanded=false] {
  color: #A3227D;
  background-color: #FFF;
  border: 2px solid #eaeaea;
  border-radius: 8px;
}
.accordion__item.study[aria-expanded=false] .accordion__item_title {
  color: #A3227D;
}
.accordion__item.study[aria-expanded=false] .subhead {
  display: none;
}
.accordion__item.study[aria-expanded=true] {
  border: 2px solid #eaeaea !important;
  border-radius: 8px;
}
.accordion__item.study[aria-expanded=true] .accordion__item_title::after {
  rotate: 135deg;
  background-image: url("/assets/images/accordions/icon-expand.png");
}
.accordion__item.study[aria-expanded=true] .headers .head {
  display: none;
}
.accordion__item.study[aria-expanded=true] .subhead {
  display: block;
  padding-left: 1rem;
}
.accordion__item.study[aria-expanded=true] .accordion__item_content {
  margin-bottom: 1rem;
}

.accordion-group-toggle {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-decoration: underline;
}
.accordion-group-toggle::after {
  content: "Expand all";
}
.accordion-group-toggle--opened::after {
  content: "Collapse all";
}

.faqs-subtitle {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  color: #06408B;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .faqs-subtitle {
    text-align: left;
  }
}

.pinch-to-zoom {
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
  padding: 0.5rem 1rem;
}
.pinch-to-zoom .pinch-to-zoom__close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 40%;
  color: #000;
}

.wistia-viewer .wistia-viewer__inner .wistia-viewer__embed-container {
  position: relative;
}
.wistia-viewer .button-video[data-wistia-play-button] {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  max-height: -moz-max-content;
  max-height: max-content;
  padding: 0;
  font-size: 2rem;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=true] .play-icon {
  display: none;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=true] .pause-icon {
  display: initial;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=false] .play-icon {
  display: initial;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=false] .pause-icon {
  display: none;
}

.footer {
  position: relative;
  padding-top: 52px;
  padding-bottom: 27px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #FFF;
  background-color: #06408B;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(270deg, #A3227D 2.41%, #F7A71C 99.05%);
}
@media screen and (min-width: 1024px) {
  .footer::before {
    background-color: linear-gradient(270deg, #A3227D 0%, #F7A71C 50.32%, rgb(163, 34, 125) 99.05%);
  }
}
@media screen and (min-width: 768px) {
  .footer__grid {
    display: grid;
    grid-column-gap: 40px;
    grid-template-areas: "branding links text";
  }
}
@media screen and (min-width: 1250px) {
  .footer__grid {
    grid-column-gap: 125px;
  }
}
.footer__branding {
  grid-area: branding;
}
.footer__branding .footer__logo {
  width: 171.951px;
  height: 47px;
  margin-bottom: 38px;
}
@media screen and (min-width: 1024px) {
  .footer__branding .footer__logo {
    width: 190.244px;
    height: 52px;
  }
}
@media screen and (min-width: 768px) {
  .footer__branding {
    grid-row-end: 3;
    grid-row-start: 1;
  }
}
.footer__links {
  display: grid;
  grid-area: links;
}
@media screen and (min-width: 768px) {
  .footer__links {
    grid-column-end: 4;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-row-start: 1;
  }
}
.footer__nav_menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}
.footer__nav_menu_item_link {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 16px;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .footer__nav_menu_item_link::before {
    content: "/";
    position: absolute;
    left: -25px;
    font-size: 22px;
    color: #F7A71C;
  }
}
@media screen and (min-width: 1440px) {
  .footer__nav_menu_item_link::before {
    left: -28px;
  }
}
.footer__nav_menu_item_link.contact::before {
  content: "";
}
@media screen and (min-width: 768px) {
  .footer__nav_menu {
    flex-direction: row;
    gap: 45px;
    margin-bottom: 22px;
  }
}
@media screen and (min-width: 1440px) {
  .footer__nav_menu {
    gap: 50px;
  }
}
.footer__text {
  grid-area: text;
}
.footer__text .privacy_choices {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
  color: #FFF;
}
.footer__text .privacy_choices img {
  width: 32px;
}
.footer__text p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.footer__text .disclaimer {
  max-width: 1008px;
}
.footer__text .disclaimer,
.footer__text .copy {
  margin-bottom: 24px;
}
@media screen and (max-width: 375px) {
  .footer__text .disclaimer,
  .footer__text .copy {
    max-width: 37.25ch;
  }
}
.footer__text .date {
  display: block;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .footer__text {
    display: grid;
    grid-column-end: 4;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-row-start: 2;
  }
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.modal {
  position: relative;
}
.modal [data-modal-close] {
  cursor: pointer;
}
.modal .modal__header {
  position: relative;
}
.modal .modal__header .modal__close-button-wrapper {
  position: absolute;
  right: 0;
}
.modal [data-modal-header] {
  display: flex;
  justify-content: space-between;
}
.modal [data-modal-actions] {
  display: flex;
  justify-content: flex-end;
}

.modal.exit-modal {
  padding-right: 10px;
  padding-left: 10px;
  border-color: #F7A71C;
  border-style: solid;
  border-width: 0 2px 2px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.modal.exit-modal::before {
  content: " ";
  position: absolute;
  top: 0;
  left: -2px;
  width: 101%;
  height: 6px;
  background: linear-gradient(270deg, #a3227d 0% 0%, #f7a71c 50.8% 50.8%, #a3227d 100% 100%);
}
@media screen and (min-width: 41rem) {
  .modal.exit-modal::before {
    width: 100.5%;
  }
}
.modal.exit-modal .modal__content {
  display: grid;
  row-gap: 2rem;
  place-items: center;
}
.modal.exit-modal .modal__title {
  margin-top: 2rem;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  color: #06408B;
  text-align: center;
}
.modal.exit-modal .modal__text p {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}
@media screen and (min-width: 41rem) {
  .modal.exit-modal .modal__text p {
    max-width: 70ch;
  }
}
.modal.exit-modal .modal__buttons {
  display: grid;
  row-gap: 2rem;
  justify-items: center;
}
@media screen and (min-width: 41rem) {
  .modal.exit-modal .modal__buttons {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media screen and (min-width: 41rem) {
  .modal.exit-modal {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.connected__section {
  display: grid;
  grid-template-columns: 1fr minmax(0, 100%) 1fr;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1013px;
  height: auto;
  margin: 0 auto;
  padding: 10px 48px;
  background-color: #FFF;
  border-top: 3px solid #00867B;
  border-bottom: 3px solid #00867B;
}
.connected__image-container {
  width: 100px;
}
.connected__logo {
  width: 100px;
  height: 100px;
}
.connected__text {
  margin: 0 32px;
  margin-left: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #A3227D;
  text-align: left;
}

@media screen and (max-width: 1025px) {
  .connected__section {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 30px 0;
  }
  .connected__text {
    margin: 20px 32px;
    text-align: center;
  }
}
.banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #FFF;
}
.banner .gradient {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100px;
  background: linear-gradient(90deg, #06408B 0%, #0E74BF 63.84%);
}
.banner .gradient .title {
  max-width: 25ch;
  padding-top: 36px;
  padding-bottom: 32px;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  color: #FFF;
}
@media screen and (min-width: 1024px) {
  .banner .gradient .title {
    font-size: 42px;
  }
}
.banner .gradient.no-image {
  background: linear-gradient(90deg, #06408B 0%, #0E74BF 100%);
}
.banner .gradient.no-image .title {
  max-width: 35ch;
}
@media screen and (min-width: 768px) {
  .banner .gradient {
    min-height: 187px;
  }
}
@media screen and (min-width: 992px) {
  .banner picture {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 406px;
    height: 187px;
  }
}
.banner .disclaimer {
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  line-height: 18px;
  color: #3F4444;
  text-align: right;
}
@media screen and (min-width: 1600px) {
  .banner .disclaimer {
    max-width: calc(100% - 8.2813rem);
  }
}

.callout {
  overflow: hidden;
}
.callout .disclaimer {
  position: absolute;
  right: 2.5%;
  bottom: 3%;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  line-height: 18px;
  color: #FFF;
  text-align: right;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.callout-image__container {
  position: relative;
}
.callout__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 36px;
  padding-right: 37px;
  padding-bottom: 30px;
  padding-left: 38px;
  background-color: #FEF6E7;
}
.callout__content-title {
  line-height: 32px;
  color: #A3227D;
}
.callout__content-paragraph {
  color: #3F4444;
}
@media screen and (min-width: 1440px) {
  .callout__content {
    justify-content: flex-start;
    padding-left: 55px;
  }
}
.callout-image__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
@media screen and (min-width: 768px) {
  .callout {
    display: flex;
  }
  .callout-image__container {
    max-width: 50%;
  }
  .callout__content {
    max-width: 50%;
    border: 0;
  }
  .callout__content::before {
    content: "";
    position: absolute;
    left: -34%;
    width: 35%;
    height: 120%;
    background-color: #FEF6E7;
    -webkit-clip-path: polygon(100% 0, 49% 100%, 100% 100%);
            clip-path: polygon(100% 0, 49% 100%, 100% 100%);
    border: 0;
  }
  .callout .disclaimer {
    right: 20%;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (min-width: 1024px) {
  .callout .disclaimer {
    right: 17%;
  }
}

.card {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 23px;
  padding-right: 13px;
  padding-bottom: 36px;
  padding-left: 19px;
  background-color: #FFF;
  border: 2px solid #F7A71C;
  border-top: none;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: calc(100% + 4px);
  height: 5px;
  background: linear-gradient(270deg, #A3227D 0%, #F7A71C 50.32%, rgb(163, 34, 125) 99.05%);
}
.card__flex {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-bottom: 23px;
}
@media screen and (min-width: 375px) {
  .card__flex {
    gap: 24px;
  }
}
.card__image {
  width: 106px;
  height: 106px;
  border-radius: 50%;
}
.card__title {
  max-width: 13ch;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  color: #06408B;
}
.card__content {
  width: 100%;
}
.card sup {
  top: -0.5em;
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
}
.card__link {
  margin-right: auto;
  margin-left: auto;
  font-size: 14px;
  text-transform: none;
}
@media screen and (min-width: 375px) {
  .card__link {
    font-size: 16px;
  }
}

.video_callout {
  background-color: rgba(6, 64, 139, 0.1);
}
.video_callout__container {
  padding-top: 39px;
  padding-bottom: 39px;
}
.video_callout__container .video_callout__col {
  max-width: 570px;
  margin: auto;
}
.video_callout__container .video_callout__col.media-col {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .video_callout__container .video_callout__col.text-col {
    max-width: 605px;
  }
}
@media screen and (min-width: 1441px) {
  .video_callout__container .video_callout__col.text-col {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .video_callout__container {
    display: grid;
    grid-template-columns: 570px 1fr;
    gap: 59px;
  }
}
@media screen and (min-width: 1440px) {
  .video_callout__container {
    grid-template-columns: 570px 605px;
    justify-content: center;
  }
}
.video_callout__title {
  margin-top: 25px;
  margin-bottom: 26px;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 16px;
  color: #06408B;
  text-transform: capitalize;
}
.video_callout__text {
  max-width: 331px;
}
.video_callout__text p {
  font-size: 16px;
  line-height: 22px;
}
@media screen and (min-width: 376px) {
  .video_callout__text {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

@media screen and (min-width: 1024px) {
  .stay__connected_page .banner .gradient .title {
    line-height: 50px;
  }
}

.stay-connected-form {
  margin-top: 0;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 1000px) {
  .stay-connected-form-wrap {
    max-width: 1280px;
    padding-right: 4rem;
    padding-left: 5rem;
  }
}
@media only screen and (min-width: 1000px) {
  .stay-connected-form .form {
    padding-right: 2rem;
  }
}
.stay-connected-form .banner {
  margin-bottom: 0;
}
.stay-connected-form .indication {
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  color: #3F4444;
}
.stay-connected-form .indication-mark {
  font-size: 10px;
}
@media only screen and (min-width: 41rem) {
  .stay-connected-form .indication {
    max-width: 110ch;
    margin: 0;
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 18px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 460px) {
  .stay-connected-form .indication {
    max-width: 36ch;
  }
}
@media screen and (min-width: 1445px) {
  .stay-connected-form .indication {
    max-width: 100%;
  }
}
.stay-connected-form .form__group-label-indication {
  margin-top: 1rem;
  margin-bottom: 1.2rem;
  font-size: 14px;
  font-style: italic;
  color: #3F4444;
}
@media only screen and (max-width: 41rem) {
  .stay-connected-form .form__group-label-indication {
    max-width: 38ch;
  }
}
@media only screen and (min-width: 41rem) {
  .stay-connected-form .form__group-label-indication {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  .stay-connected-form .form__group-label-indication {
    font-size: 16px;
    line-height: 23px;
  }
}
.stay-connected-form .button {
  margin: auto;
}
@media only screen and (min-width: 41rem) {
  .stay-connected-form .button {
    margin-top: 1.5rem;
  }
}
.stay-connected-form .form__control-checkbox a {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: #06408B;
}
@media screen and (min-width: 768px) {
  .stay-connected-form .form__control-checkbox a {
    font-size: 17.5px;
    line-height: 22px;
  }
}
.stay-connected-form .form__control-checkbox .form__control-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.stay-connected-form .form__control-checkbox .form__control-label sup {
  top: 0;
  font-size: inherit;
}
@media only screen and (max-width: 460px) {
  .stay-connected-form .form__control-checkbox .form__control-label {
    max-width: 35ch;
  }
}
@media only screen and (min-width: 41rem) {
  .stay-connected-form .form__control-checkbox .form__control-label {
    display: flex;
    align-items: baseline;
    font-size: 17.5px;
    line-height: 28px;
  }
}
.stay-connected-form .form__control.field-confirmation {
  margin-bottom: 0;
  padding: 0;
}
.stay-connected-form .nice-select.open {
  z-index: 2;
  border: none;
  outline: none;
}
.stay-connected-form .nice-select.open .option.disabled {
  display: none;
}
.stay-connected-form .nice-select .current {
  font-size: 16px;
}
@media only screen and (min-width: 41rem) {
  .stay-connected-form .nice-select .current {
    font-size: 18px;
  }
}
.stay-connected-form .nice-select .nice-select-dropdown {
  top: -1px;
  left: -1px;
  width: 101%;
  margin: 0;
  border: 1px solid #43556a;
  border-radius: 0;
}
.stay-connected-form .nice-select .list {
  width: 100%;
  background-color: #D8D8D8;
}
.stay-connected-form .privacy-link {
  display: block;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 41rem) {
  .stay-connected-form .privacy-link {
    display: inline-block;
    margin: 0;
  }
}

.fancybox__backdrop {
  background: rgba(63, 68, 68, 0.95);
}

.modal.thank-you {
  border-color: #F7A71C;
  border-style: solid;
  border-width: 0 2px 2px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.modal.thank-you::before {
  content: " ";
  position: absolute;
  top: 0;
  left: -2px;
  width: 101%;
  height: 6px;
  background: linear-gradient(270deg, #a3227d 0% 0%, #f7a71c 50.8% 50.8%, #a3227d 100% 100%);
}
@media screen and (min-width: 41rem) {
  .modal.thank-you::before {
    width: 100.6%;
  }
}
.modal.thank-you .modal__content {
  display: grid;
  row-gap: 2rem;
  place-items: center;
}
.modal.thank-you .modal__content .title {
  margin-top: 1rem;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  color: #06408B;
  text-align: center;
}
.modal.thank-you .modal__content .text {
  max-width: 32ch;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #3F4444;
  text-align: center;
}
@media screen and (min-width: 656px) {
  .modal.thank-you .modal__content .text br {
    display: none;
  }
}
.modal.thank-you .modal__content .text sup {
  top: -0.5em;
  font-size: 10px;
}
@media only screen and (min-width: 41rem) {
  .modal.thank-you .modal__content .text {
    max-width: 66ch;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.modal.thank-you .modal__content .reference {
  font-size: 10px;
  color: #3F4444;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .modal.thank-you {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.top-gradient__banner_content {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  text-align: center;
  background-color: #A3227D;
}
.top-gradient__banner_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(270deg, #a3227d 0%, #f7a71c 50.32%, rgb(163, 34, 125) 99.05%);
}
@media screen and (min-width: 767px) {
  .top-gradient__banner_content {
    max-width: 80%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 97% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 97% 100%, 0% 100%);
  }
}
@media screen and (min-width: 1024px) {
  .top-gradient__banner_content {
    width: 90%;
    max-width: 1073px;
    padding-top: 31px;
    padding-right: 120px;
    padding-bottom: 31px;
    padding-left: 120px;
  }
}
.top-gradient__banner_text {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: #FFF;
}
.top-gradient__banner_text strong {
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .top-gradient__banner .wrapper {
    max-width: 100%;
    margin: 0;
  }
}

.navigation__cta_text {
  width: 345px;
  margin-top: 34px;
  margin-bottom: 21px;
  margin-left: auto;
  padding-right: 15px;
  font-size: 18px;
  font-weight: 700;
  font-style: bold;
  line-height: 22px;
  color: #06408B;
  text-align: right;
  letter-spacing: 0;
}
@media screen and (min-width: 400px) {
  .navigation__cta_text {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .navigation__cta_text {
    margin-top: 32px;
    padding-right: 104px;
  }
}
@media screen and (min-width: 1500px) {
  .navigation__cta_text {
    padding-right: 0;
  }
}
.navigation__cta_link {
  margin-bottom: 24px;
  background: linear-gradient(to right, #FFF 50%, #06408B 50%);
}
.navigation__cta_link .wrapper {
  background-color: #FFF;
}
.navigation__cta_link_inner {
  display: flex;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: -5px;
  margin-left: auto;
  padding-top: 17px;
  padding-right: 4rem;
  padding-bottom: 17px;
  padding-left: 2rem;
  text-align: right;
  background-color: #06408B;
  -webkit-clip-path: polygon(7% 0, 100% 0%, 100% 100%, 0 100%);
          clip-path: polygon(7% 0, 100% 0%, 100% 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .navigation__cta_link_inner {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media screen and (min-width: 1500px) {
  .navigation__cta_link_inner {
    padding-right: 0;
  }
}
.navigation__cta_link_text {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 22px;
  color: #FFF;
  text-decoration: underline;
  text-transform: uppercase;
}
.navigation__cta_link_image {
  width: 14px;
  height: 21px;
  margin-right: 15px;
}
@media screen and (min-width: 767px) {
  .navigation__cta_link {
    justify-content: center;
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 1441px) {
  .navigation__cta .wrapper {
    max-width: 100%;
    margin: 0;
  }
}

.cards {
  width: 100%;
  padding-top: 36px;
  padding-bottom: 36px;
  background-color: #FEF6E7;
}
.cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 36px;
}
@media screen and (min-width: 375px) {
  .cards__grid {
    grid-template-columns: 345px;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media screen and (min-width: 1440px) {
  .cards__grid {
    grid-template-columns: repeat(3, 392px);
    gap: 26.5px;
    max-width: 1235px;
    margin-right: auto;
    margin-left: auto;
  }
}
.cards .card {
  max-width: 392px;
}
@media screen and (min-width: 1024px) {
  .cards .card--support .card__title {
    max-width: 15ch;
  }
}
@media screen and (min-width: 1200px) {
  .cards .card__description {
    min-height: 95px;
  }
}
.cards .card:last-of-type__title {
  max-width: 16ch;
}
.cards .card__descripcion {
  width: 27ch;
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #3F4444;
}
@media screen and (min-width: 375px) {
  .cards .card__descripcion {
    width: 32.5ch;
  }
}
@media screen and (min-width: 1024px) {
  .cards .card__descripcion {
    min-height: 115px;
  }
}
@media screen and (min-width: 1440px) {
  .cards .card__descripcion {
    min-height: 95px;
  }
}
@media screen and (min-width: 1440px) {
  .cards .card__descripcion {
    width: 334px;
    margin-bottom: 24px;
  }
}

.footnotes-container {
  margin-bottom: 24px;
}
.footnotes-container .footnotes {
  position: relative;
  color: #3F4444;
}
.footnotes-container .footnotes sup {
  top: -4px;
  font-size: 6px;
  line-height: 12px;
}
.footnotes-container .footnotes--margin {
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .footnotes-container {
    margin-bottom: 38px;
  }
}

@media screen and (max-width: 1023px) {
  .wrapper--hero {
    max-width: 100%;
    margin: 0;
  }
}

.connected {
  margin-top: 36px;
  margin-bottom: 36px;
}
@media screen and (min-width: 1024px) {
  .connected {
    margin-top: 56px;
    margin-bottom: 38px;
  }
}

.home__hero .hero__paragraph {
  padding-left: 16px;
  color: #3F4444;
}
.home__hero .hero__paragraph .hero__sub_paragraph {
  position: relative;
  left: -16px;
  display: block;
  max-width: 30ch;
  margin-bottom: 10px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home__hero .hero__paragraph .hero__sub_paragraph {
    left: 0;
    margin-inline: initial;
    text-align: left;
  }
}
@media screen and (min-width: 1100px) {
  .home__hero .hero__paragraph .hero__sub_paragraph {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .home__hero .hero__paragraph {
    padding-left: 0;
  }
}
.home__hero .hero__head_content {
  position: relative;
}
.home__hero .hero__head_content .hero__paragraph {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-style: italic;
  line-height: 18px;
  letter-spacing: -0.01px;
}
@media screen and (min-width: 992px) {
  .home__hero .hero__head_content .hero__paragraph {
    font-size: 19px;
    line-height: 23px;
  }
}
@media screen and (min-width: 768px) {
  .home__hero .hero__head_content {
    grid-area: hero-head;
    padding-left: 16px;
  }
}
@media screen and (min-width: 1250px) {
  .home__hero .hero__head_content {
    padding-left: 0;
  }
}
.home__hero .hero__image_container {
  position: relative;
  z-index: -1;
}
.home__hero .hero__image_container .image-caption {
  position: absolute;
  right: 17px;
  bottom: 18px;
  font-weight: bold;
  font-style: italic;
  line-height: 18px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
}
@media screen and (min-width: 1024px) {
  .home__hero .hero__image_container .image-caption {
    right: 0;
  }
}
@media screen and (min-width: 1440px) {
  .home__hero .hero__image_container .image-caption {
    right: -35px;
  }
}
@media screen and (min-width: 768px) {
  .home__hero .hero__image_container {
    grid-area: hero-image;
  }
}
.home__hero .hero__body_content {
  padding-top: 47px;
  padding-bottom: 57px;
}
.home__hero .hero__body_content .hero__paragraph {
  max-width: 33ch;
}
.home__hero .hero__body_content .hero__paragraph:first-child {
  margin-bottom: 24px;
}
@media screen and (min-width: 500px) {
  .home__hero .hero__body_content .hero__paragraph:first-child br {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .home__hero .hero__body_content .hero__paragraph:first-child br {
    display: inline;
  }
}
.home__hero .hero__body_content .hero__paragraph:last-child {
  font-style: italic;
}
@media screen and (min-width: 500px) {
  .home__hero .hero__body_content .hero__paragraph {
    max-width: 100%;
    padding-right: 18px;
  }
}
@media screen and (min-width: 992px) {
  .home__hero .hero__body_content .hero__paragraph {
    max-width: 36ch;
    padding-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .home__hero .hero__body_content .hero__paragraph {
    max-width: 50ch;
  }
}
@media screen and (min-width: 768px) {
  .home__hero .hero__body_content {
    grid-area: hero-body;
    padding-left: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .home__hero .hero__body_content {
    padding-top: 43px;
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1250px) {
  .home__hero .hero__body_content {
    padding-left: 0;
  }
}
.home__hero .hero__superscript {
  font-size: 10px;
}
.home__hero .hero__banner {
  margin-bottom: 25px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 22px;
  font-weight: 900;
  line-height: 19px;
  text-align: center;
  background: linear-gradient(90deg, #06408B 0%, #0E74BF 63.84%);
}
@media screen and (min-width: 768px) {
  .home__hero .hero__banner {
    width: -moz-fit-content;
    width: fit-content;
    padding: 25px 20px;
    font-size: 30px;
    line-height: 25.5px;
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .home__hero .hero__banner {
    margin-bottom: 66px;
  }
}
@media screen and (min-width: 768px) {
  .home__hero .hero__image {
    height: 100%;
  }
  .home__hero .hero__image img {
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .home__hero .hero__image img {
    overflow: unset;
  }
}
.home__hero .hero__title {
  position: relative;
  bottom: -15px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 18px;
  font-size: 34px;
  font-weight: 900;
  line-height: 40px;
  letter-spacing: 1.03px;
}
.home__hero .hero__title::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  transform: skew(-15deg);
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #A3227D 0%, #F7A71C 50.32%, rgb(163, 34, 125) 99.05%);
}
.home__hero .hero__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 100%;
  background-color: #A3227D;
}
@media screen and (min-width: 768px) {
  .home__hero .hero__title::before {
    left: -16px;
    width: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .home__hero .hero__title::before {
    left: -100px;
    width: 115px;
  }
}
@media screen and (min-width: 1525px) {
  .home__hero .hero__title::before {
    left: calc((100vw - 1440px) * -1);
    width: calc(100vw - 1440px + 15px);
  }
}
.home__hero .hero__title_text {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 365px) {
  .home__hero .hero__title {
    font-size: 28px;
    line-height: 33px;
  }
}
@media screen and (min-width: 768px) {
  .home__hero .hero__title {
    bottom: unset;
    width: 110%;
    max-width: 800px;
    margin-top: 14px;
    padding-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .home__hero .hero__title {
    width: 100%;
    font-size: 54px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1242px) {
  .home__hero .hero__title {
    width: 120%;
    max-width: 825px;
    font-size: 73.5px;
    line-height: 86px;
  }
}
.home__hero .hero__subtitle {
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .home__hero .hero__subtitle {
    padding-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .home__hero .hero__subtitle {
    max-width: 25ch;
    font-size: 42px;
    line-height: 49px;
  }
}
@media screen and (min-width: 768px) {
  .home__hero .hero__grid {
    display: grid;
    grid-template-areas: "hero-head hero-image" "hero-body hero-image";
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .home__hero .hero__grid {
    grid-template-columns: 1fr minmax(0, 35%);
  }
}
@media screen and (min-width: 1242px) {
  .home__hero .hero__grid {
    grid-template-columns: 1fr minmax(0, 50%);
  }
}

.content-page {
  width: 100%;
  padding-bottom: 36px;
}
.content-page__title {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: #A3227D;
}
@media screen and (min-width: 375px) {
  .content-page__title {
    font-size: 28px;
  }
}
.content-page__wrapper {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #3F4444;
}
.content-page sup {
  top: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (min-width: 992px) {
  .content-page {
    padding-bottom: 56px;
  }
}

.info-card {
  width: 100%;
  max-width: 345px;
  margin-right: auto;
  margin-left: auto;
}
.info-card__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  min-height: 258px;
}
@media screen and (min-width: 990px) {
  .info-card__flex {
    align-items: center;
    justify-content: flex-start;
  }
}
.info-card__image {
  width: 104px;
  height: 104px;
  border-radius: 50%;
}
@media screen and (min-width: 990px) {
  .info-card__image {
    margin-bottom: 26px;
  }
}
@media screen and (min-width: 1100px) {
  .info-card__image {
    width: 138px;
    height: 138px;
  }
}
.info-card sup {
  top: -4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

/* 
.index {


} */
.about {
  color: red;
}

.site_links__list {
  margin-top: 56px;
  margin-bottom: 24px;
}
@media screen and (min-width: 630px) {
  .site_links__list {
    display: flex;
    justify-content: space-between;
    max-width: 764px;
  }
}
@media screen and (min-width: 1024px) {
  .site_links__list {
    margin-left: 61px;
  }
}
.site_links .custom-anchor {
  margin-left: 21.5px;
}
.site_links__item {
  width: auto;
  margin-bottom: 32px;
  list-style: none;
}
.site_links__item a {
  display: inline;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #A3227D;
  text-decoration: underline;
}
.site_links__item p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #3F4444;
}

.not_found {
  margin-top: 56px;
  margin-bottom: 56px;
}
.not_found__heading {
  margin-bottom: 26px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #06408B;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .not_found__heading {
    text-align: left;
  }
}
.not_found .button {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .not_found .button {
    margin: unset;
  }
}

.resources_faqs__heading {
  margin-bottom: 36px;
  color: #A3227D;
}
.resources_faqs__heading sup {
  top: -0.175em;
  font-size: 0.8em;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .resources_faqs__heading {
    margin-bottom: 24px;
  }
}
.resources_faqs .card__flex {
  margin-bottom: 30.88px;
}
@media screen and (min-width: 1024px) {
  .resources_faqs .card__flex {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 12px;
  }
}
.resources_faqs .card__image {
  height: -moz-min-content;
  height: min-content;
  border-radius: 0;
}
.resources_faqs .card__title {
  max-width: 14ch;
}
@media screen and (min-width: 1024px) {
  .resources_faqs .card__title {
    max-width: 19ch;
  }
}
@media screen and (min-width: 1058px) {
  .resources_faqs .card__title {
    max-width: 100%;
  }
}
.resources_faqs .card__descripcion {
  width: 100% !important;
}
@media screen and (min-width: 1024px) {
  .resources_faqs .card__descripcion {
    text-align: center;
  }
}
@media screen and (min-width: 1100px) {
  .resources_faqs .card__descripcion {
    width: 304px !important;
    margin: auto;
    margin-bottom: 28px;
  }
}
.resources_faqs .alt-link {
  margin-top: 20px;
  color: #ff00b4;
  text-align: center;
  text-decoration: underline;
}
.resources_faqs .alt-link:hover {
  cursor: pointer;
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .resources_faqs .card:first-child br {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .resources_faqs .modifier .card__descripcion {
    width: 204px !important;
  }
}

.resources-faqs-page .banner {
  margin-bottom: 2px;
}
@media screen and (min-width: 1024px) {
  .resources-faqs-page .banner {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1025px) {
  .resources-faqs-page .connected__text {
    margin: 20px 26px;
  }
}
.resources-faqs-page .modifier-img .card__image {
  width: 45%;
  height: 120px;
  margin-bottom: 16px;
}
@media screen and (min-width: 350px) {
  .resources-faqs-page .modifier-img .card__image {
    width: auto;
  }
}

.patient_video {
  padding-top: 60px;
}

.acc_faqs {
  padding-top: 60px;
}
.acc_faqs .accordion__item_content .list {
  padding-left: 15px;
}
.acc_faqs .accordion__item_content .list li {
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .acc_faqs .accordion__item_content .list li {
    max-width: 120ch;
  }
}
.acc_faqs .faqs-subtitle {
  margin-top: 72px;
}
.acc_faqs .faqs-subtitle.no-margin-top {
  margin-top: 0;
}
.acc_faqs .accordion__item_header {
  padding-right: 16px;
  padding-left: 16px;
}
@media screen and (min-width: 768px) {
  .acc_faqs .accordion__item_header {
    padding-right: 60px;
    padding-left: 60px;
  }
}
.acc_faqs .accordion__item_title {
  width: 100%;
  margin: 0;
}
.acc_faqs .accordion__item_title .head {
  max-width: 23ch;
}
@media screen and (min-width: 768px) {
  .acc_faqs .accordion__item_title {
    padding-left: 0;
  }
  .acc_faqs .accordion__item_title .head {
    max-width: unset;
  }
}
.acc_faqs .accordion__item[aria-expanded=false] {
  margin-bottom: -15px;
}
.acc_faqs .accordion [aria-expanded=true] .accordion__item_content {
  margin-inline: 0;
  padding-inline: 16px;
  /* @media screen and (min-width: 375px) {
    max-width: 30ch;
    max-height: 1000px;
    margin: auto;
    margin-bottom: 20px;
    margin-left: 13px;
  }

  @media screen and (min-width: 380px) {
    max-width: unset;
    margin-right: 3rem;
    margin-left: 1.5rem;
  } */
}
.acc_faqs .accordion [aria-expanded=true] .accordion__item_content .foot-note {
  margin-top: 37px;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 8px;
  font-size: 10px;
  line-height: 12px;
}
@media screen and (min-width: 1024px) {
  .acc_faqs .accordion [aria-expanded=true] .accordion__item_content .foot-note {
    margin-top: 27px;
  }
}
@media screen and (min-width: 768px) {
  .acc_faqs .accordion [aria-expanded=true] .accordion__item_content {
    max-width: 100%;
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .acc_faqs .accordion [aria-expanded=true].accordion__item--desktop-longer .accordion__item_content .list li {
    max-width: 126ch;
  }
}
@media screen and (min-width: 1024px) {
  .acc_faqs .accordion [aria-expanded=true].accordion__item--desktop-shorter .accordion__item_content .list li {
    max-width: 115ch;
  }
}
.acc_faqs .accordion [aria-expanded=true].accordion__item--mobile-longer ul .sublist {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top: 0;
}
.acc_faqs .accordion [aria-expanded=true].accordion__item--mobile-longer ul .sublist li {
  margin-bottom: 15px;
}
@media screen and (max-width: 400px) {
  .acc_faqs .accordion [aria-expanded=true].accordion__item--mobile-longer .accordion__item_content {
    padding-right: 12px;
  }
}
.acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content .show-only-desktop {
  display: none;
}
.acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content .col-xs-12 {
  padding-left: 0;
}
.acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content img {
  max-width: 500px;
}
@media screen and (max-width: 400px) {
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content .col-xs-12:first-child {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 1040px) {
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content {
    margin-right: 0;
  }
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content [class*=col-] {
    padding-bottom: 0;
  }
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content .col-md-7 {
    padding-left: 0;
  }
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content .col-md-4 {
    margin-left: 50px;
  }
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content .list li {
    max-width: 60ch;
  }
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content .sublist li {
    margin-bottom: 0;
    padding-left: 5px;
  }
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content .sublist li:first-child {
    max-width: 61ch;
  }
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content img {
    max-width: 300px;
  }
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content .show-only-desktop {
    display: block;
  }
  .acc_faqs .accordion [aria-expanded=true].accordion__item--has-image .accordion__item_content .show-only-mobile {
    display: none;
  }
}
.acc_faqs .accordion__disclaimer {
  margin-top: 15px;
  padding-bottom: 0;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}
.acc_faqs br {
  display: none;
}
.acc_faqs br.accordion__br_mobile {
  display: inline;
}
@media screen and (min-width: 400px) {
  .acc_faqs br.accordion__br_mobile {
    display: none;
  }
}
@media screen and (min-width: 340px) {
  .acc_faqs br.br--ff-score {
    display: inline;
  }
}
@media screen and (min-width: 400px) {
  .acc_faqs br.br--ff-score {
    display: none;
  }
}
.acc_faqs br.br--side-effects {
  display: inline;
}
@media screen and (min-width: 400px) {
  .acc_faqs br.br--side-effects {
    display: none;
  }
}
@media screen and (min-width: 350px) {
  .acc_faqs br.br--allergic-reactions {
    display: inline;
  }
}
@media screen and (min-width: 400px) {
  .acc_faqs br.br--allergic-reactions {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .acc_faqs br {
    display: block;
  }
}

.arrow__right {
  transform: rotate(90deg);
}

.arrow__down {
  transform: rotate(180deg);
}

.results {
  /* @media screen and (min-width: 1440px) {
    &__text{
      width: 65%;
    }
  } */
}
.results__index {
  width: 100%;
  padding-top: 36px;
  padding-bottom: 0;
  background-color: #FEF6E7;
}
@media screen and (min-width: 768px) {
  .results__index {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.results__title-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 1%;
}
.results__image-container {
  width: 80px;
}
.results__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.results__text {
  width: 100%;
  margin-top: 24px;
  margin-right: auto;
  margin-bottom: 36px;
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  color: #06408B;
}
.results__arrows {
  align-self: flex-start;
  width: 36px;
  height: 36px;
  box-shadow: none;
}
.results__card .card {
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 14px;
  padding-left: 14px;
}
.results__card .card .card__descripcion {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .results__card .card {
    padding-left: 36px;
  }
}
.results__title {
  max-width: 100%;
  font-size: 20px;
  font-weight: 500;
}
.results .card__flex {
  margin-top: 10px;
}
.results sup {
  font-size: 10px;
  font-weight: 400;
  line-height: 24px;
}
.results ul {
  width: 100%;
  max-width: 87%;
  margin-top: 20px;
  margin-left: 14px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .results ul {
    max-width: 85%;
  }
}
@media screen and (min-width: 1250px) {
  .results ul {
    max-width: 108ch;
  }
}
.results ul li {
  width: 111%;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #3F4444;
}
.results ul li strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #06408B;
}
.results ul li::marker {
  color: #F7A71C;
}
.results__benefit p {
  margin-right: 47px;
}
.results__facts {
  margin: 26px auto 36px 0;
  padding-left: 14px;
}
.results__facts ul {
  margin-left: 14px;
}
@media screen and (min-width: 400px) {
  .results__facts br {
    display: none;
  }
}
.results__facts--last {
  margin-top: 0;
  margin-bottom: 44px;
}
@media screen and (min-width: 768px) {
  .results__facts {
    margin-top: 37px;
    margin-bottom: 36px;
    padding-left: 36px;
  }
  .results__facts--last {
    margin-top: 0;
    margin-bottom: 36px;
  }
}
.results__banner-help {
  margin-top: 40px;
}
.results__banner-help .top-gradient__banner_text {
  line-height: 30px;
}
.results .top-gradient__banner_text {
  width: 88%;
  margin-top: 10px;
  margin-left: 5%;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .results ul li {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .results__title-icon {
    flex-direction: row;
    margin-bottom: 24px;
  }
  .results__text {
    max-width: 54ch;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 36px;
  }
  .results__card {
    width: 85%;
    max-width: 1119px;
  }
  .results__card .card {
    margin-left: 116px;
  }
  .results__facts {
    margin-left: 116px;
  }
  .results ul {
    margin-left: 65px;
  }
  .results ul li {
    width: 100%;
  }
  .results .card__flex {
    gap: 16px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .results .card__flex > * {
      margin: calc(16px / 2);
    }
  }
}

@media screen and (min-width: 1250px) {
  .results__card {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .callout__content-title {
    max-width: 514px;
  }
}

.clinical_studies__heading {
  margin-top: 45px;
  margin-bottom: 24px;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: #A3227D;
}
@media screen and (min-width: 768px) {
  .clinical_studies__heading {
    margin-top: 56px;
    margin-bottom: 1rem;
  }
}
.clinical_studies__blue {
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #06408B;
}
.clinical_studies__blue_heading {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #06408B;
}
.clinical_studies__blue_text {
  margin-bottom: 38px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #3F4444;
}
@media screen and (min-width: 768px) {
  .clinical_studies__blue_text {
    max-width: 1156px;
    margin-bottom: 28px;
  }
}
.clinical_studies__blue_text.modifier {
  margin-bottom: 26px;
}
.clinical_studies .card__descripcion {
  position: relative;
}
.clinical_studies .card__descripcion::after {
  content: " ";
  position: absolute;
  bottom: -20px;
  left: -10px;
  width: calc(100% + 20px);
  height: 1px;
  background-color: #008578;
}
@media screen and (min-width: 768px) {
  .clinical_studies .card__descripcion::after {
    display: none;
  }
}
.clinical_studies .card__hr {
  max-width: 127ch;
  margin-block: 20px;
  visibility: hidden;
  border-top-color: #008578;
}
@media screen and (min-width: 768px) {
  .clinical_studies .card__hr {
    visibility: visible;
  }
}

.cards.modifier {
  padding-top: 0;
  background-color: transparent;
}
.cards.modifier .cards__grid {
  display: block;
}
.cards.modifier .card {
  max-width: unset;
  padding-top: 29px;
  padding-right: 24px;
  padding-bottom: 23px;
  padding-left: 25px;
}
@media screen and (min-width: 1024px) {
  .cards.modifier .card {
    padding: 37px 38px;
  }
}
.cards.modifier .card__flex {
  display: block;
}
.cards.modifier .card__title {
  max-width: 100%;
  font-size: 20px;
}
.cards.modifier .card__descripcion {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .cards.modifier .card__descripcion {
    min-height: auto;
  }
}

.navigation__cta.last_section .navigation__cta_link {
  width: 194px;
}
@media screen and (min-width: 1024px) {
  .navigation__cta.last_section .navigation__cta_link {
    width: 290px;
  }
}
.navigation__cta.last_section .navigation__cta_text {
  margin-top: 57px;
  text-align: center;
}
@media screen and (min-width: 375px) {
  .navigation__cta.last_section .navigation__cta_text {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .navigation__cta.last_section .navigation__cta_text {
    margin-top: 36px;
  }
}

.br-footnote {
  display: none;
}
@media screen and (min-width: 375px) {
  .br-footnote {
    display: block;
  }
}
@media screen and (min-width: 419px) {
  .br-footnote {
    display: none;
  }
}

@media screen and (min-width: 363px) {
  .modifier-sup {
    margin-left: 3px;
  }
}
@media screen and (min-width: 419px) {
  .modifier-sup {
    margin-left: 0;
  }
}

.footnotes-container.results-modifier .footnotes {
  position: relative;
  padding-left: 3px;
}
.footnotes-container.results-modifier .footnotes sup {
  position: absolute;
  top: -2px;
  left: 0;
}
.footnotes-container.results-modifier .footnotes:first-child {
  margin-bottom: 0;
}
.footnotes-container.results-modifier .footnotes:last-child {
  margin-top: 24px;
  padding-left: 0;
}

.sup-d {
  top: -6px;
  font-size: 10px;
}

.voydeya-results .result-banner-sup {
  top: -0.12em;
  font-size: 85%;
}
@media screen and (min-width: 1024px) {
  .voydeya-results .result-banner-sup {
    top: -0.13em;
  }
}
@media only screen and (max-width: 600px) {
  .voydeya-results .studied-section .wrapper {
    max-width: calc(100% - 2rem);
  }
}
.voydeya-results .studied-section .row [class^=col-] {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.voydeya-results .studied-section .title {
  max-width: 63ch;
  margin-bottom: 2rem;
  color: #A3227D;
}
@media only screen and (max-width: 500px) {
  .voydeya-results .studied-section .title {
    max-width: 17ch;
  }
}
.voydeya-results .studied-section .subtitle {
  margin-bottom: 1.5rem;
  color: #06408B;
}
@media only screen and (max-width: 500px) {
  .voydeya-results .studied-section .subtitle {
    max-width: 17ch;
    margin-bottom: 2rem;
  }
}
.voydeya-results .studied-section .paragraph {
  margin-right: 2rem;
  margin-bottom: 24px;
  color: #3F4444;
}
@media only screen and (max-width: 500px) {
  .voydeya-results .studied-section .paragraph {
    max-width: 33ch;
    margin-right: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .voydeya-results .studied-section .paragraph br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .voydeya-results .studied-section .paragraph {
    max-width: 54ch;
    margin-bottom: 2rem;
  }
}
.voydeya-results .studied-section .heading {
  font-size: 16px;
  font-weight: 500;
  color: #A3227D;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .voydeya-results .studied-section .heading {
    margin-left: 10%;
    padding-bottom: 5px;
    font-size: 18px;
    text-align: left;
  }
}
.voydeya-results .studied-section .indication {
  position: absolute;
  right: 0;
  bottom: -4px;
  font-size: 10px;
  color: #3F4444;
}
.voydeya-results .studied-section .indication sup {
  top: -0.7em;
}
@media screen and (max-width: 600px) {
  .voydeya-results .studied-section .indication {
    right: unset;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 792px) and (max-width: 1042px) {
  .voydeya-results .studied-section .indication {
    bottom: -0.8rem;
  }
}
.voydeya-results .studied-section .graph {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.voydeya-results .studied-section .graph .lines {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  height: 75%;
  background-color: transparent;
  border-color: #F7A71C;
  border-style: solid;
  border-width: 0 1px 1px;
  border-radius: 30px;
}
.voydeya-results .studied-section .graph .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  padding: 10px;
  background-color: #FFF;
}
.voydeya-results .studied-section .graph .box .text {
  margin: 0.5rem auto 0;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #06408B;
  text-align: center;
}
.voydeya-results .studied-section .graph .box .text strong {
  color: #A3227D;
}
.voydeya-results .studied-section .graph .box .text sup {
  top: -0.4em;
  font-size: 10px;
}
.voydeya-results .studied-section .graph .patients-voydeya {
  width: 42%;
  border: 1px solid #A3227D;
}
.voydeya-results .studied-section .graph .patients-voydeya .text {
  max-width: 14ch;
}
.voydeya-results .studied-section .graph .patients-voydeya .img {
  width: 110px;
}
.voydeya-results .studied-section .graph .patients-placeboa {
  width: 42%;
  border: 1px solid #008578;
}
.voydeya-results .studied-section .graph .patients-placeboa .img {
  width: 50px;
}
.voydeya-results .studied-section .graph .patients-placeboa .text {
  max-width: 14ch;
}
.voydeya-results .studied-section .graph .patients-placeboa .text span {
  color: #A3227D;
}
.voydeya-results .studied-section .graph .patients-result {
  width: 74%;
  border: 1px solid #A3227D;
}
.voydeya-results .studied-section .graph .patients-result.box {
  margin-top: 0.8rem;
}
.voydeya-results .studied-section .graph .patients-result .img {
  width: 200px;
}
.voydeya-results .studied-section .graph .patients-result .text {
  max-width: 26ch;
  margin-top: 0.8rem;
}
.voydeya-results .studied-section .graph .patients-result .text span {
  color: #A3227D;
}
@media screen and (min-width: 600px) {
  .voydeya-results .studied-section .graph {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
    margin: auto;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .voydeya-results .studied-section .graph .lines {
    top: 50%;
    transform: translate(-50%, -50%);
    height: 52%;
    border-width: 1px 0;
    border-radius: 0;
  }
  .voydeya-results .studied-section .graph .patients-voydeya {
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-row-start: 1;
    width: 90%;
    padding: 1rem 10px;
  }
  .voydeya-results .studied-section .graph .patients-voydeya .text {
    margin: 1rem auto 0;
    font-size: 18px;
    line-height: 22px;
  }
  .voydeya-results .studied-section .graph .patients-placeboa {
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-row-start: 2;
    width: 90%;
    padding: 1rem 10px;
  }
  .voydeya-results .studied-section .graph .patients-placeboa .text {
    margin: 1rem auto 0;
    font-size: 18px;
    line-height: 22px;
  }
  .voydeya-results .studied-section .graph .patients-result {
    grid-column-end: 3;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-row-start: 1;
    width: 100%;
    padding: 1rem 10px;
  }
  .voydeya-results .studied-section .graph .patients-result.box {
    margin: auto;
  }
  .voydeya-results .studied-section .graph .patients-result .text {
    max-width: 26ch;
    margin: 1rem auto 0;
    font-size: 18px;
    line-height: 22px;
  }
}
.voydeya-results .studied-section .accordion-group {
  margin-bottom: 32px;
}
.voydeya-results .studied-section .accordion__item_title {
  padding-left: 0;
}
.voydeya-results .banner {
  margin-bottom: 0.3rem;
}
.voydeya-results .banner .title {
  max-width: 20ch;
}
@media screen and (max-width: 768px) {
  .voydeya-results .banner .title {
    max-width: 18ch;
  }
}
@media screen and (min-width: 768px) {
  .voydeya-results .banner {
    padding-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .voydeya-results .banner .wrapper.disclaimer {
    max-width: 1320px;
  }
}
.voydeya-results .results-section {
  margin: 2rem 0;
}
@media only screen and (max-width: 500px) {
  .voydeya-results .results-section .wrapper {
    max-width: calc(100% - 20px);
  }
}
.voydeya-results .results-section .main-title {
  scroll-margin-top: 3.5rem;
  max-width: 60ch;
  margin-bottom: 1.5rem;
  color: #A3227D;
}
@media only screen and (max-width: 500px) {
  .voydeya-results .results-section .main-title {
    max-width: 18.5ch;
    margin-left: 5px;
  }
}
.voydeya-results .results-section .lab-results {
  position: relative;
  padding: 10px 3rem;
  border-color: #F7A71C;
  border-style: solid;
  border-width: 0 2px 2px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.voydeya-results .results-section .lab-results::before {
  content: " ";
  position: absolute;
  top: 0;
  left: -2px;
  width: calc(100% + 4px);
  height: 6px;
  background: linear-gradient(270deg, #a3227d 0% 0%, #f7a71c 50.8% 50.8%, #a3227d 100% 100%);
}
.voydeya-results .results-section .lab-results__report {
  width: auto;
  margin-top: -3rem;
  margin-left: 7.4rem;
}
@media screen and (max-width: 768px) {
  .voydeya-results .results-section .lab-results__report {
    width: 100%;
    margin: 0;
  }
  .voydeya-results .results-section .lab-results__report .col-xs-12 {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .voydeya-results .results-section .lab-results__report .lab-results__content {
    display: block;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: auto;
  }
}
@media screen and (min-width: 1040px) {
  .voydeya-results .results-section .lab-results__report .lab-results__content {
    margin-top: 3.5rem;
  }
}
.voydeya-results .results-section .lab-results__subhead {
  margin-bottom: 0.5rem;
  padding: 0.7rem 1.7rem 0.7rem 0.7rem !important;
  background-color: #06408B;
}
.voydeya-results .results-section .lab-results__subhead .content {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #FFF;
}
.voydeya-results .results-section .lab-results__subhead .content .sup {
  top: -0.5em;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .voydeya-results .results-section .lab-results__subhead {
    width: 100%;
    padding: 1rem !important;
  }
}
.voydeya-results .results-section .lab-results__head {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  margin-left: 0.8rem;
}
.voydeya-results .results-section .lab-results__head .title {
  font-size: 20px;
  font-weight: 500;
  color: #06408B;
}
@media screen and (max-width: 500px) {
  .voydeya-results .results-section .lab-results__head .title {
    max-width: 19ch;
  }
}
@media screen and (min-width: 769px) {
  .voydeya-results .results-section .lab-results__head .title {
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .voydeya-results .results-section .lab-results__head .title {
    margin-top: 0;
  }
}
.voydeya-results .results-section .lab-results__head .icon {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .voydeya-results .results-section .lab-results__head {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: center;
  }
}
.voydeya-results .results-section .lab-results__graph {
  width: 549.7px;
  margin: 1.5rem 0;
}
.voydeya-results .results-section .lab-results__img {
  max-width: 95%;
  margin-top: -1rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .voydeya-results .results-section .lab-results__img {
    max-width: 330px;
    margin-top: -2rem;
  }
}
.voydeya-results .results-section .lab-results .chart-text {
  margin-inline: 9px;
}
.voydeya-results .results-section .lab-results .custom-chart-text {
  width: 98%;
  max-width: unset;
  margin: 1rem 9px;
}
@media screen and (min-width: 1040px) {
  .voydeya-results .results-section .lab-results .custom-chart-text {
    max-width: 350px;
    margin: unset;
    margin-bottom: 1rem;
  }
}
.voydeya-results .results-section .lab-results__result-text {
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #3F4444;
}
.voydeya-results .results-section .lab-results__result-text.--lg {
  max-width: 100%;
}
@media screen and (max-width: 500px) {
  .voydeya-results .results-section .lab-results__result-text.--lg {
    max-width: 32ch;
  }
}
@media screen and (min-width: 370px) {
  .voydeya-results .results-section .lab-results__result-text.--lg {
    min-width: 32ch;
  }
}
@media screen and (min-width: 1200px) {
  .voydeya-results .results-section .lab-results__result-text.--lg {
    max-width: 62.5ch;
    margin-top: -3.95rem;
    margin-left: 7.4rem;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1500px) {
  .voydeya-results .results-section .lab-results__result-text {
    max-width: 35ch;
  }
}
@media screen and (max-width: 600px) {
  .voydeya-results .results-section .lab-results__result-text {
    max-width: 30ch;
  }
}
.voydeya-results .results-section .lab-results__separator {
  position: relative;
  display: grid;
  grid-template-rows: repeat(auto, 1fr);
  margin-top: 1rem;
  padding-top: 0;
  border-top: 1px solid #008578;
}
.voydeya-results .results-section .lab-results__separator .lab-results__img {
  grid-column: 1/3;
  grid-row: 2/3;
}
.voydeya-results .results-section .lab-results__separator .lab-results__result-text {
  grid-column: 1/3;
}
.voydeya-results .results-section .lab-results__separator .lab-results__head {
  grid-column: 1/3;
  align-items: start;
  margin-top: 1.5rem;
  margin-bottom: 2.3rem;
}
.voydeya-results .results-section .lab-results__separator--borderless {
  border: none;
}
@media screen and (min-width: 1200px) {
  .voydeya-results .results-section .lab-results__separator {
    grid-template-columns: auto 34.6%;
    grid-template-rows: repeat(auto, 1fr);
  }
  .voydeya-results .results-section .lab-results__separator .lab-results__img {
    grid-column: 2/3;
    grid-row: unset;
    margin-top: -4.25rem;
    margin-left: 45px;
  }
  .voydeya-results .results-section .lab-results__separator .lab-results__result-text {
    grid-column: 1/2;
  }
}
.voydeya-results .results-section .lab-results .accordion__item_title {
  padding-left: 0;
  text-align: left;
}
.voydeya-results .results-section .lab-results .accordion__item_content {
  margin-right: 1.7rem;
  margin-left: 1.5rem;
}
.voydeya-results .results-section .lab-results .accordion__item_content .paragraph {
  font-size: 18px;
  color: #3F4444;
}
.voydeya-results .results-section .lab-results .accordion__item_content .paragraph:nth-child(2) {
  padding-top: 1.5rem;
  border-top: 1px solid #008578;
}
@media screen and (min-width: 1300px) {
  .voydeya-results .results-section .lab-results .accordion__item_content .paragraph {
    max-width: 34ch;
  }
}
@media screen and (max-width: 758px) {
  .voydeya-results .results-section .lab-results {
    padding: 10px 12px;
  }
}
@media screen and (min-width: 1024px) {
  .voydeya-results .callout .disclaimer {
    right: calc(16.5% + 18px);
    bottom: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .voydeya-results .callout {
    background-color: #FEF6E7;
  }
}
.voydeya-results .paddingless {
  padding: 0;
}
.voydeya-results .accordion__item {
  max-width: 310px;
  margin: auto;
}
@media screen and (min-width: 400px) {
  .voydeya-results .accordion__item {
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) {
  .voydeya-results .top-gradient__banner_content {
    padding-right: 60px;
    padding-left: 60px;
  }
}

.what-is .banner {
  margin-bottom: 0;
}
.what-is .notation {
  font-size: 11px;
  line-height: 24px;
  letter-spacing: 0;
}
.what-is__bibliography {
  margin-top: 27px;
}
.what-is__bibliography .definition {
  display: block;
  margin-top: 13px;
}
.what-is__bibliography .notation {
  top: -4px;
  font-size: 6px;
  line-height: 12px;
}
.what-is__sub-heading {
  width: 18ch;
  margin-bottom: 24px;
  color: #A3227D;
}
@media screen and (min-width: 400px) {
  .what-is__sub-heading {
    width: auto;
  }
}
.what-is__sub-sub-heading {
  width: 20ch;
  margin-bottom: 24px;
  color: #06408B;
}
.what-is__sub-sub-heading.life-thread {
  width: 194px;
}
@media screen and (min-width: 400px) {
  .what-is__sub-sub-heading.life-thread {
    width: auto;
  }
}
@media screen and (min-width: 400px) {
  .what-is__sub-sub-heading {
    width: auto;
  }
}
.what-is__text.introduction {
  width: 305px;
  margin-bottom: 36px;
}
@media screen and (min-width: 400px) {
  .what-is__text.introduction {
    width: auto;
  }
}
@media screen and (min-width: 767px) {
  .what-is__text.introduction {
    margin-bottom: 56px;
  }
}
.what-is__text.consideration {
  width: 338px;
  margin-top: 33px;
  margin-bottom: 36px;
}
@media screen and (min-width: 400px) {
  .what-is__text.consideration {
    width: auto;
  }
}
@media screen and (min-width: 767px) {
  .what-is__text.consideration {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1024px) {
  .what-is__text.consideration {
    margin-bottom: 56px;
  }
}
.what-is__text.modifier-width {
  max-width: 36ch;
}
@media screen and (min-width: 475px) {
  .what-is__text.modifier-width {
    max-width: unset;
  }
}
.what-is__text .notation {
  top: -0.4em;
}
@media screen and (min-width: 1440px) {
  .what-is__text {
    max-width: 1172px;
  }
}
.what-is__process {
  position: relative;
  padding-top: 23px;
  padding-right: 20.5px;
  padding-bottom: 23px;
  padding-left: 20.5px;
  background-color: #FFF;
  border: 1px solid #008578;
}
.what-is__process-heading {
  margin-bottom: 20px;
  line-height: 32px;
  color: #A3227D;
  text-align: center;
}
.what-is__process-image {
  margin-bottom: 18px;
}
.what-is__process-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #06408B;
}
@media screen and (min-width: 1024px) {
  .what-is__process {
    border-width: 2px;
  }
}
@media screen and (min-width: 1024px) {
  .what-is__process {
    display: flex;
    gap: 57px;
    align-items: center;
    justify-content: center;
  }
  .what-is__process div {
    max-width: 50%;
  }
  .what-is__process .what-is__process-heading {
    width: 451px;
    margin-inline: auto;
    text-align: center;
  }
  .what-is__process .what-is__process-description {
    width: 357px;
  }
}
.what-is__cta {
  margin-top: 24px;
  margin-bottom: 36px;
  padding-block: 24px;
  padding-inline: 34px;
  text-align: center;
  border-top: 2px solid #008578;
  border-bottom: 2px solid #008578;
}
.what-is__cta .what-is__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0;
}
.what-is__cta .what-is__text a {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .what-is__cta {
    max-width: 70%;
    margin-top: 56px;
    margin-bottom: 56px;
    margin-inline: auto;
  }
}
.what-is__sypmtoms {
  padding-top: 40px;
}
.what-is__sypmtoms .notation {
  font-size: 13px;
}
.what-is__sypmtoms .what-is__sub-heading {
  min-width: min(100%, 343px);
}
.what-is__sypmtoms .what-is__sub-sub-heading {
  min-width: min(100%, 345px);
  margin-top: 28px;
}
@media screen and (min-width: 1024px) {
  .what-is__sypmtoms {
    padding-top: 56px;
  }
}
.what-is__pathname {
  margin-bottom: 40px;
}
.what-is__pathname .callout__content-title {
  width: 100%;
}
.what-is__pathname .callout__content-title .notation {
  font-size: 12px;
  line-height: 32px;
}
@media screen and (min-width: 400px) {
  .what-is__pathname .callout__content-title {
    max-width: 485px;
  }
}
@media screen and (min-width: 1024px) {
  .what-is__pathname {
    margin-bottom: 56px;
  }
}
.what-is .symtoms__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .what-is .symtoms__container {
    gap: 30px;
    flex-direction: row;
    justify-content: flex-start;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .what-is .symtoms__container > * {
      margin: calc(30px / 2);
    }
  }
}
.what-is .symtoms__aux-text {
  width: -moz-min-content;
  width: min-content;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  line-height: 24px;
  color: #06408B;
  text-align: center;
}
.what-is .symtoms__card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  height: 276px;
  padding-top: 32px;
  padding-bottom: 36px;
  padding-inline: 20px;
  border: 1px solid #008578;
}
.what-is .symtoms__card-img {
  aspect-ratio: 1;
  width: 106px;
}
@media screen and (min-width: 767px) {
  .what-is .symtoms__card-img {
    width: 138px;
  }
}
.what-is .symtoms__card-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #06408B;
  text-align: center;
}
.what-is .symtoms__card--glass .symtoms__card-text {
  max-width: 26ch;
}
@media screen and (min-width: 1024px) {
  .what-is .symtoms__card--glass .symtoms__card-text {
    max-width: 18ch;
  }
}
@media screen and (min-width: 767px) {
  .what-is .symtoms__card {
    border-width: 2px;
  }
}
@media screen and (min-width: 1024px) {
  .what-is .symtoms__card {
    width: 30%;
    height: 325px;
  }
}
@media screen and (min-width: 1300px) {
  .what-is .symtoms__card {
    height: 292px;
  }
}
.what-is .symtoms__disclaimer {
  width: 301px;
  margin-top: 28px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 24px;
  color: #3F4444;
  text-align: center;
}
.what-is .symtoms__disclaimer .notation {
  font-size: 10px;
}
@media screen and (min-width: 400px) {
  .what-is .symtoms__disclaimer {
    width: auto;
  }
}
@media screen and (min-width: 767px) {
  .what-is .symtoms__disclaimer {
    margin-bottom: 56px;
  }
}
.what-is__experience {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  text-align: center;
  background-color: #A3227D;
}
.what-is__experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(270deg, #a3227d 0%, #f7a71c 50.32%, rgb(163, 34, 125) 99.05%);
}
.what-is__experience .what-is__text {
  font-size: 24px;
  font-weight: 500;
  font-style: medium;
  line-height: 28px;
  color: #FFF;
}
@media screen and (min-width: 767px) {
  .what-is__experience {
    max-width: 80%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 97% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 97% 100%, 0% 100%);
  }
}
@media screen and (min-width: 1024px) {
  .what-is__experience {
    max-width: 72%;
    padding-top: 31px;
    padding-right: 120px;
    padding-bottom: 31px;
    padding-left: 120px;
  }
}
.what-is__container--process {
  padding-top: 47px;
  padding-bottom: 44px;
}
@media screen and (min-width: 1024px) {
  .what-is__container--process {
    padding-top: 40px;
    padding-bottom: 38px;
  }
}
@media screen and (min-width: 1024px) {
  .what-is .callout .disclaimer {
    right: calc(16.5% + 18px);
    bottom: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .what-is .callout {
    background-color: #FEF6E7;
  }
}
.what-is .navigation__cta_text {
  max-width: 28ch;
}
.what-is .navigation__cta_text sup {
  top: 0;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .what-is .navigation__cta_text {
    max-width: 100%;
  }
}

.how-to .banner .title sup {
  top: 0;
  font-size: inherit;
}
.how-to__sub-heading {
  max-width: 19ch;
  margin-bottom: 24px;
}
@media screen and (min-width: 400px) {
  .how-to__sub-heading {
    max-width: 60ch;
  }
}
.how-to .desktop-break {
  display: none;
}
@media screen and (min-width: 1024px) {
  .how-to .desktop-break {
    display: block;
  }
}
.how-to .notation {
  font-size: 11px;
  line-height: 24px;
  letter-spacing: 0;
}
.how-to .notation.letter {
  top: -6.5px;
}
.how-to .notation.copyright {
  top: -5.5px;
}
.how-to__container {
  margin-bottom: 36px;
}
.how-to__container .how-to__text {
  position: relative;
}
.how-to__container .how-to__text + .healthcare {
  margin-top: 20px;
}
@media screen and (min-width: 375px) {
  .how-to__container .how-to__text {
    width: 335px;
  }
}
@media screen and (min-width: 400px) {
  .how-to__container .how-to__text {
    width: auto;
    max-width: 1030px;
  }
}
.how-to__container--routine .how-to__sub-sub-heading {
  margin-bottom: 32px;
}
.how-to__container--routine .how-to__text {
  margin-bottom: 24px;
}
@media screen and (min-width: 400px) {
  .how-to__container--routine .how-to__text {
    max-width: 1192px;
  }
}
.how-to__container--miss-dose {
  margin-top: 36px;
}
.how-to__container--miss-dose .how-to__sub-sub-heading {
  margin-bottom: 28px;
}
.how-to__container--miss-dose .pros-cons-container .pros-cons-text {
  max-width: 233px;
}
.how-to__container--miss-dose .pros-cons-container .pros-cons-text.dot {
  position: relative;
  display: flex;
  gap: 5px;
  max-width: 245px;
  margin-top: 16px;
}
.how-to__container--miss-dose .pros-cons-container .pros-cons-text.dot::before {
  content: "• ";
  font-size: 24px;
  line-height: 24px;
  color: #F7A71C;
}
@media screen and (min-width: 400px) {
  .how-to__container--miss-dose .pros-cons-container .pros-cons-text.dot {
    width: auto;
    max-width: 484px;
  }
}
@media screen and (min-width: 400px) {
  .how-to__container--miss-dose .pros-cons-container .pros-cons-text {
    max-width: 360px;
  }
}
@media screen and (min-width: 767px) {
  .how-to__container--miss-dose .pros-cons-container {
    display: flex;
    gap: 32px;
    justify-content: space-around;
  }
}
@media screen and (min-width: 1300px) {
  .how-to__container--miss-dose .pros-cons-container {
    display: flex;
    gap: 120px;
    justify-content: normal;
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__container--miss-dose {
    margin-top: 56px;
  }
}
.how-to__container--bibliography {
  margin-bottom: 36px;
}
.how-to__container--bibliography .footnotes.pnh {
  margin-top: 10px;
}
.how-to__container--bibliography .notation {
  font-size: 6px;
  line-height: 12px;
}
.how-to__container--dosing {
  padding-block: 36px;
  background-color: #FEF6E7;
}
@media screen and (min-width: 1024px) {
  .how-to__container {
    margin-bottom: 56px;
  }
}
.how-to__dosing-card .card-title {
  max-width: 25ch;
  margin-bottom: 15px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 400px) {
  .how-to__dosing-card .card-title {
    width: auto;
    max-width: 399px;
  }
}
@media screen and (min-width: 768px) {
  .how-to__dosing-card .card-title {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card .card-title {
    margin-right: 30px;
    margin-inline: 0;
  }
}
.how-to__dosing-card .sample-dose-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 767px) {
  .how-to__dosing-card .sample-dose-container {
    justify-content: start;
    max-width: 50%;
    padding-inline: 20px;
  }
}
.how-to__dosing-card-content-heading-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.how-to__dosing-card-content-heading-images .dose {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 280px;
}
.how-to__dosing-card-content-heading-images .dose-desc {
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #3F4444;
  text-wrap: nowrap;
}
.how-to__dosing-card-content-heading-images .dose .how-to__dosing-card-image__img {
  max-height: 63px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .how-to__dosing-card-content-heading-images .dose:nth-child(2) {
    padding-top: 1.5rem;
    border-top: 1px solid #f7a71c;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card-content-heading-images .dose {
    width: auto;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card-content-heading-images .min-dose {
    padding-right: 3rem;
    border-right: 1px solid #F7A71C;
    border-bottom: none;
  }
}
.how-to__dosing-card-content-heading-images .top-dose .how-to__dosing-card-image__img {
  margin-left: 5px !important;
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card-content-heading-images {
    flex-direction: row;
    gap: 50px;
  }
}
.how-to__dosing-card .times-day-container {
  margin-top: 35px;
  margin-bottom: 35px;
  padding-top: 35px;
  padding-right: 5px;
  padding-bottom: 35px;
  padding-left: 5px;
  border-top: 1px solid #008578;
  border-bottom: 1px solid #008578;
}
.how-to__dosing-card .times-day-container > .image-container {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.how-to__dosing-card .times-day-container > .image-container .times-day-image {
  aspect-ratio: 1;
  width: 50px;
}
@media screen and (min-width: 375px) {
  .how-to__dosing-card .times-day-container > .image-container .times-day-image {
    width: 80px;
  }
}
@media screen and (min-width: 767px) {
  .how-to__dosing-card .times-day-container > .image-container .times-day-image {
    width: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card .times-day-container > .image-container .times-day-image {
    width: 80px;
  }
}
@media screen and (min-width: 1300px) {
  .how-to__dosing-card .times-day-container > .image-container .times-day-image {
    width: 106px;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card .times-day-container > .image-container {
    gap: 48px;
  }
}
.how-to__dosing-card .times-day-container .times-day-text {
  max-width: 26ch;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 400px) {
  .how-to__dosing-card .times-day-container .times-day-text {
    width: auto;
    max-width: 400px;
  }
}
@media screen and (min-width: 767px) {
  .how-to__dosing-card .times-day-container .times-day-text {
    max-width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card .times-day-container .times-day-text {
    max-width: 400px;
    margin-inline: 0;
    text-align: left;
  }
}
@media screen and (min-width: 767px) {
  .how-to__dosing-card .times-day-container {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card .times-day-container {
    padding-right: 5%;
  }
}
.how-to__dosing-card .sample-dose {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (min-width: 400px) {
  .how-to__dosing-card .sample-dose {
    width: auto;
    max-width: 414px;
  }
}
.how-to__dosing-card .disclaimer {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .how-to__dosing-card .disclaimer {
    grid-column-start: 2;
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card .disclaimer {
    max-width: -moz-max-content;
    max-width: max-content;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card .how-to__dosing-card-content {
    width: 95%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 767px) {
  .how-to__dosing-card-content-heading {
    display: grid;
    grid-template-columns: minmax(0, 375px) minmax(0, 350px);
    align-items: center;
    justify-content: space-around;
    margin-bottom: 30px;
  }
  .how-to__dosing-card-content-heading .how-to__text {
    max-width: 399px;
  }
  .how-to__dosing-card-content-description {
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
    padding-top: 44px;
    border-top: 1px solid #008578;
  }
  .how-to__dosing-card-content-description .times-day-container {
    border: none;
    border-right: 1px solid #008578;
  }
  .how-to__dosing-card-content-description .times-day-container .image-container {
    justify-content: start;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 767px) and (min-width: 1024px) {
  .how-to__dosing-card-content-description .times-day-container .image-container {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 767px) and (min-width: 767px) {
  .how-to__dosing-card-content-description .times-day-container {
    max-width: 50%;
  }
}
@media screen and (min-width: 767px) and (min-width: 1024px) {
  .how-to__dosing-card-content-description {
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__dosing-card .times-day-container {
    padding-right: 96px;
  }
  .how-to__dosing-card .sample-dose-container {
    padding-left: 96px;
  }
  .how-to__dosing-card-content-heading {
    grid-template-columns: minmax(0, 375px) minmax(0, 400px);
  }
  .how-to__dosing-card-content-heading > .how-to__dosing-card-content-heading-images .how-to__dosing-card-image .how-to__dosing-card-image__img {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) {
  .how-to__dosing-card-content-heading {
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__dosing-card-content-heading {
    grid-template-columns: minmax(0, 375px) minmax(0, 600px);
  }
}
.how-to .icon-flex-container {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
}
.how-to .icon-flex-container .pro-con-icon {
  aspect-ratio: 1;
  width: 36px;
}
.how-to .icon-flex-container:nth-child(1) {
  margin-bottom: 33px;
}
@media screen and (min-width: 1024px) {
  .how-to .icon-flex-container:nth-child(1) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 767px) {
  .how-to .icon-flex-container {
    max-width: 50%;
  }
}
.how-to__routine-container-description {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}
.how-to__routine-container-description .routine-icon {
  aspect-ratio: 1;
  width: 104px;
  margin-bottom: 24px;
  margin-inline: auto;
}
.how-to__routine-container-description .routine-card .routine-text {
  margin-inline: auto;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.how-to__routine-container-description .routine-card .food {
  max-width: 200px;
}
.how-to__routine-container-description .routine-card .temperature {
  max-width: 246px;
}
@media screen and (min-width: 767px) {
  .how-to__routine-container-description .routine-card .temperature {
    max-width: 206px;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__routine-container-description .routine-card .temperature {
    max-width: 246px;
  }
}
.how-to__routine-container-description .routine-card .other-act {
  max-width: 282px;
}
@media screen and (min-width: 767px) {
  .how-to__routine-container-description .routine-card .other-act {
    max-width: 206px;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__routine-container-description .routine-card .other-act {
    width: 274px;
    max-width: none;
  }
}
.how-to__routine-container-description .routine-card:nth-child(1), .how-to__routine-container-description .routine-card:nth-child(2) {
  padding-bottom: 35px;
  border-bottom: 1px solid #008578;
}
@media screen and (min-width: 767px) {
  .how-to__routine-container-description .routine-card:nth-child(1), .how-to__routine-container-description .routine-card:nth-child(2) {
    border-right: 1px solid #008578;
    border-bottom: none;
  }
}
@media screen and (max-width: 760px) {
  .how-to__routine-container-description .routine-card {
    width: 100%;
  }
}
@media screen and (min-width: 767px) {
  .how-to__routine-container-description .routine-card {
    width: 33%;
    height: 296px;
  }
  .how-to__routine-container-description .routine-card:nth-child(2) {
    padding-right: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .how-to__routine-container-description .routine-card {
    width: 30%;
    height: 225px;
  }
  .how-to__routine-container-description .routine-card:nth-child(2) {
    padding-right: 0;
  }
}
@media screen and (min-width: 767px) {
  .how-to__routine-container-description {
    flex-direction: row;
    gap: 10px;
    align-items: start;
    justify-content: center;
  }
}
.how-to .callout__content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 15px;
}
.how-to .callout__content .button {
  width: auto;
  margin-top: 24px;
  text-align: center;
  background-color: #06408B;
}
@media screen and (min-width: 375px) {
  .how-to .callout__content .button {
    max-width: 330px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1024px) {
  .how-to .callout__content .callout__content-title {
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .how-to .callout__content {
    padding-left: 38px;
  }
}
.how-to .top-gradient__banner {
  margin-bottom: 36px;
}
@media screen and (min-width: 1024px) {
  .how-to .top-gradient__banner {
    margin-bottom: 56px;
  }
}
.how-to .wrapper > .top-gradient__banner {
  margin-inline: auto;
  padding-top: 26px;
  padding-right: 28px;
  padding-bottom: 26px;
  padding-left: 28px;
}
@media screen and (min-width: 1024px) {
  .how-to .wrapper > .top-gradient__banner {
    margin-inline: auto;
    padding: 0;
  }
}
.how-to .navigation__cta_text {
  max-width: 313px;
}
@media screen and (min-width: 1024px) {
  .how-to .navigation__cta_text {
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  .how-to .banner .wrapper.disclaimer {
    width: 92%;
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  .how-to .top-gradient__banner_content {
    display: flex;
    justify-content: center;
    max-width: 743px;
    padding-block: 16px;
  }
  .how-to .top-gradient__banner_text {
    width: 595px;
    min-width: 595px;
    margin-left: 0;
  }
}

.Is-voydeya-right-for-me .content-page .content-page__title span {
  font-size: inherit;
  line-height: 1;
}
@media screen and (min-width: 640px) {
  .Is-voydeya-right-for-me .content-page .content-page__title span {
    line-height: initial;
  }
}
.Is-voydeya-right-for-me .content-page .content-page__title sup {
  top: -0.8em;
  font-size: 10px;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (min-width: 356px) {
  .Is-voydeya-right-for-me .content-page .content-page__title sup {
    top: -0.7em;
    font-size: 14px;
  }
}
.Is-voydeya-right-for-me .content-page .content-page__title br {
  display: none;
}
@media screen and (min-width: 338px) and (max-width: 355px) {
  .Is-voydeya-right-for-me .content-page .content-page__title br {
    display: block;
  }
  .Is-voydeya-right-for-me .content-page .content-page__title span {
    white-space: nowrap;
  }
}
.Is-voydeya-right-for-me .banner {
  margin-bottom: 0;
}
.Is-voydeya-right-for-me .banner .title sup {
  top: 0;
  font-size: inherit;
}
.Is-voydeya-right-for-me .disclaimer {
  padding-bottom: 13px;
}
.Is-voydeya-right-for-me .is-voydeya-content {
  width: 100%;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (min-width: 450px) {
  .Is-voydeya-right-for-me .is-voydeya-content br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .Is-voydeya-right-for-me .is-voydeya-content {
    width: 93%;
  }
}
.Is-voydeya-right-for-me .info-cards-line {
  position: relative;
  width: 90%;
  border-bottom: 1px solid #008578;
}
.Is-voydeya-right-for-me .info-cards-line::before {
  position: absolute;
  top: 0;
}
@media screen and (min-width: 990px) {
  .Is-voydeya-right-for-me .info-cards-line::before {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 1px;
    height: 70%;
    margin-top: auto;
    margin-bottom: auto;
    background: #008578;
  }
}
@media screen and (min-width: 1200px) {
  .Is-voydeya-right-for-me .info-cards-line::before {
    right: -18px;
    height: 80%;
  }
}
@media screen and (min-width: 1440px) {
  .Is-voydeya-right-for-me .info-cards-line::before {
    right: -32px;
    height: 85%;
  }
}
@media screen and (min-width: 990px) {
  .Is-voydeya-right-for-me .info-cards-line {
    border-bottom: none;
  }
}
.Is-voydeya-right-for-me .info-cards {
  width: 100%;
  padding-top: 36px;
  padding-bottom: 36px;
  background-color: #FEF6E7;
}
@media screen and (min-width: 990px) {
  .Is-voydeya-right-for-me .info-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.Is-voydeya-right-for-me .info-cards .info-cards__desc {
  width: 24ch;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #06408B;
  text-align: center;
}
.Is-voydeya-right-for-me .info-cards__wrapper {
  position: relative;
  background-color: #FFF;
  border: 2px solid #F7A71C;
  border-top: none;
}
.Is-voydeya-right-for-me .info-cards__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: calc(100% + 4px);
  height: 5px;
  background: linear-gradient(270deg, #a3227d 0%, #f7a71c 50.32%, rgb(163, 34, 125) 99.05%);
}
.Is-voydeya-right-for-me .info-cards__title {
  padding-top: 37px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #A3227D;
  text-align: center;
}
@media screen and (min-width: 990px) {
  .Is-voydeya-right-for-me .info-cards__title {
    margin-bottom: 50px;
  }
}
.Is-voydeya-right-for-me .is-voydeya-content-footer {
  font-weight: 700;
  line-height: 24px;
}
.Is-voydeya-right-for-me .sup__content {
  top: -5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 24px;
}
.Is-voydeya-right-for-me .top-gradient__banner_text {
  max-width: 24ch;
  margin-right: auto;
  margin-left: auto;
  line-height: 30px;
}
@media screen and (min-width: 400px) {
  .Is-voydeya-right-for-me .top-gradient__banner_text {
    max-width: 100%;
  }
  .Is-voydeya-right-for-me .top-gradient__banner_text br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .Is-voydeya-right-for-me .top-gradient__banner_text {
    max-width: 66ch;
    margin-left: 0;
  }
}
.Is-voydeya-right-for-me .top-gradient__banner_superscript {
  top: -6px;
  font-size: 17px;
}
.Is-voydeya-right-for-me .top-gradient__banner_content {
  padding-top: 22.5px;
  padding-bottom: 22.5px;
}
@media screen and (min-width: 768px) {
  .Is-voydeya-right-for-me .top-gradient__banner_content {
    max-width: 100%;
    padding: 16.5px 80px;
  }
}
@media screen and (min-width: 1024px) {
  .Is-voydeya-right-for-me .top-gradient__banner_content {
    max-width: 1082px;
  }
}
@media screen and (min-width: 768px) {
  .Is-voydeya-right-for-me .top-gradient__banner {
    margin-top: 56px;
  }
}
.Is-voydeya-right-for-me .navigation__cta_text {
  width: 100%;
  margin-top: 44px;
}
@media screen and (min-width: 1024px) {
  .Is-voydeya-right-for-me .navigation__cta_text {
    margin-top: 20px;
  }
}

.works-together {
  padding-top: 36px;
}
.works-together .sub__footnotes {
  top: -4px;
  font-size: 6px;
  font-weight: 400;
  line-height: 12px;
}
.works-together__desc {
  margin-top: 24px;
}
.works-together__content {
  padding-top: 36px;
  color: #3F4444;
  /* stylelint-disable-next-line no-descending-specificity */
}
.works-together__content sup {
  top: 0;
  font-size: 6px;
  font-weight: 400;
  line-height: 12px;
}
@media screen and (min-width: 1024px) {
  .works-together__content {
    padding-top: 56px;
  }
}
.works-together__explain {
  position: relative;
  padding-left: 2px;
  /* stylelint-disable-next-line no-descending-specificity */
}
.works-together__explain .sub__footnotes {
  position: absolute;
  top: -2px;
  left: -2px;
}
@media screen and (min-width: 768px) {
  .works-together__explain {
    width: 115ch;
  }
}
@media screen and (min-width: 768px) {
  .works-together {
    padding-top: 56px;
  }
}

.financial-support .banner {
  margin-bottom: 0;
}
.financial-support .info-card__flex {
  display: unset;
}
@media screen and (min-width: 1024px) {
  .financial-support .connected__section {
    width: 957px;
    padding-top: 19px;
    padding-bottom: 19px;
  }
}
.financial-support .connected__logo {
  border-radius: 50%;
}
.financial-support .callout {
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .financial-support .callout .callout-image {
    height: 100%;
  }
  .financial-support .callout .callout-image img {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .financial-support .callout.connect {
    margin-bottom: 56px;
  }
}
.financial-support .callout-image__container {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .financial-support .callout-image__container {
    max-width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .financial-support .callout .disclaimer {
    right: 2.5%;
  }
}
@media screen and (min-width: 1024px) {
  .financial-support .callout .disclaimer {
    right: 18%;
  }
}
.financial-support .callout__content {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
}
.financial-support .callout__content .callout__content-title {
  width: 299px;
  margin-bottom: 24px;
}
@media screen and (min-width: 426px) {
  .financial-support .callout__content .callout__content-title {
    width: initial;
  }
}
.financial-support .callout__content .callout__content-paragraph {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .financial-support .callout__content .callout__content-paragraph {
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 1120px) {
  .financial-support .callout__content .callout__content-paragraph {
    width: 52ch;
  }
}
@media screen and (min-width: 1024px) {
  .financial-support .callout__content {
    max-width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .financial-support .callout__content::before {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .financial-support .callout__content::before {
    display: block;
  }
}
.financial-support .navigation__cta_text {
  width: 31ch;
}
@media screen and (min-width: 768px) {
  .financial-support .navigation__cta_text {
    margin-top: 84px;
  }
}
@media screen and (min-width: 992px) {
  .financial-support .navigation__cta_text {
    width: 100%;
  }
}
.financial-support .navigation__cta_link_text {
  line-height: 22px;
}

.patient-support__heading {
  margin-bottom: 49px;
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  color: #A3227D;
}
@media screen and (min-width: 375px) {
  .patient-support__heading {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440px) {
  .patient-support__heading {
    width: 85%;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-support .patient__grid {
    display: grid;
    grid-template-columns: 297px 1fr;
    -moz-column-gap: 50px;
         column-gap: 50px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1440px) {
  .patient-support .patient__grid {
    -moz-column-gap: 51px;
         column-gap: 51px;
    width: 100%;
  }
}
.patient-support .patient__logo {
  width: 275px;
  margin-bottom: 51px;
  margin-inline: auto;
}
@media screen and (min-width: 375px) {
  .patient-support .patient__logo {
    width: 297px;
  }
}
.patient-support .patient__name {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #06408B;
}
.patient-support .patient__name-sup {
  top: 2px;
  font-size: 1.5rem;
  font-weight: 600;
}
.patient-support .patient__descripcion {
  width: 29ch;
  margin-bottom: 41px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #3F4444;
}
@media screen and (min-width: 375px) {
  .patient-support .patient__descripcion {
    width: 33ch;
  }
}
@media screen and (min-width: 500px) {
  .patient-support .patient__descripcion {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .patient-support .patient__descripcion {
    max-width: 860px;
    margin-bottom: 60px;
  }
}
.patient-support .patient__desc-sup {
  top: -6px;
  font-size: 10px;
  font-weight: 400;
  line-height: 24px;
  color: #3F4444;
}
.patient-support .patient .symbol {
  top: 0;
  font-size: 18px;
}

.Support-programs__wrapper {
  position: relative;
  margin-bottom: 36px;
  padding-top: 37px;
  padding-bottom: 36px;
  background-color: #FFF;
  border: 2px solid #F7A71C;
  border-top: none;
}
.Support-programs__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(270deg, #a3227d 0%, #f7a71c 50.32%, rgb(163, 34, 125) 99.05%);
}
@media screen and (min-width: 768px) {
  .Support-programs__wrapper {
    margin-bottom: 56px;
  }
}
.Support-programs__title {
  width: 25ch;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #06408B;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .Support-programs__title {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .Support-programs__grid {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .Support-programs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .Support-programs__grid {
    width: 1028px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1440px) {
  .Support-programs__grid {
    width: 1232px;
  }
}
.Support-programs__underline {
  margin-bottom: 36px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #A3227D;
  text-align: center;
  text-decoration: underline;
}
@media screen and (min-width: 920px) {
  .Support-programs__underline {
    width: 28ch;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .Support-programs__underline {
    width: 26ch;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1201px) {
  .Support-programs__underline {
    width: 27ch;
  }
}
@media screen and (min-width: 1440px) {
  .Support-programs__underline {
    width: 28ch;
  }
}
.Support-programs__top {
  margin-top: 35px;
}
@media screen and (min-width: 1024px) {
  .Support-programs__top {
    margin-top: 0;
  }
}
.Support-programs__bottom {
  margin-bottom: 0;
}
.Support-programs__bottom-line {
  position: relative;
  width: 90%;
  border-bottom: 1px solid #008578;
}
.Support-programs__bottom-line::before {
  position: absolute;
  top: 0;
}
@media screen and (min-width: 1024px) {
  .Support-programs__bottom-line::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
    background: #008578;
  }
}
@media screen and (min-width: 1024px) {
  .Support-programs__bottom-line {
    border-bottom: none;
  }
}

.contact {
  margin-right: auto;
  margin-left: auto;
}
.contact__content {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .contact__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 687px;
  }
}
.contact__heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  /* 120% */
  color: #06408B;
}
.contact__number {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #3F4444;
  text-align: center;
  text-decoration: none;
}
.contact__number::before {
  position: absolute;
  top: 0;
}
@media screen and (min-width: 768px) {
  .contact__number::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
    background: #008578;
  }
}
@media screen and (min-width: 768px) {
  .contact__number {
    padding-right: 57px;
  }
}
.contact__link {
  text-decoration: underline;
}

/* {outputFileName:style} */