: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.28);
  --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: solid 1px #e8e8e8;
  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 {
  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;
  border-radius: 5px;
}

.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 */
/* Gradients */
/* Koselugo Colors */
/* Boilerplate Colors */
/* Fonts */
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: normal;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD BOOK.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: 500;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD MEDIUM.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD DEMI.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: bold;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD HEAVY.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Compressed";
  font-weight: normal;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD BOOK COMPRESSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Compressed";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD DEMI COMPRESSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Condensed";
  font-weight: normal;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD BOOK CONDENSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Condensed";
  font-weight: 500;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD MEDIUM CONDENSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Condensed";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD DEMI CONDENSED.OTF") format("opentype");
}
@font-face {
  font-family: "Lato";
  font-weight: 100;
  src: url("/assets/fonts/Lato/Lato-Thin.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: 300;
  src: url("/assets/fonts/Lato/Lato-Light.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: normal;
  src: url("/assets/fonts/Lato/Lato-Regular.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: 500;
  src: url("/assets/fonts/Lato/Lato-Medium.otf");
}
@font-face {
  font-family: "Lato";
  font-weight: 700;
  src: url("/assets/fonts/Lato/Lato-Bold.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: 900;
  src: url("/assets/fonts/Lato/Lato-Black.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: url("/assets/fonts/Montserrat/Montserrat-Regular.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 600, 700, bold;
  src: url("/assets/fonts/Roboto/Roboto-Bold.ttf");
}
@font-face {
  font-family: "Roboto";
  font-weight: 800;
  src: url("/assets/fonts/Roboto/Roboto-Black.ttf");
}
*,
*::before,
*::after {
  font-family: "ITC Franklin Gothic Std Condensed", 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);
    }
*/
:root {
  --wrapper-max-width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  :root {
    --wrapper-max-width: calc(100% - 140px);
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --wrapper-max-width: calc(100% - 70px);
  }
}
@media screen and (min-width: 1366px) {
  :root {
    --wrapper-max-width: 1300px;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: var(--wrapper-max-width);
  margin: 0 auto;
}

html.no-scroll {
  overflow: hidden;
}

body {
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 140%;
  color: #000;
  letter-spacing: normal;
}

h1 {
  font-size: 36px;
  line-height: 102%;
}
h1.home {
  font-size: 40px;
  font-weight: 400;
  line-height: 102%;
}
@media screen and (min-width: 768px) {
  h1.home {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  h1 {
    font-size: 58px;
    line-height: normal;
  }
  h1.home {
    font-size: 36px;
    line-height: 102%;
  }
}

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

h3 {
  font-size: 24px;
  line-height: normal;
}

h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

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

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: #210022;
}
p.small {
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.6px;
}

a {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

label a,
p a {
  font-weight: 700;
  color: #b24399;
  text-decoration: underline;
}

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

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

ul li::marker {
  display: none;
}

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;
}

/* 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; } */
:root {
  --color-divider: #D0D0D0;
}

.color--pattens-blue {
  color: #d5edf3;
}

.bg-color--pattens-blue {
  background-color: #d5edf3;
}

.color--dark-gray {
  color: #a3a3a3;
}

.bg-color--dark-gray {
  background-color: #a3a3a3;
}

.color--granite-gray {
  color: #666;
}

.bg-color--granite-gray {
  background-color: #666;
}

.color--dark-purple-100 {
  color: #210022;
}

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

.color--dark-purple-75 {
  color: #594059;
}

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

.color--garnet-100 {
  color: #870051;
}

.bg-color--garnet-100 {
  background-color: #870051;
}

.color--garnet-75 {
  color: #a5407d;
}

.bg-color--garnet-75 {
  background-color: #a5407d;
}

.color--pink-100 {
  color: #b24399;
}

.bg-color--pink-100 {
  background-color: #b24399;
}

.color--pink-75 {
  color: #c572b3;
}

.bg-color--pink-75 {
  background-color: #c572b3;
}

.color--pink-50 {
  color: #d9a1cc;
}

.bg-color--pink-50 {
  background-color: #d9a1cc;
}

.color--pink-25 {
  color: #ebd0e5;
}

.bg-color--pink-25 {
  background-color: #ebd0e5;
}

.color--pink-10 {
  color: #f8edf5;
}

.bg-color--pink-10 {
  background-color: #f8edf5;
}

.color--basics-red {
  color: #af0000;
}

.bg-color--basics-red {
  background-color: #af0000;
}

.color--waikawa-grey {
  color: #62708e;
}

.bg-color--waikawa-grey {
  background-color: #62708e;
}

.color--blue-75 {
  color: #80B5C8;
}

.bg-color--blue-75 {
  background-color: #80B5C8;
}

.color--blue-100 {
  color: #559cb5;
}

.bg-color--blue-100 {
  background-color: #559cb5;
}

.color--blue-25 {
  color: #d4e6ec;
}

.bg-color--blue-25 {
  background-color: #d4e6ec;
}

.color--blue-10 {
  color: #eef6f8;
}

.bg-color--blue-10 {
  background-color: #eef6f8;
}

.color--neutral-main-800 {
  color: #272727;
}

.bg-color--neutral-main-800 {
  background-color: #272727;
}

.color--neutral-main-500 {
  color: #62708e;
}

.bg-color--neutral-main-500 {
  background-color: #62708e;
}

.color--header-gray {
  color: #f1f1f1;
}

.bg-color--header-gray {
  background-color: #f1f1f1;
}

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

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

.color--dark-blue {
  color: #13183f;
}

.bg-color--dark-blue {
  background-color: #13183f;
}

.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--black {
  color: #000;
}

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

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

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

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

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

.color--gray {
  color: #636466;
}

.bg-color--gray {
  background-color: #636466;
}

.color--gray-tundora {
  color: #404040;
}

.bg-color--gray-tundora {
  background-color: #404040;
}

.color--gray-tundora-dark {
  color: #4B4B4B;
}

.bg-color--gray-tundora-dark {
  background-color: #4B4B4B;
}

.color--gray-scorpion {
  color: #5e5e5e;
}

.bg-color--gray-scorpion {
  background-color: #5e5e5e;
}

.color--light-grey {
  color: #67737A;
}

.bg-color--light-grey {
  background-color: #67737A;
}

.color--dark-grey {
  color: #2A3F3B;
}

.bg-color--dark-grey {
  background-color: #2A3F3B;
}

.color--light-grey-alto {
  color: #D0D0D0;
}

.bg-color--light-grey-alto {
  background-color: #D0D0D0;
}

.color--gray-scorpion2 {
  color: #5C5C5C;
}

.bg-color--gray-scorpion2 {
  background-color: #5C5C5C;
}

.color--oslo-gray {
  color: #939496;
}

.bg-color--oslo-gray {
  background-color: #939496;
}

.color--silver-chalice {
  color: #A9A9A9;
}

.bg-color--silver-chalice {
  background-color: #A9A9A9;
}

.color--cerise {
  color: #C724B1;
}

.bg-color--cerise {
  background-color: #C724B1;
}

.color--mine-shaft {
  color: #393939;
}

.bg-color--mine-shaft {
  background-color: #393939;
}

.color--silver-gallery {
  color: #F0F0F0;
}

.bg-color--silver-gallery {
  background-color: #F0F0F0;
}

.color--mine-shafa {
  color: #333;
}

.bg-color--mine-shafa {
  background-color: #333;
}

.color--button-hover-primary {
  color: #6C0341;
}

.bg-color--button-hover-primary {
  background-color: #6C0341;
}

.color--button-hover-secondary {
  color: #DFCFD7;
}

.bg-color--button-hover-secondary {
  background-color: #DFCFD7;
}

.border__blue {
  border: 1px solid #559cb5;
  border-radius: 24px 0;
}

.border__trasparent {
  border: 1px solid transparent;
  border-radius: 24px 0;
}

/*
xss: min-width: 375px
xs: min-width: 425px
sm: min-width: 640px
md: min-width: 768px
lg: min-width: 1024px
xl: min-width: 1336px
2xl: min-width: 1440px
*/
.hidden {
  display: none;
}

.show {
  display: initial;
}

@media screen and (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
  .md\:show {
    display: initial;
  }
}
@media screen and (min-width: 1024px) {
  .lg\:hidden {
    display: none;
  }
  .lg\:show {
    display: initial;
  }
}
.divider--vertical {
  display: flex;
  flex-direction: row;
}
.divider--vertical::after {
  content: "";
  width: 1px;
  height: 100%;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  background-color: var(--color-divider);
}

@media screen and (min-width: 768px) {
  .md\:divider--vertical {
    display: flex;
    flex-direction: row;
  }
  .md\:divider--vertical::after {
    content: "";
    width: 1px;
    height: 100%;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    background-color: var(--color-divider);
  }
}
@media screen and (min-width: 1024px) {
  .lg\:divider--vertical {
    display: flex;
    flex-direction: row;
  }
  .lg\:divider--vertical::after {
    content: "";
    width: 1px;
    height: 100%;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    background-color: var(--color-divider);
  }
}
.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: #870051;
  --button-border-color: transparent;
  --button-hover-text-color: #fff;
  --button-hover-background-color: #6C0341;
  --button-hover-border-color: transparent;
}

.button {
  transition: all, 0.3s, 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 24px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: var(--button-text-color);
  text-decoration: none;
  letter-spacing: 1.2px;
  background-color: var(--button-background-color);
  border: 1px solid var(--button-border-color);
  border-radius: 81px;
}
.button:hover {
  color: var(--button-hover-text-color);
  background-color: var(--button-hover-background-color);
  border-color: var(--button-hover-border-color);
}
.button:focus, .button:focus-within {
  color: var(--button-text-color);
  background-color: var(--button-background-color);
  background-blend-mode: multiply, normal;
  border-color: var(--button-border-color);
  box-shadow: 0 6px 4.2px 0 rgba(43, 0, 0, 0.3) inset;
}
.button--secondary {
  --button-text-color: #870051;
  --button-background-color: #fff;
  --button-border-color: #870051;
  --button-hover-text-color: #870051;
  --button-hover-background-color: #DFCFD7;
  --button-hover-border-color: #870051;
  font-weight: 500;
  border-width: 2px;
}
.button--tertiary {
  --button-text-color: #870051;
  --button-background-color: transparent;
  --button-border-color: #870051;
  --button-hover-background-color: transparent;
  --button-hover-text-color: #b24399;
  --button-hover-border-color: #870051;
  align-items: flex-end;
  padding: 0;
  font-weight: 500;
  text-decoration: none;
  border-top: none;
  border-right: none;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left: none;
  border-radius: 0;
}
.button--tertiary:hover {
  border-top: none;
  border-right: none;
  border-left: none;
}
.button--tertiary:focus, .button--tertiary:focus-within {
  background-blend-mode: unset;
  box-shadow: none;
}

.site__header {
  /* Styles for Header Main Container */
  position: sticky;
  z-index: 3;
  top: 0;
  width: 100%;
  background-color: white;
}
.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 top-nav" "logo nav";
    grid-template-columns: 1fr 4fr;
    row-gap: 21px;
    align-items: center;
    justify-content: space-between;
    padding: 21px 73px 0 69px;
    background: #fff;
    box-shadow: 0 2px 120px 0 rgba(14, 56, 70, 0.1);
  }
}
@media screen and (min-width: 1600px) {
  .site__header .header__inner {
    padding-right: calc((100vw - 1440px) / 2);
    padding-left: calc((100vw - 1440px) / 2);
  }
}
.site__header .header__top {
  /* Styles for Header Top Mobile Content & Logo Container */
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: white;
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
  box-shadow: 0 4px 10px 0 rgba(67, 99, 168, 0.05);
}
@media screen and (min-width: 768px) {
  .site__header .header__top {
    padding: 26.28px 70px;
  }
}
@media screen and (min-width: 1150px) {
  .site__header .header__top {
    display: inline-block;
    grid-area: logo;
    width: 90%;
    height: auto;
    padding: 0;
    box-shadow: none;
  }
}
.site__header .header__top_nav {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  justify-content: center;
  padding-block: 2px;
  padding-inline: calc((100vw - 253px) / 2);
  background: #f1f1f1;
  transition: all 0.35s ease-in-out;
}
.site__header .header__top_nav.hidden {
  display: none;
}
.site__header .header__top_nav .top_nav__item--desktop {
  display: none;
}
@media screen and (min-width: 1150px) {
  .site__header .header__top_nav .top_nav__item--desktop {
    display: list-item;
  }
}
.site__header .header__top_nav .top_nav__link {
  margin: 0 auto;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-weight: 500;
}
.site__header .header__top_nav .top_nav__link:not(.button) {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  color: #666;
  /* @media screen and (min-width: 1200px) {
    max-width: 15ch;
  } */
}
@media screen and (min-width: 1150px) {
  .site__header .header__top_nav .top_nav__link:not(.button) {
    max-width: 13ch;
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (min-width: 1320px) {
  .site__header .header__top_nav .top_nav__link:not(.button) {
    max-width: unset;
  }
}
.site__header .header__top_nav .top_nav__link.button {
  font-weight: 500;
}
@media screen and (min-width: 1150px) {
  .site__header .header__top_nav .top_nav__link {
    margin: 0;
  }
}
@media screen and (min-width: 1150px) {
  .site__header .header__top_nav {
    gap: 25px;
    display: flex;
    grid-area: top-nav;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    background-color: #fff;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .header__top_nav > * {
      margin: calc(25px / 2);
    }
  }
}
@media screen and (min-width: 1320px) {
  .site__header .header__top_nav {
    gap: 20.28px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .header__top_nav > * {
      margin: calc(20.28px / 2);
    }
  }
}
.site__header .header__button {
  /* Styles for Header Buttons */
  width: 40px;
  height: 40px;
  color: black;
  background-color: transparent;
}
.site__header .header__toggle {
  position: relative;
  align-self: center;
  /* Styles for Header Mobile Toggle */
  width: 28px;
  height: 20px;
  padding: 0;
  line-height: 1;
  border-bottom: 4px solid #870051;
  border-radius: 2px;
}
.site__header .header__toggle::before, .site__header .header__toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 28px;
  height: 4px;
  background-color: #870051;
  border-radius: 50px;
  transition: transform 0.3s linear;
}
.site__header .header__toggle::after {
  top: 8px;
}
.site__header .header__toggle:focus, .site__header .header__toggle:focus-within {
  background-blend-mode: unset;
  box-shadow: none;
}
.site__header .header__toggle--opened {
  border-bottom-width: 0;
}
.site__header .header__toggle--opened::before {
  top: 8px;
  left: 0;
  transform: rotate(45deg);
}
.site__header .header__toggle--opened::after {
  left: 0;
  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: 102.636px;
  max-height: 57.3px;
}
.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: 100%;
    max-width: 157px;
    max-height: 87.5px;
  }
}
.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: #000;
  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 .header__social_icon {
  width: 26.87px;
  height: 25.08px;
}

:root {
  --height-submenu-animation: 200px;
  --width-menu-item: 0;
}

.site__navigation {
  /* Styles for Main Nav Container */
  position: absolute;
  left: 0;
  overflow: hidden;
  width: 100vw;
  padding: 0;
  background-color: #fff;
}
.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: 70px;
  background-color: #fff;
  animation: show-navigation 0.35s;
}
@media screen and (min-width: 1150px) {
  .site__navigation--show {
    overflow-y: unset;
  }
}
@media screen and (min-width: 1150px) {
  .site__navigation {
    position: relative;
    left: unset;
    overflow: unset;
    display: inline-block;
    grid-area: nav;
    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 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 80px;
}
.nav__menu__item {
  /* Styles for List Item in Main Nav */
  gap: 7px;
  display: flex;
  row-gap: 0;
  align-items: center;
  width: 100%;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .nav__menu__item > * {
    margin: calc(7px / 2);
  }
}
.nav__menu__item:first-child {
  border-top: none;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item--active {
    border-bottom: 3px solid #870051;
  }
}
.nav__menu__item .menu-item__link {
  /* Styles for Links in Main List */
  width: 100%;
  padding: 26.28px 0;
  padding-left: 16px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #210022;
  letter-spacing: 1.2px;
}
.nav__menu__item .menu-item__link.button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 24px;
  color: #fff;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item .menu-item__link {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 8px;
  }
  .nav__menu__item .menu-item__link::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -14.75px;
    display: inline-block;
    width: 0.5px;
    height: calc(100% - 8px);
    background-color: #a3a3a3;
  }
}
@media screen and (min-width: 1352px) {
  .nav__menu__item .menu-item__link {
    height: auto;
  }
}
@media screen and (min-width: 1150px) {
  .nav__menu__item:nth-child(7) .menu-item__link::after {
    display: none;
  }
}
.nav__menu__item:nth-child(8) {
  padding-top: 60px;
  padding-bottom: 40px;
}
.nav__menu__item:nth-child(8) .menu-item__link {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.nav__menu__item:nth-child(8), .nav__menu__item:nth-child(9) {
  justify-content: center;
}
.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 */
  flex-wrap: wrap;
}
.nav__menu__item.has__subnav .menu-item__link {
  width: calc(100% - 45px);
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.has__subnav .menu-item__link {
    width: 100%;
    padding: 8px;
  }
}
.nav__menu__item.has__subnav .header__button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.nav__menu__item .header__toggle-submenu {
  /* Styles for Sub Menu Toggler */
  align-items: center;
  height: 65px;
}
.nav__menu__item .header__toggle-submenu:focus, .nav__menu__item .header__toggle-submenu:focus-within {
  background-blend-mode: unset;
  box-shadow: none;
}
.nav__menu__item .header__toggle-submenu .header__icon::after, .nav__menu__item .header__toggle-submenu .header__icon::before {
  width: 1px;
  background-color: #62708e;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item .header__toggle-submenu {
    display: none;
  }
}
@media screen and (min-width: 1150px) {
  .nav__menu__item {
    gap: 0;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    border: none;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__menu__item > * {
      margin: calc(0 / 2);
    }
  }
  .nav__menu__item:nth-child(8), .nav__menu__item:nth-child(9) {
    display: none;
  }
  .nav__menu__item:hover .menu-item__link {
    color: #fff;
    background-color: #870051;
  }
  .nav__menu__item--active {
    border-bottom: 3px solid #870051;
  }
}
@media screen and (min-width: 768px) {
  .nav__menu {
    max-width: 390px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1150px) {
  .nav__menu {
    gap: 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    max-width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 0;
    padding-bottom: 0;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__menu > * {
      margin: calc(25px / 2);
    }
  }
}

.nav__subnav {
  /* Styles for List of Sub Menu */
  overflow: hidden;
  width: 100%;
  height: 0;
  color: #210022;
  background-color: #fff;
}
.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-right: 26px;
  padding-left: 26px;
  list-style: none;
}
.nav__subnav .subnav__item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item:first-child {
    margin-top: 0;
  }
}
.nav__subnav .subnav__item .subnav-item__link {
  /* Styles for Links in Sub Menu */
  padding: 20px;
  padding-right: 5px;
  padding-left: 5px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #210022;
  letter-spacing: 1.2px;
  border-bottom: 1px solid #c4c4c4;
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item .subnav-item__link {
    width: 100%;
    margin-right: 10px;
    padding: 0;
    border-bottom: none;
  }
  .nav__subnav .subnav__item .subnav-item__link:hover {
    color: #b24399;
  }
}
.nav__subnav .subnav__item:last-child {
  margin-bottom: 30px;
}
.nav__subnav .subnav__item:last-child .subnav-item__link {
  border-bottom: none;
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item:last-child {
    margin-bottom: 0;
  }
  .nav__subnav .subnav__item:last-child .subnav-item__link {
    margin-right: 0;
  }
}
@media screen and (min-width: 1150px) {
  .nav__subnav {
    --width-menu-item: calc(100%);
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    width: -moz-max-content;
    width: max-content;
    border-radius: 0;
  }
  .nav__subnav--show {
    gap: 24px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    border: 0.5px solid #210022;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__subnav--show > * {
      margin: calc(24px / 2);
    }
  }
  .nav__subnav--show .subnav__item {
    padding-right: 16px;
    padding-left: 16px;
  }
  .nav__subnav--show .subnav__item .subnav-item__link {
    position: relative;
    max-width: 185px;
    margin: 0;
    padding-right: calc(185px - var(--width-menu-item));
  }
  .nav__subnav--show .subnav__item .subnav-item__link::after {
    content: "";
    position: absolute;
    bottom: -12px;
    display: block;
    width: 100%;
    height: 0.5px;
    background-color: #a3a3a3;
  }
  .nav__subnav--show .subnav__item:last-child {
    padding-bottom: 16px;
  }
  .nav__subnav--show .subnav__item:last-child .subnav-item__link::after {
    display: none;
  }
  .nav__subnav--show .subnav__item:first-child {
    padding-top: 16px;
  }
  .nav__subnav--hiding {
    gap: 24px;
    padding: 0;
    border: 0.5px solid #210022;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__subnav--hiding > * {
      margin: calc(24px / 2);
    }
  }
  .nav__subnav--hiding.nav__subnav .subnav__item {
    padding-right: 16px;
    padding-left: 16px;
  }
  .nav__subnav--hiding.nav__subnav .subnav__item .subnav-item__link {
    max-width: 175px;
    padding-right: calc(175px - var(--width-menu-item));
  }
  .nav__subnav--hiding.nav__subnav .subnav__item:first-child {
    padding-top: 16px;
  }
  .nav__subnav--hiding.nav__subnav .subnav__item:last-child {
    padding-bottom: 16px;
  }
}

@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;
  }
}
.hero {
  width: 100%;
  max-width: 100%;
  margin: auto;
}
.hero__wrapper {
  position: relative;
}
.hero__content-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__image-container {
  position: relative;
}
.hero__image-container::after {
  content: "";
  width: 100%;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .hero__image-container::after {
    height: 2px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__image-container::after {
    content: none;
  }
}
.hero__text {
  position: absolute;
  top: 63px;
  left: calc((100% - var(--wrapper-max-width)) / 2);
  max-width: 172px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 23px;
  font-weight: 600;
  font-style: normal;
  line-height: 102%;
  color: #b24399;
}
@media screen and (min-width: 380px) {
  .hero__text {
    top: 60px;
    font-size: 32px;
  }
}
@media screen and (min-width: 440px) {
  .hero__text {
    top: 82px;
  }
}
@media screen and (min-width: 480px) {
  .hero__text {
    top: 87px;
  }
}
@media screen and (min-width: 560px) {
  .hero__text {
    top: 98px;
  }
}
@media screen and (min-width: 600px) {
  .hero__text {
    top: 106px;
  }
}
@media screen and (min-width: 700px) {
  .hero__text {
    top: 140px;
    max-width: 237px;
  }
}
@media screen and (min-width: 768px) {
  .hero__text {
    top: 61px;
    max-width: 392px;
    font-size: 33.592px;
  }
}
@media screen and (min-width: 900px) {
  .hero__text {
    top: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__text {
    max-width: 677px;
    font-size: 50px;
  }
}
@media screen and (min-width: 1150px) {
  .hero__text {
    top: 86px;
  }
}
@media screen and (min-width: 1300px) {
  .hero__text {
    font-size: 58px;
  }
}
@media screen and (min-width: 1400px) {
  .hero__text {
    top: 119px;
  }
}
@media screen and (min-width: 1500px) {
  .hero__text {
    top: 136px;
  }
}
.hero__text.understanding-nf1 {
  top: 40px;
  max-width: 203px;
}
.hero__text.understanding-nf1 br {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero__text.understanding-nf1 br {
    display: block;
  }
}
@media screen and (min-width: 380px) {
  .hero__text.understanding-nf1 {
    top: 21px;
    font-size: 32px;
  }
}
@media screen and (min-width: 445px) {
  .hero__text.understanding-nf1 {
    top: 44px;
  }
}
@media screen and (min-width: 480px) {
  .hero__text.understanding-nf1 {
    top: 55px;
  }
}
@media screen and (min-width: 560px) {
  .hero__text.understanding-nf1 {
    top: 70px;
  }
}
@media screen and (min-width: 600px) {
  .hero__text.understanding-nf1 {
    top: 87px;
  }
}
@media screen and (min-width: 700px) {
  .hero__text.understanding-nf1 {
    top: 116px;
    max-width: 237px;
  }
}
@media screen and (min-width: 768px) {
  .hero__text.understanding-nf1 {
    top: 43px;
    max-width: 450px;
    font-size: 33.592px;
  }
}
@media screen and (min-width: 834px) {
  .hero__text.understanding-nf1 {
    top: 46px;
  }
}
@media screen and (min-width: 900px) {
  .hero__text.understanding-nf1 {
    top: 53px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__text.understanding-nf1 {
    max-width: 775px;
    font-size: 50px;
  }
}
@media screen and (min-width: 1150px) {
  .hero__text.understanding-nf1 {
    top: 63px;
  }
}
@media screen and (min-width: 1300px) {
  .hero__text.understanding-nf1 {
    top: 92px;
    font-size: 58px;
  }
}
@media screen and (min-width: 1500px) {
  .hero__text.understanding-nf1 {
    position: relative;
    top: 95px;
  }
}
.hero__text.events {
  top: 33px;
  left: 20px;
}
@media screen and (min-width: 380px) {
  .hero__text.events {
    top: 21px;
    font-size: 32px;
  }
}
@media screen and (min-width: 480px) {
  .hero__text.events {
    top: 50px;
  }
}
@media screen and (min-width: 560px) {
  .hero__text.events {
    top: 64px;
  }
}
@media screen and (min-width: 600px) {
  .hero__text.events {
    top: 70px;
  }
}
@media screen and (min-width: 700px) {
  .hero__text.events {
    top: 87px;
    max-width: 237px;
  }
}
@media screen and (min-width: 768px) {
  .hero__text.events {
    top: 36px;
    left: 40px;
    max-width: 392px;
    font-size: 33.592px;
  }
}
@media screen and (min-width: 834px) {
  .hero__text.events {
    left: 70px;
  }
}
@media screen and (min-width: 900px) {
  .hero__text.events {
    top: 46px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__text.events {
    left: 70px;
    max-width: 677px;
    font-size: 50px;
  }
}
@media screen and (min-width: 1150px) {
  .hero__text.events {
    top: 50px;
  }
}
@media screen and (min-width: 1300px) {
  .hero__text.events {
    top: 71px;
    font-size: 58px;
  }
}
@media screen and (min-width: 1500px) {
  .hero__text.events {
    position: relative;
    top: 70px;
    left: 0;
  }
}
.hero__text.faq {
  top: 39px;
}
.hero__text.faq br {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero__text.faq br {
    display: block;
  }
}
@media screen and (min-width: 380px) {
  .hero__text.faq {
    top: 46px;
    font-size: 32px;
  }
}
@media screen and (min-width: 480px) {
  .hero__text.faq {
    top: 66px;
  }
}
@media screen and (min-width: 560px) {
  .hero__text.faq {
    top: 86px;
  }
}
@media screen and (min-width: 600px) {
  .hero__text.faq {
    top: 100px;
  }
}
@media screen and (min-width: 700px) {
  .hero__text.faq {
    top: 120px;
    max-width: 237px;
  }
}
@media screen and (min-width: 768px) {
  .hero__text.faq {
    top: 58px;
    max-width: 392px;
    font-size: 33.592px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__text.faq {
    max-width: 677px;
    font-size: 50px;
  }
}
@media screen and (min-width: 1150px) {
  .hero__text.faq {
    top: 71px;
  }
}
@media screen and (min-width: 1300px) {
  .hero__text.faq {
    top: 95px;
    font-size: 58px;
  }
}
@media screen and (min-width: 1500px) {
  .hero__text.faq {
    position: relative;
    top: 101px;
  }
}
@media screen and (min-width: 1500px) {
  .hero .hero__content-wrapper {
    height: 0;
  }
}
.hero .disclaimer {
  position: absolute;
  right: 30px;
  bottom: 0%;
  margin-top: 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 10px;
  line-height: 14px;
  color: #594059;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .hero .disclaimer {
    right: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .hero .disclaimer {
    top: calc(100% - 38px);
    right: 50px;
    bottom: initial;
  }
}
@media screen and (min-width: 1200px) {
  .hero .disclaimer {
    top: calc(100% - 43px);
    right: 58px;
  }
}
@media screen and (min-width: 1440px) {
  .hero .disclaimer {
    top: calc(100% - 52px);
    right: 70px;
    font-size: 12px;
    line-height: 16.8px;
  }
}
.hero .placeholder {
  position: absolute;
  bottom: -60px;
  left: 5px;
  width: 358px;
}
@media screen and (min-width: 768px) {
  .hero .placeholder {
    bottom: 37px;
    left: 31px;
    width: 298px;
  }
}
@media screen and (min-width: 843px) {
  .hero .placeholder {
    bottom: 47px;
    left: 58px;
  }
}
@media screen and (min-width: 950px) {
  .hero .placeholder {
    bottom: 68px;
  }
}
@media screen and (min-width: 1100px) {
  .hero .placeholder {
    bottom: 87px;
  }
}
@media screen and (min-width: 1240px) {
  .hero .placeholder {
    bottom: 106px;
  }
}
@media screen and (min-width: 1500px) {
  .hero .placeholder {
    left: 0;
  }
}
@media screen and (min-width: 1660px) {
  .hero {
    max-width: 1440px;
  }
}

.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;
}

:root {
  --isi-fixed-height: 195px;
}
@media screen and (min-width: 1024px) {
  :root {
    --isi-fixed-height: 180px;
  }
}
@media screen and (min-width: 1260px) {
  :root {
    --isi-fixed-height: 150px;
  }
}

.isi {
  padding-top: 28px;
  padding-bottom: 28px;
}
.isi * {
  font-family: "Arial", sans-serif !important;
}
.isi.is-fixed {
  position: fixed;
  z-index: 2;
  top: calc(100% - var(--isi-fixed-height));
  width: 100%;
  height: var(--isi-fixed-height);
  transition: top 0.5s ease-in-out, height 0.5s ease-in-out;
  box-shadow: 0px 6px 17.9px 0px rgba(15, 97, 126, 0.15);
}
.isi:not(.is-fixed) .isi__title {
  margin-top: 0;
}
.isi:not(.is-fixed) p + .isi__title {
  margin-top: 4px;
}
.isi:not(.is-fixed) p + .isi__title.isi__title--indicacion {
  margin-top: 20px;
}
.isi.is-open-toggle .isi__title a {
  display: none;
}
.isi__title {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif !important;
  font-size: 24px;
  font-weight: 600;
  line-height: 19.2px;
  color: #b24399;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .isi__title {
    margin-top: 0;
  }
}
.isi__title a {
  aspect-ratio: 1;
  width: 28px;
  background-image: url("/assets/images/isi/trigger.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.isi__title--indicacion {
  margin-top: 20px;
}
.isi__text {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #b24399;
}
.isi__text:nth-child(3) {
  margin-bottom: 4px;
}
.isi__text--taking {
  margin-top: 16px;
}
@media screen and (min-width: 390px) {
  .isi__text--taking {
    margin-top: 20px;
  }
}
.isi__ul {
  margin-left: 14px;
  color: #210022;
}
@media screen and (max-width: 550px) {
  .isi__ul {
    max-width: 70ch;
  }
}
@media screen and (min-width: 560px) and (max-width: 834px) {
  .isi__ul {
    max-width: 76ch;
  }
}
@media screen and (min-width: 1440px) {
  .isi__ul {
    max-width: 150ch;
  }
}
.isi__li {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #210022;
  list-style-type: disc;
}
.isi__li::marker {
  color: #b24399;
}
.isi__li:nth-child(1) {
  max-width: 99%;
  margin-top: 4px;
}
@media screen and (min-width: 834px) {
  .isi__li:nth-child(1) {
    max-width: 100%;
  }
}
.isi__li:nth-child(2) {
  max-width: 99%;
}
@media screen and (min-width: 834px) {
  .isi__li:nth-child(2) {
    max-width: 100%;
  }
}
.isi__li:nth-child(4) {
  max-width: 99%;
}
@media screen and (min-width: 1024px) {
  .isi__li:nth-child(4) {
    max-width: 100%;
  }
}
.isi__li:nth-child(5) {
  max-width: 99%;
}
@media screen and (min-width: 1024px) {
  .isi__li:nth-child(5) {
    max-width: 100%;
  }
}
.isi__li:last-of-type {
  margin-bottom: 0;
}
.isi__li strong {
  font-weight: 700;
  color: #b24399;
}
.isi__li--400 {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
}
.isi__ul--sub {
  color: #210022;
}
.isi__li-sub {
  margin-bottom: 4px;
  margin-left: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  list-style-type: circle;
}
.isi__li-sub:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .isi__li-sub br {
    display: none;
  }
}
.isi__li-sub br:last-of-type {
  display: none;
}
.isi__purple {
  margin: 0;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #b24399;
}
.isi__description {
  max-width: 98%;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #210022;
}
.isi__description strong {
  font-weight: 700;
  color: #b24399;
}
.isi__description:nth-child(8) {
  max-width: 99%;
}
@media screen and (min-width: 768px) {
  .isi__description:nth-child(8) {
    max-width: 97%;
  }
}
@media screen and (min-width: 834px) {
  .isi__description:nth-child(8) {
    max-width: 99%;
  }
}
@media screen and (min-width: 1024px) {
  .isi__description:nth-child(8) {
    max-width: 100%;
  }
}
.isi__description.letter-spacing {
  letter-spacing: -0.2px;
}
@media screen and (min-width: 768px) {
  .isi__description.letter-spacing {
    letter-spacing: -0.1px;
  }
}
@media screen and (min-width: 1024px) {
  .isi__description.letter-spacing {
    letter-spacing: 0;
  }
}
@media screen and (min-width: 834px) {
  .isi__description {
    max-width: 100%;
  }
}
.isi__description--unset {
  margin-top: 0;
}
.isi__description--effects {
  max-width: 99%;
}
@media screen and (min-width: 768px) {
  .isi__description--effects {
    max-width: 78ch;
  }
}
@media screen and (min-width: 1440px) {
  .isi__description--effects {
    max-width: 155ch;
  }
}
.isi__link {
  font-size: 16px;
  font-weight: 700;
  color: #870051;
}
@media screen and (min-width: 834px) {
  .isi__description--br {
    display: none;
  }
}
.isi__description--prefooter {
  max-width: 100%;
  margin-top: 4px;
}
.isi__description--footer .isi__link {
  line-height: 22px;
}
@media screen and (min-width: 1440px) {
  .isi__description--footer {
    margin-top: 16px;
    margin-bottom: 8px;
  }
}
.isi__families {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #210022;
}
@media screen and (min-width: 390px) {
  .isi__families {
    max-width: 35ch;
  }
}
@media screen and (min-width: 834px) {
  .isi__families {
    max-width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .isi {
    padding-top: 20px;
  }
}

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;
}

.container-tabs-tk {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 1080px;
  margin-inline: auto;
  padding: 40px 20px;
  border: 2px solid #d4e6ec;
  border-top: 0;
  border-radius: 0 0 24px;
}
.container-tabs-tk p {
  font-size: 18px;
  line-height: 25.2px;
  text-align: center;
}
.container-tabs-tk a {
  height: 100%;
  margin-inline: auto;
}
.container-tabs-tk .button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 12px 24px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
  text-align: center;
}

.tk-tabs {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
}
.tk-tabs .tabs,
.tk-tabs .content-tabs {
  padding-right: 40px;
  padding-left: 40px;
  color: #210022;
}
@media screen and (min-width: 1024) {
  .tk-tabs .tabs,
  .tk-tabs .content-tabs {
    margin-block: 30px;
  }
}
.tk-tabs__circle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 35px;
  height: 35px;
  margin: 0;
  margin-left: 10px;
  padding: 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px !important;
  font-weight: 600;
  color: #210022;
  text-align: center;
  background-color: #e9e9e9;
  border: 1px solid #aaceda;
  border-radius: 50%;
}
.tk-tabs ul.tabs[role=tablist] {
  display: flex;
  gap: 0;
  height: auto;
  margin: 0;
  padding: 0;
  padding-top: 14px;
  background-color: white;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .tk-tabs ul.tabs[role=tablist] {
    margin-bottom: -12px;
  }
}
.tk-tabs li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
  height: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .tk-tabs li {
    min-width: 307px;
  }
}
.tk-tabs a {
  gap: 8px;
  padding: 4px;
  padding-top: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 21.6px;
  color: #210022;
  border: none !important;
}
.tk-tabs a p {
  margin-left: 8px;
  font-size: 16px;
  opacity: 0.5;
}
@media screen and (min-width: 1024px) {
  .tk-tabs a {
    padding-right: 15px;
  }
  .tk-tabs a p {
    font-family: "ITC Franklin Gothic Std", sans-serif;
    font-size: 18px;
  }
}
.tk-tabs span {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .tk-tabs span {
    font-family: "ITC Franklin Gothic Std", sans-serif;
    font-size: 18px;
  }
}
.tk-tabs .content-tabs {
  margin: 0;
  margin-inline: 0;
  padding: 32px 35px;
  color: #594059;
  background-color: #eef6f8;
}
.tk-tabs .content-tabs p {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 30.8px;
}
.tk-tabs .content-tabs ul {
  margin-left: 0;
  padding-right: 12px;
  padding-left: 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.2px;
  list-style: none;
}
.tk-tabs .content-tabs ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-left: 15px;
  padding-right: 1px;
  padding-left: 18px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  line-height: 25.2px;
  list-style: 25.2px;
  list-style: inside;
}
.tk-tabs .content-tabs ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #594059;
  border-radius: 50%;
}
.tk-tabs [role=tablist] [aria-selected] {
  height: auto;
  font-size: 16px;
  font-weight: 400px;
  background-color: #eef6f8;
  border-radius: 12px 12px 0 0;
}
.tk-tabs [role=tablist] [aria-selected] p {
  opacity: 1;
}
.tk-tabs [role=tablist] [aria-selected] .tk-tabs__circle {
  width: 40px;
  height: 40px;
  margin: 0;
  margin-top: -4px;
  margin-left: 10px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 26px !important;
  font-weight: 600;
  line-height: 32px;
  color: #fff;
  text-align: center;
  background-color: #559cb5;
  border: 1px solid #559cb5;
  border-radius: 50%;
}
.tk-tabs [role=tabpanel] {
  padding: 0;
}

/* 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: 16px;
  height: 16px;
  background-position: center;
  outline: 1px solid #62708e;
}
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.2);
}
input[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-radius: 2px;
  outline: 1px solid #594059;
}
input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 0;
  top: 50%;
  left: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 10px;
  opacity: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="10" viewBox="0 0 14 10" fill="none"><path d="M1.30957 5.53974L4.74316 8.97333L12.6896 1.02686" stroke="%23870051" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: cover;
}
input[type=checkbox]:checked {
  border-color: currentcolor;
}
input[type=checkbox]:checked::after {
  opacity: 1;
}
input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}
input:disabled {
  cursor: not-allowed;
}

.form__control {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding-bottom: 0;
  transition: all 100ms ease-in-out;
  /* stylelint-disable-next-line no-descending-specificity */
  /* &.field-required {
  } */
  /* stylelint-disable-next-line no-descending-specificity */
  /* stylelint-disable-next-line no-descending-specificity */
}
.form__control-required-disclaimer {
  font-size: 16px;
  font-style: italic;
  line-height: 18px;
  color: #594059;
}
.form__control-required-disclaimer span {
  font-family: sans-serif;
  font-style: normal;
  color: #af0000;
}
@media screen and (min-width: 501px) {
  .form__control-required-disclaimer {
    padding-left: 16px;
  }
}
.form__control .form__control-label,
.form__control .form__control-legend {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 18px; /* 112.5% */
  color: #210022;
  letter-spacing: 0.303px;
}
.form__control .form__control-label a,
.form__control .form__control-legend a {
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  color: #870051;
}
.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 .form__control-input {
  width: 100%;
  height: 43px;
  padding: 8px 12px;
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
}
.form__control .form__control-input::-moz-placeholder {
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
}
.form__control .form__control-input::placeholder {
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
}
.form__control .form__control-select-wrapper {
  position: relative;
  height: 43px;
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
  background: #eef6f8;
  border-radius: 4px;
}
.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 1.875rem;
}
.form__control .form__control-select-wrapper .form__control-select::after {
  transform-origin: initial;
  transform: rotate(0deg) translateY(-50%);
  width: 20px;
  height: 20px;
  margin-top: 0;
  background-image: url("/assets/images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  border: 0;
}
.form__control .form__control-select-wrapper .form__control-select.open::after {
  transform: translateY(-50%) rotate(180deg);
}
.form__control .form__control-select-wrapper .form__control-select:focus {
  border: none;
  outline: 2px solid black;
}
.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: #000;
}
.form__control .form__control-radio,
.form__control .form__control-checkbox {
  display: flex;
  align-items: flex-start;
}
.form__control .form__control-radio:not(:last-of-type),
.form__control .form__control-checkbox:not(:last-of-type) {
  margin-bottom: 12px;
}
.form__control .form__control-radio input,
.form__control .form__control-checkbox input {
  margin-right: 0.625rem;
}
.form__control .form__control-checkbox {
  align-items: flex-start;
}
.form__control .form__control-checkbox .form__control-label {
  cursor: pointer;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  color: #594059;
  letter-spacing: 0.6px;
}
.form__control.form__control--invalid .form__control-label {
  color: #f00;
}
.form__control.form__control--invalid .form__control-input,
.form__control.form__control--invalid .form__control-select-wrapper {
  outline: 1px solid #f00;
}
.form__control.form__control--invalid .form__control-error {
  display: block;
}
.form__control[data-required=true] {
  /* stylelint-disable-next-line no-descending-specificity */
}
.form__control[data-required=true] .form__control-label::after {
  all: inherit;
  content: "*";
  display: inline;
  color: #af0000;
}

.form-section {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  padding-bottom: 40px;
  background-color: #d4e6ec;
}
.form-section__title {
  margin-bottom: 20px;
  padding-top: 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
  text-align: center;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 500px) {
  .form-section__title {
    max-width: 24ch;
    margin: auto;
    margin-bottom: 30px;
  }
}
.form-section__text {
  max-width: 70ch;
  margin: auto;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  line-height: normal;
  color: #210022;
  text-align: center;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 500px) {
  .form-section__text {
    max-width: 36ch;
    margin: auto;
  }
}
.form-section .form {
  margin-top: 24px;
}
.form-section .form .button {
  justify-content: center;
  width: 104px;
  height: auto;
  margin: 1rem auto 0;
  padding: 12px 24px;
  border-radius: 50px;
}
.form-section .form .form__control-checkbox .form__control-label {
  max-width: 53ch;
  color: #210022;
}
@media screen and (min-width: 400px) {
  .form-section .form .form__control-checkbox .form__control-label {
    max-width: 110ch;
    font-size: 10px;
  }
}
@media screen and (max-width: 500px) {
  .form-section .form .col-xs-12 {
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .form-section .form.wrapper {
    max-width: 700px;
  }
}

.pemform {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto 3rem;
}
.pemform--bg {
  width: 100%;
  padding: 40px 0;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(28.75px);
          backdrop-filter: blur(28.75px);
  border-radius: 24px 0;
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
@media screen and (min-width: 1025px) {
  .pemform--bg {
    padding: 40px 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pemform--bg {
    padding: 40px 32px;
  }
}
.pemform-form {
  max-width: 100%;
  margin: auto;
  padding-right: 10px;
  padding-left: 10px;
  transition: opacity ease-in-out 1s;
}
.pemform-form[aria-hidden=true] {
  display: none;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.pemform-form[aria-hidden=false] {
  display: block;
  height: auto;
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .pemform-form {
    max-width: 575px;
  }
}
@media screen and (min-width: 1024px) {
  .pemform-form {
    max-width: 900px;
  }
}
.pemform .form__controls.row {
  display: unset;
}
.pemform .form__controls.row .col-xs-6 {
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .pemform .form__controls.row .col-xs-6 {
    max-width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .pemform .form__controls.row {
    display: flex;
  }
}
.pemform .form__control-label {
  font-size: 14px;
  color: #594059;
}
.pemform .form__control-terms .form__control-label {
  font-weight: 400;
  line-height: 14px;
  color: #594059;
  letter-spacing: 0.6px;
}
.pemform .form__control-terms .form__control-label::after {
  display: none !important;
}
@media screen and (max-width: 450px) {
  .pemform .form__control-terms .form__control-label {
    max-width: 279px;
  }
}
@media screen and (min-width: 768px) {
  .pemform .form__control-terms .form__control-label {
    max-width: 502px;
  }
}
@media screen and (min-width: 1024px) {
  .pemform .form__control-terms .form__control-label {
    max-width: 924px;
  }
}
.pemform .form__control {
  padding-right: 10px;
  padding-left: 10px;
}
.pemform .form__control[aria-hidden=true] {
  display: none;
}
.pemform .form__control[aria-hidden=false] {
  display: block;
}
.pemform .form__control[data-required=true] .form__control-label {
  margin: 0;
}
.pemform .form__control[data-required=true] .form__control-label::after {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
}
@media screen and (max-width: 450px) {
  .pemform .form__control[data-required=true] .form__control-label {
    max-width: 26ch;
  }
}
.pemform .form__control-checkbox {
  margin-top: 1rem;
}
.pemform .form__checkboxes {
  margin-bottom: 1rem;
}
.pemform .form__checkboxes .form__control {
  padding-top: 5px;
  padding-bottom: 5px;
}
.pemform .form__checkboxes .form__control-checkbox {
  margin: 0;
}
.pemform .form__checkboxes .form__control-checkbox .form__control-label {
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .pemform .form__checkboxes .form__control-checkbox {
    align-items: center;
  }
  .pemform .form__checkboxes .form__control-checkbox .form__control-label {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 140%;
  }
}
@media screen and (max-width: 768px) {
  .pemform .form__checkboxes {
    margin-bottom: 0;
  }
}
.pemform .form__control-input {
  background-color: #eef6f8;
}
.pemform .form__control-label-checkbox {
  padding-bottom: 10px;
  padding-left: 7px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #272727;
  letter-spacing: 0.4px;
}
.pemform .form__control-required-disclaimer {
  margin-left: 0;
  padding-left: 10px;
  font-style: italic;
}
.pemform .form__control-required-disclaimer span {
  color: #af0000;
}
.pemform .button {
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pemform .button {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pemform {
    width: 694px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .pemform {
    width: 780px;
  }
}

.accordion__item_content {
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
  max-height: 0;
  padding-top: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem;
  color: #000;
}
.accordion__item_content a {
  font-weight: 600;
  color: #f00;
  text-decoration: underline;
}
.accordion__item_content p {
  padding-bottom: 1rem;
  color: #000;
}
.accordion__item_content p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.accordion__item_content[role=tabpanel] {
  padding: 0;
}
.accordion__item {
  margin-bottom: 0.5rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  background-color: #fff;
}
.accordion__item_header {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.accordion__item_title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  line-height: normal;
  color: #000;
  text-align: center;
}
.accordion__item_title::after {
  content: "";
  display: block;
  width: 1.3313rem;
  height: 0.8087rem;
  margin-top: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.accordion [aria-expanded=true] {
  background-color: #d5d5d5;
}
.accordion [aria-expanded=true] .accordion__item_content {
  max-height: 500px;
}
.accordion [aria-expanded=true] .accordion__item_title::after {
  transform: rotate(180deg);
}

.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";
}

.clinical-study-acc .accordion {
  margin: auto;
}
.clinical-study-acc .accordion__item_content {
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  max-width: 1300px;
  height: 100%;
  max-height: 0;
  padding-top: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem;
  color: #000;
}
.clinical-study-acc .accordion__item_content a {
  font-weight: 600;
  color: #f00;
  text-decoration: underline;
}
.clinical-study-acc .accordion__item_content p {
  padding-bottom: 1rem;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #000;
  color: #210022;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .clinical-study-acc .accordion__item_content p {
    font-size: 16px;
  }
}
.clinical-study-acc .accordion__item_content p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.clinical-study-acc .accordion__item_content[role=tabpanel] {
  padding: 0;
}
.clinical-study-acc .accordion__item {
  max-width: 1300px;
  margin-bottom: 0.5rem;
  padding-right: 0;
  padding-left: 0;
  background-color: #fff;
  /* border-image: linear-gradient(0.25turn, rgb(200 221 228 / 0%), #C8DDE4, rgb(200 221 228 / 0%));
  border-image-slice: 1; */
}
.clinical-study-acc .accordion__item_header {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.clinical-study-acc .accordion__item_header::after {
  pointer-events: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 20ch;
  height: 1px; /* Ajusta la altura del borde difuminado */
  background: linear-gradient(to right, #559cb5 20%, #fff 80%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .clinical-study-acc .accordion__item_header::after {
    left: -70px;
    max-width: 58ch;
  }
}
@media screen and (min-width: 1024px) {
  .clinical-study-acc .accordion__item_header::after {
    max-width: 100ch;
  }
}
.clinical-study-acc .accordion__item_header:hover {
  background: radial-gradient(50% 50% at 50% 50%, #C8DDE4 0%, rgba(200, 221, 228, 0) 100%);
}
@media screen and (min-width: 768px) {
  .clinical-study-acc .accordion__item {
    margin: auto;
    margin-bottom: 0.5rem;
  }
}
.clinical-study-acc .accordion__item_title {
  cursor: pointer;
  display: flex;
  justify-content: normal;
  padding-left: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: #594059;
  text-align: left;
  letter-spacing: -1px;
}
.clinical-study-acc .accordion__item_title::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  background-image: url("/assets/images/plus-acc.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s linear;
}
.clinical-study-acc .accordion__item_title::after {
  display: none;
}
.clinical-study-acc [aria-expanded=true] .accordion__item_content {
  max-height: 500px;
}
.clinical-study-acc [aria-expanded=true] .accordion__item_header::after {
  display: none;
}
.clinical-study-acc [aria-expanded=true] .accordion__item_title::before {
  transform: rotate(180deg);
  background-image: url("/assets/images/minus-acc.svg");
}
.clinical-study-acc .accordion-group-toggle {
  display: none;
}

.taking-koselugo-acc .container-acc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  margin-inline: auto;
  padding: 40px 20px;
  border: 2px solid #d4e6ec;
  border-top: 0;
  border-radius: 0 0 24px;
}
.taking-koselugo-acc .container-acc p {
  font-size: 18px;
  line-height: 25.2px;
  text-align: center;
}
.taking-koselugo-acc .container-acc a {
  width: 100%;
  margin-inline: auto;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
}
.taking-koselugo-acc .accordion {
  max-width: 326px;
  margin: 0;
}
.taking-koselugo-acc .accordion__circle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 35px;
  height: 35px;
  margin: 0;
  margin-bottom: -8px;
  margin-left: 10px;
  padding: 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #210022;
  text-align: center;
  background-color: #e9e9e9;
  border: 1px solid #aaceda;
  border-radius: 50%;
}
.taking-koselugo-acc .accordion__item_title {
  cursor: pointer;
  padding: 0;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #210022;
  text-align: left;
  letter-spacing: -1px;
  background-color: transparent;
}
.taking-koselugo-acc .accordion__item_title::after {
  display: none;
}
.taking-koselugo-acc .accordion__item_title h6 {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #210022;
}
.taking-koselugo-acc .accordion__item_title span {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.taking-koselugo-acc .accordion__item {
  gap: 4px;
  max-width: 350px;
  margin-bottom: 0;
  margin-inline: auto;
  padding-block: 12px;
  padding-inline: 0;
  color: #210022;
}
.taking-koselugo-acc .accordion__item_header {
  gap: 12px;
  position: relative;
  display: flex;
  justify-content: space-around;
  margin-inline: 2px;
  padding-block: 6px;
  color: #210022;
  opacity: 0.5;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .taking-koselugo-acc .accordion__item_header > * {
    margin: calc(12px / 2);
  }
}
.taking-koselugo-acc .accordion__item:first-child {
  background-color: transparent;
  border: 2px solid #d4e6ec;
  border-bottom: none;
  border-radius: 24px 0 0;
}
.taking-koselugo-acc .accordion__item:not(:first-child) {
  background-color: transparent;
  border-right: 2px solid #d4e6ec;
  border-left: 2px solid #d4e6ec;
}
.taking-koselugo-acc .accordion__item[aria-expanded=true] {
  background-color: #eef6f8;
  border: 2px solid #eef6f8;
}
.taking-koselugo-acc .accordion__item[aria-expanded=true]:first-child {
  padding: 6px;
  background-color: #eef6f8;
  border: 3px solid #eef6f8;
  border-radius: 12px 12px 0 0;
}
.taking-koselugo-acc .accordion__item[aria-expanded=true] .accordion__item_content {
  max-height: 100%;
}
.taking-koselugo-acc .accordion__item[aria-expanded=true] .accordion__circle {
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  color: #fff;
  text-align: center;
  background-color: #559cb5;
  border: 1px solid #559cb5;
  border-radius: 50%;
}
.taking-koselugo-acc .accordion__item[aria-expanded=true] .accordion__item_header {
  opacity: 1;
}
.taking-koselugo-acc .accordion__item .content-acc {
  margin-inline: 0;
  padding: 30px 14px;
}
.taking-koselugo-acc .accordion__item .content-acc * {
  color: #594059;
}
.taking-koselugo-acc .accordion__item .content-acc p {
  max-width: 350px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 30.8px;
}
.taking-koselugo-acc .accordion__item .content-acc ul {
  margin-left: 25px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.2px;
}
.taking-koselugo-acc .accordion__item .content-acc ul li {
  height: 100%;
  min-height: 100%;
  font-family: inherit;
  font-size: 18px;
  line-height: 25.714px;
  list-style: outside;
}
.taking-koselugo-acc .accordion__item .content-acc ul li::marker {
  aspect-ratio: 1/1;
  padding-left: 10px;
  border-radius: 50%;
}
.taking-koselugo-acc .accordion__item .third-acc {
  padding-right: 16px;
}
.taking-koselugo-acc .accordion__item.second-accordion .accordion__item_header {
  margin-inline: 8px;
}
.taking-koselugo-acc .accordion__item.second-accordion .content-acc {
  padding-inline: 19px;
}
.taking-koselugo-acc .accordion__item.third-accordion .accordion__item_header {
  margin-inline: 8px;
}
.taking-koselugo-acc .accordion__item.third-accordion .content-acc {
  padding-inline: 18px;
}

.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 {
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  color: #fff;
  text-align: center;
  background-color: #594059;
}
.footer .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .text {
  margin-top: 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 19.6px;
  color: #fff;
  text-align: center;
}
.footer .text--visit_us {
  font-size: 17px;
  line-height: 25.714px;
}
.footer .text:nth-child(2) {
  max-width: 82ch;
}
@media screen and (min-width: 1024px) {
  .footer .text:nth-child(2) {
    max-width: 100%;
  }
}
.footer__socials {
  display: flex;
  -moz-column-gap: 9px;
       column-gap: 9px;
  align-items: flex-end;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
}
.footer__socials img {
  width: 27.409px;
  height: 27.409px;
}
.footer__audience.text {
  margin-bottom: 32px;
  font-family: "ITC Franklin Gothic Std Compressed", sans-serif;
  font-size: 18px;
  line-height: 25.714px;
}
.footer__branding .footer__logo img {
  width: 186px;
  height: 50.875px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (min-width: 1024px) {
  .footer__branding .footer__logo img {
    height: 64px;
    margin-top: 15px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.footer__text .trademark,
.footer__text .disclaimer,
.footer__text .copyright {
  max-width: 50ch;
  font-size: 14px;
  line-height: 19.6px;
}
@media screen and (min-width: 768px) {
  .footer__text .trademark,
  .footer__text .disclaimer,
  .footer__text .copyright {
    width: 100%;
  }
}
.footer__text .trademark {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .footer__text .trademark {
    max-width: 100%;
  }
}
.footer__text .copyright {
  max-width: 40ch;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .footer__text .copyright {
    max-width: 100%;
  }
}
.footer__links {
  margin-bottom: 32px;
}

.footer__nav_menu {
  display: flex;
  flex-wrap: wrap;
  row-gap: 7px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.footer__nav_menu_item {
  list-style: none;
}
.footer__nav_menu_item.cookie__notice_item a {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer__nav_menu_item.cookie__notice_item a::before {
  content: "";
  position: relative;
  top: -3px;
  display: block;
  width: 36px;
  height: 17px;
  background-image: url("/assets/images/footer/privacy-choices-icon.svg");
}
.footer__nav_menu_item_link {
  position: relative;
  display: flex;
  align-items: center;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 25.714px;
}
@media screen and (min-width: 768px) {
  .footer__nav_menu {
    width: 694px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__nav_menu {
    width: 100%;
  }
}
.footer__nav .footer__nav_menu_item_link--font {
  font-size: 17px;
}

.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;
}

.exit-modal {
  border-radius: 24px 0px;
  padding: 40px 20px;
  max-width: calc(100% - 40px);
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .exit-modal {
    padding: 40px 70px;
    max-width: calc(100% - 140px);
  }
}
@media screen and (min-width: 1024px) {
  .exit-modal {
    max-width: 846px;
  }
}
.exit-modal .modal__title {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-inline: auto;
  margin-block-end: 50px;
}
@media screen and (min-width: 768px) {
  .exit-modal .modal__title {
    font-size: 32px;
  }
}
.exit-modal .modal__title:empty {
  display: none;
}
.exit-modal .modal__content {
  color: #333;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-inline: auto;
  margin-block-end: 50px;
  max-width: 65ch;
}
@media screen and (max-width: 400px) {
  .exit-modal .modal__content {
    max-width: 28ch;
  }
}
.exit-modal .modal__content a {
  color: #870051;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
  line-height: inherit;
  text-decoration-line: underline;
}
.exit-modal .modal__actions {
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
}

.register-to-event-modal {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  background: #fff;
  border-radius: 8px;
}
.register-to-event-modal .modal__wrapper,
.register-to-event-modal .modal__content {
  height: 100%;
}
.register-to-event-modal .modal-header {
  margin-bottom: 24px;
}
.register-to-event-modal .modal-header__title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.4px;
}
.register-to-event-modal .modal-header__date {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.register-to-event-modal .modal-header__date * {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #5e5e5e;
}
.register-to-event-modal .modal-header__date *::after {
  height: 14px;
}
.register-to-event-modal .modal-header__date a {
  font-weight: 600;
}
.register-to-event-modal [data-modal-content] {
  height: calc(100% - 88px);
}
.register-to-event-modal .form {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.register-to-event-modal .form .form-steper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.register-to-event-modal .form .form__control:not(:last-of-type) {
  margin-bottom: 16px;
}
.register-to-event-modal .form .form-actions {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  align-items: flex-end;
}
.register-to-event-modal .form .form-actions__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.register-to-event-modal .form .form-actions .button--back,
.register-to-event-modal .form .form-actions .button--submit {
  display: none;
}
.register-to-event-modal .form .form-actions.submit .form-actions__wrapper {
  justify-content: space-between;
}
.register-to-event-modal .form .form-actions.submit .button--back,
.register-to-event-modal .form .form-actions.submit .button--submit {
  display: initial;
}
.register-to-event-modal .form .form-actions.submit .button--next {
  display: none;
}
.register-to-event-modal .form .button--tertiary {
  border: none;
}
.register-to-event-modal .form input[type=text],
.register-to-event-modal .form input[type=email],
.register-to-event-modal .form input[type=tel] {
  background-color: #eef6f8;
}
.register-to-event-modal .form input[type=text]::-moz-placeholder, .register-to-event-modal .form input[type=email]::-moz-placeholder, .register-to-event-modal .form input[type=tel]::-moz-placeholder {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  color: #939496;
  letter-spacing: 0.4px;
}
.register-to-event-modal .form input[type=text]::placeholder,
.register-to-event-modal .form input[type=email]::placeholder,
.register-to-event-modal .form input[type=tel]::placeholder {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  color: #939496;
  letter-spacing: 0.4px;
}
.register-to-event-modal .form .nice-select {
  background-color: #eef6f8;
  border: none;
}
.register-to-event-modal .form .nice-select * {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  color: #939496;
  letter-spacing: 0.4px;
}
.register-to-event-modal .form .form-steps {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  position: relative;
  overflow: hidden;
  display: flex;
}
.register-to-event-modal .form .form-steps::-webkit-scrollbar {
  display: none;
}
.register-to-event-modal .form .form-step {
  transform-origin: center center;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-top: 8px;
  padding-right: 8px;
  padding-left: 8px;
}
.register-to-event-modal .form .form-step__title {
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 142.86%;
}
.register-to-event-modal .form .form-step .form__control.checkboxes .form__control-legend {
  margin-right: 0;
  margin-bottom: 8px;
}
.register-to-event-modal .form .form-step .form__control.checkboxes .form__control-label {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
}
.register-to-event-modal .form .form-step .form__control.checkboxes .form__control-checkboxes.dietary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.register-to-event-modal .form .form-step .form__control.conditions-checkbox {
  margin-top: 32px;
}
.register-to-event-modal .form .form-step .form__control .select-label, .register-to-event-modal .form .form-step .form__control-label {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #272727;
}
.register-to-event-modal .form .form-step .form__control .form__control-input {
  padding: 8px;
}
.register-to-event-modal .form .form-step .form__control .form__control-select {
  padding: 8px;
}
.register-to-event-modal .form .form-step .form__control .legend-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 8px;
}
.register-to-event-modal .form .form-step .form__control .legend-container *:not(:last-of-type) {
  margin-right: 3px;
}
.register-to-event-modal .form .form-step .form__control .form__control-legend {
  margin-right: 3px;
}
.register-to-event-modal .form .form-step .form__control .form__control-legend,
.register-to-event-modal .form .form-step .form__control .label__hint {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  color: #272727;
}
.register-to-event-modal .form .form-step .form__control .label__hint {
  color: #A9A9A9;
}
.register-to-event-modal .form .form-step .form__control .form__control-radios {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.register-to-event-modal .form .form-step .form__control .form__control-radio {
  align-items: center;
  margin-bottom: 0;
}
.register-to-event-modal .form .form-step .form__control .form__control-radio:first-of-type {
  margin-right: 16px;
}
.register-to-event-modal .form .form-step .form__control .form__control-radio .form__control-label {
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 100%;
  color: #272727;
  letter-spacing: 0.4px;
}
.register-to-event-modal .form .form-step .form__control.conditions-checkbox .form__control-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.6px;
}
.register-to-event-modal .form .form-step .form__control.conditions-checkbox .form__control-label strong {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  color: #210022;
}
.register-to-event-modal .form .form-step .form__control.conditions-checkbox .form__control-label ul {
  margin-left: 16px;
}
.register-to-event-modal .form .form-step .form__control.conditions-checkbox .form__control-label li {
  margin-bottom: 12px;
  font-family: "Lato", sans-serif;
  font-size: 10px;
  line-height: 140%;
  list-style-type: disc;
}
.register-to-event-modal .form .form-step .form__control.conditions-checkbox .form__control-label span {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  color: #594059;
}
.register-to-event-modal .confirmation-view {
  position: relative;
  height: 100%;
}
.register-to-event-modal .confirmation-view * {
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
.register-to-event-modal .confirmation-view__header {
  position: absolute;
  top: 16px;
  right: 16px;
}
@media screen and (min-width: 1024px) {
  .register-to-event-modal .confirmation-view__header {
    top: 30px;
    right: 30px;
  }
}
.register-to-event-modal .confirmation-view__content {
  margin-bottom: 20px;
  padding-top: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 1024px) {
  .register-to-event-modal .confirmation-view__content {
    padding-top: 120px;
    padding-right: 104px;
    padding-left: 104px;
  }
}
.register-to-event-modal .confirmation-view__title {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  line-height: 112%;
  color: #C724B1;
}
.register-to-event-modal .confirmation-view__paragraph {
  margin-bottom: 20px;
  color: #393939;
}
.register-to-event-modal .confirmation-view__event-data {
  margin-bottom: 12px;
}
.register-to-event-modal .confirmation-view__event-data * {
  color: #594059;
}
.register-to-event-modal .confirmation-view__event-address {
  font-weight: 20px;
  line-height: 24px;
  color: #594059;
}
.register-to-event-modal .confirmation-view__event-address a {
  font-weight: 500;
  text-decoration: underline;
}
.register-to-event-modal .confirmation-view__event-date .event-date {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.register-to-event-modal .confirmation-view__event-date .event-date p {
  line-height: 100%;
}
.register-to-event-modal .confirmation-view__event-date .event-date .divider--vertical::after {
  height: 18px;
}
.register-to-event-modal .confirmation-view__event-title {
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.register-to-event-modal .confirmation-view__message {
  margin-bottom: 20px;
}
.register-to-event-modal .confirmation-view__question {
  font-size: 14px;
  line-height: 20px;
}
.register-to-event-modal .confirmation-view__back-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #870051;
  text-transform: uppercase;
  letter-spacing: 1.32px;
}
.register-to-event-modal .confirmation-view__back-button img {
  width: 18px;
  height: 18px;
  margin-left: 10px;
}
.register-to-event-modal .confirmation-view__footer {
  padding: 20px 10px;
  background: #F0F0F0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .register-to-event-modal .confirmation-view__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 38px 40px;
  }
}
.register-to-event-modal .confirmation-view__call-to-action-text {
  margin-bottom: 16px;
  font-weight: 600;
  line-height: normal;
  color: #333;
  text-align: center;
}
.register-to-event-modal .confirmation-view__call-to-action-text a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}
.register-to-event-modal .confirmation-view__footer-logo {
  width: 100%;
  max-width: 284.49px;
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
}
.register-to-event-modal .confirmation-view__footnote {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .register-to-event-modal .confirmation-view {
    min-height: 750px;
  }
}
@media screen and (min-width: 768px) {
  .register-to-event-modal {
    max-width: 85%;
  }
}
@media screen and (min-width: 1024px) {
  .register-to-event-modal {
    max-width: 920px;
    height: 800px;
    padding: 36px 104px;
  }
}
@media screen and (min-width: 1440px) {
  .register-to-event-modal {
    max-width: 920px;
    height: 880px;
    padding: 36px 104px;
  }
}

.card {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.card__wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 5px 10px 20px 0 rgba(13, 52, 66, 0.15);
}
.card__icon {
  width: 82px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card__title {
  margin-top: 12px;
  font-size: 24px;
  color: #594059;
}
.card__body {
  flex: 1;
  margin-top: 24px;
  font-size: 18px;
  line-height: 140%;
  color: #000;
}
.card .button {
  margin-top: 20px;
  padding: 0;
}
@media screen and (min-width: 390px) {
  .card {
    width: 100%;
    width: 350px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 834px) {
  .card {
    max-width: 694px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .card {
    max-width: 530px;
    margin: unset;
  }
}

.card--secondary .card__title {
  color: #210022;
}
.card--secondary .card__icon {
  width: 55px;
  height: 50px;
}

.home-hero {
  background-color: #fff;
}
.home-hero__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .home-hero__wrapper {
    gap: 19.41px;
    width: 710px;
    margin-bottom: 8px;
    padding: 28px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero__wrapper {
    flex-direction: row-reverse;
    gap: 75px;
    width: 100%;
    max-width: 1300px;
    padding: 38px 10px;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__wrapper {
    padding-inline: 0;
  }
}
.home-hero__image-container {
  position: relative;
}
.home-hero__image-container .circle--xs {
  width: 50px;
  height: 50px;
}
.home-hero__image-container .circle--sm {
  width: 75px;
  height: 75px;
}
.home-hero__image-container .circle--md {
  width: 135px;
  height: 135px;
}
.home-hero__image-container .circle--lg {
  width: 200px;
  height: 200px;
}
.home-hero__image-container .circle--xl {
  width: 310px;
  height: 310px;
}
.home-hero__image-container .circle--purple-0 {
  opacity: 0.8;
  background-color: #f8edf5;
}
.home-hero__image-container .circle--purple-1 {
  opacity: 0.8;
  background-color: #ebd0e5;
}
.home-hero__image-container .circle--purple-2 {
  opacity: 0.8;
  background-color: #d9a1cc;
}
.home-hero__image-container .circle--purple-3 {
  opacity: 0.9;
  background-color: #b24399;
}
.home-hero__image-container .image-wrapper {
  position: relative;
  overflow: hidden;
  width: 316px;
  height: 316px;
  margin-top: -80px;
  border-radius: 50%;
}
.home-hero__image-container .image-wrapper .inner-circle-1 {
  position: absolute;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .home-hero__image-container .image-wrapper .inner-circle-1 {
    top: -35px;
    right: 65px;
    width: 103.013px;
    height: 101.562px;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image-container .image-wrapper .inner-circle-1 {
    right: 90px;
    width: 136.694px;
    height: 134.768px;
  }
}
.home-hero__image-container .image-wrapper .inner-circle-2 {
  position: absolute;
  z-index: 2;
  top: 270px;
  right: -30px;
}
@media screen and (min-width: 768px) {
  .home-hero__image-container .image-wrapper .inner-circle-2 {
    top: 340px;
    right: 0;
    width: 153.077px;
    height: 150.921px;
    opacity: 0.8;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image-container .image-wrapper .inner-circle-2 {
    top: 87%;
    right: 10px;
    width: 203.127px;
    height: 200.266px;
  }
}
.home-hero__image-container .image-wrapper .inner-circle-3 {
  position: absolute;
  z-index: 2;
  top: 160px;
  right: -25px;
  width: 51.309px;
  height: 50.59px;
}
@media screen and (min-width: 768px) {
  .home-hero__image-container .image-wrapper .inner-circle-3 {
    top: 210px;
    right: -30px;
    width: 64.807px;
    height: 63.895px;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image-container .image-wrapper .inner-circle-3 {
    top: 280px;
    right: -35px;
    width: 85.997px;
    height: 84.785px;
  }
}
@media screen and (min-width: 768px) {
  .home-hero__image-container .image-wrapper {
    width: 400px;
    height: 400px;
    margin-top: 0;
    margin-left: 0;
    border-radius: 50%;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image-container .image-wrapper {
    width: 100%;
    max-width: 530px;
    height: 100%;
    max-height: 530px;
  }
}
.home-hero__image-container .outer-circle-1 {
  position: absolute;
  top: -80px;
  right: -75px;
  width: 187.3px;
  height: 187.3px;
}
@media screen and (min-width: 768px) {
  .home-hero__image-container .outer-circle-1 {
    top: 20px;
    right: -108px;
    width: 236.58px;
    height: 236.58px;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image-container .outer-circle-1 {
    right: -143px;
    width: 313.932px;
    height: 313.932px;
    opacity: 0.5;
  }
}
.home-hero__image-container .outer-circle-2 {
  position: absolute;
  top: 50px;
  right: -20px;
  width: 45.91px;
  height: 45.91px;
  opacity: 0.67;
}
@media screen and (min-width: 768px) {
  .home-hero__image-container .outer-circle-2 {
    top: 180px;
    right: -30px;
    width: 57.98px;
    height: 57.98px;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image-container .outer-circle-2 {
    top: 230px;
    right: -40px;
    width: 76.943px;
    height: 76.943px;
    opacity: 0.67;
  }
}
.home-hero__image-container .outer-circle-3 {
  position: absolute;
  top: 180px;
  left: -40px;
  width: 30.22px;
  height: 30.22px;
}
@media screen and (min-width: 768px) {
  .home-hero__image-container .outer-circle-3 {
    top: 335px;
    left: -21px;
    width: 38.18px;
    height: 38.18px;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image-container .outer-circle-3 {
    top: unset;
    bottom: 30px;
    left: -50px;
    width: 50.659px;
    height: 50.659px;
  }
}
.home-hero__image-container .outer-circle-4 {
  position: absolute;
  z-index: 2;
  top: 140px;
  left: -15px;
  width: 81.536px;
  height: 81.536px;
}
@media screen and (min-width: 768px) {
  .home-hero__image-container .outer-circle-4 {
    top: 285px;
    left: 0;
    width: 102.99px;
    height: 102.99px;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image-container .outer-circle-4 {
    top: unset;
    bottom: 10px;
    left: -15px;
    width: 136.66px;
    height: 136.66px;
  }
}
.home-hero__image-container .circle {
  z-index: 0;
  display: block;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .home-hero__image-container .circle {
    display: none;
  }
}
.home-hero__image-container .persistent {
  display: block;
}
.home-hero__image-container .image-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -25px;
  max-width: 15ch;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #594059;
  text-align: center;
}
@media screen and (min-width: 390px) {
  .home-hero__image-container .image-caption {
    right: -30px;
    bottom: -5px;
    max-width: 17ch;
    text-align: right;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  .home-hero__image-container .image-caption {
    right: -35px;
    bottom: 0;
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero__image-container .image-caption {
    right: -25px;
    bottom: -11px;
    font-size: 12px;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image-container .image-caption {
    right: -35px;
    bottom: 0;
  }
}
@media screen and (min-width: 390px) {
  .home-hero__image-container {
    margin-right: 25px;
  }
}
.home-hero__image {
  position: relative;
  z-index: 1;
  height: 316px;
  -o-object-position: 10%;
     object-position: 10%;
}
@media screen and (min-width: 768px) {
  .home-hero__image {
    transform: scale(1.2) translateX(15px) translateY(-15px);
    width: 399px;
    height: 399px;
    margin: auto;
    margin-left: 0;
    border-radius: 50%;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image {
    width: 530px;
    height: 530px;
  }
}
.home-hero__content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-self: start;
  margin: auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .home-hero__content-container {
    gap: 24px;
    max-width: 694px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero__content-container {
    flex: 1;
    width: 640px;
    padding: 0 12px;
  }
}
@media screen and (min-width: 1366px) {
  .home-hero__content-container {
    margin-left: 0;
  }
}
.home-hero__title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  color: #b24399;
}
@media screen and (min-width: 390px) {
  .home-hero__title {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .home-hero__title {
    max-width: 33ch;
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero__title {
    font-weight: 400;
  }
}
.home-hero__subtitle {
  margin: 10px 0 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 768px) {
  .home-hero__subtitle {
    max-width: 58ch;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero__subtitle {
    max-width: 51ch;
  }
}
.home-hero__description {
  margin-top: 24px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  line-height: 140%;
  color: #210022;
}
@media screen and (min-width: 768px) {
  .home-hero__description {
    margin-top: 36px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero__description {
    max-width: 59ch;
  }
}
.home-hero__buttons-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .home-hero__buttons-container {
    flex-direction: row;
    max-width: 700px;
  }
}
@media screen and (max-width: 1439px) {
  .home-hero .button {
    width: 100%;
  }
}

.bold {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .bold {
    font-size: 46px;
    line-height: 102%;
  }
}
@media screen and (min-width: 1440px) {
  .bold {
    font-size: 46px;
  }
}

/* This style sheet will be used for structures that are not components but can be reused */
.three__col_grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .three__col_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.drop-container {
  background: #fff;
  -webkit-backdrop-filter: blur(28.75px);
          backdrop-filter: blur(28.75px);
  border: 1px solid #559cb5;
  border-radius: 24px 0;
  /* Float */
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}

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

.one_source__box {
  max-width: 16.5rem;
  margin: auto;
  border-top-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
.one_source__box .one_source__image_logo {
  max-width: 292px;
}
.one_source__box a {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  line-height: normal;
  color: #870051;
}
.one_source__box p {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #594059;
}
.one_source__box p small {
  font-family: inherit;
  font-size: 15px;
}
.one_source__box .button {
  margin-top: 15px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #fff;
  text-align: left;
  letter-spacing: 1.2px;
}
.one_source__box .am {
  font-size: 15px;
}
@media screen and (min-width: 390px) {
  .one_source__box {
    max-width: 21.5rem;
  }
}
@media screen and (min-width: 776px) {
  .one_source__box {
    max-width: 43.375rem;
  }
}

.one_source__box.case-manager-image .one_source__box_wrapper {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 776px) {
  .one_source__box.case-manager-image .one_source__box_wrapper {
    flex-direction: row-reverse;
    align-items: center;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.case-manager-image .one_source__box_wrapper {
    justify-content: space-between;
    max-width: 1026px;
  }
}
.one_source__box.case-manager-image .one_source__col.case-manager-image {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding: 41px 10px 72px;
  background-image: url("/assets/images/one-source-box/case-manager-image-circle.png");
  background-repeat: no-repeat;
  background-position-x: -89px;
  background-position-y: -15px;
  background-size: cover;
}
@media screen and (min-width: 390px) {
  .one_source__box.case-manager-image .one_source__col.case-manager-image {
    padding-right: 25px;
    padding-left: 25px;
    background-position-x: -36px;
  }
}
@media screen and (min-width: 768px) {
  .one_source__box.case-manager-image .one_source__col.case-manager-image {
    background-position-x: -29px;
    background-position-y: -43px;
  }
}
@media screen and (min-width: 776px) {
  .one_source__box.case-manager-image .one_source__col.case-manager-image {
    width: 100%;
    height: 342px;
    margin-right: -281px;
    padding: 0;
    padding-top: 45px;
    padding-left: 45px;
    background-image: url("/assets/images/one-source-box/case-manager-image-circle-tablet.png");
    background-position-x: -36px;
    background-position-y: -15px;
    background-size: 482px;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.case-manager-image .one_source__col.case-manager-image {
    max-width: 738px;
    padding-top: 67px;
    background-image: url("/assets/images/one-source-box/case-manager-image-circle-desktop.png");
    background-position-x: -109px;
    background-position-y: 0;
    background-size: 843px;
  }
}
.one_source__box.case-manager-image .one_source__image {
  position: relative;
  z-index: 1;
  margin-top: -80px;
}
.one_source__box.case-manager-image .one_source__image img {
  border-bottom-right-radius: 24px;
}
@media screen and (min-width: 776px) {
  .one_source__box.case-manager-image .one_source__image {
    width: 339px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.case-manager-image .one_source__image {
    width: 339px;
  }
}
.one_source__box.case-manager-image .one_source__background {
  position: absolute;
  z-index: -1;
  top: -101px;
  left: 0;
  height: 463px;
}
.one_source__box.case-manager-image .one_source__background img {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .one_source__box.case-manager-image .one_source__background {
    top: -122px;
  }
}
@media screen and (min-width: 776px) {
  .one_source__box.case-manager-image .one_source__background {
    top: -121px;
    left: -218px;
    width: 251%;
    max-width: 217%;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.case-manager-image .one_source__background {
    top: -54px;
    left: -91px;
    max-width: 154%;
    height: 577px;
  }
}
.one_source__box.case-manager-image .one_source__text {
  margin-top: 2.0625rem;
  margin-bottom: 2rem;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #594059;
  text-align: left;
  letter-spacing: 0;
}
.one_source__box.case-manager-image .one_source__text br {
  display: none;
}
@media screen and (min-width: 776px) {
  .one_source__box.case-manager-image .one_source__text br {
    display: block;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.case-manager-image .one_source__text br {
    display: none;
  }
}
@media screen and (min-width: 776px) {
  .one_source__box.case-manager-image .one_source__text {
    max-width: 319px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.case-manager-image .one_source__text {
    max-width: 514px;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.case-manager-image {
    max-width: 1026px;
  }
}

.one_source__box.no-image {
  margin: auto;
  background: linear-gradient(rgb(255, 255, 255), rgb(229, 246, 254));
  /* rgb(255 255 255 / 67.9%) */
  /* background-image: url("/assets/images/one-source-box/one-source-image-circle-tablet.png");    
     background-repeat: no-repeat;
     background-position-x: -9px;
     background-size: 872px;
  */
}
.one_source__box.no-image .one_source__box_wrapper {
  padding: 10px;
}
@media screen and (min-width: 390px) {
  .one_source__box.no-image .one_source__box_wrapper {
    padding: 40px 20px;
  }
}
@media screen and (min-width: 776px) {
  .one_source__box.no-image .one_source__box_wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 120px;
  }
}
.one_source__box.no-image .one_source__text {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #594059;
  text-align: left;
  letter-spacing: 0;
}
.one_source__box.no-image .one_source__text p {
  margin: 0;
}
.one_source__box.no-image .one_source__text .no-tertiary {
  display: none;
}
@media screen and (min-width: 776px) {
  .one_source__box.no-image .one_source__text {
    width: 556px;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.no-image {
    max-width: 1026px;
    margin: auto;
    background-size: 1175px;
  }
}

.one_source__box.one-source-image {
  position: relative;
  background-image: url("/assets/images/one-source-box/one-source-image-circle.png");
  background-repeat: no-repeat;
  background-position-x: -112px;
  background-position-y: 132px;
  background-size: 41.6575rem;
}
.one_source__box.one-source-image .one_source__box_wrapper {
  padding: 46px 9px;
}
@media screen and (min-width: 390px) {
  .one_source__box.one-source-image .one_source__box_wrapper {
    padding: 46px 40px;
  }
}
@media screen and (min-width: 776px) {
  .one_source__box.one-source-image .one_source__box_wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    max-width: 43.375rem;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.one-source-image .one_source__box_wrapper {
    justify-content: center;
    max-width: 1026px;
  }
}
.one_source__box.one-source-image .one_source__col .one_source__image {
  width: 232.06px;
  height: 71.28px;
}
@media screen and (min-width: 776px) {
  .one_source__box.one-source-image .one_source__col .one_source__image {
    margin-left: 60px;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.one-source-image .one_source__col .one_source__image {
    margin-left: 136px;
  }
}
.one_source__box.one-source-image .one_source__col .one_source__title {
  padding-top: 4.3125rem;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  color: #594059;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (min-width: 776px) {
  .one_source__box.one-source-image .one_source__col .one_source__title {
    padding-top: 0;
  }
}
.one_source__box.one-source-image .one_source__col .one_source__text {
  margin-top: 1.25rem;
  margin-bottom: 15px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #594059;
  color: #210022;
  text-align: left;
  letter-spacing: 0;
}
.one_source__box.one-source-image .one_source__col br {
  display: none;
}
@media screen and (min-width: 776px) {
  .one_source__box.one-source-image .one_source__col br {
    display: block;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.one-source-image .one_source__col br {
    display: none;
  }
}
@media screen and (min-width: 342px) {
  .one_source__box.one-source-image {
    background-position-x: unset;
    background-position-y: 155px;
    background-size: unset;
  }
}
@media screen and (min-width: 390px) {
  .one_source__box.one-source-image {
    background-position-y: 129px;
    background-size: 400px;
  }
}
@media screen and (min-width: 776px) {
  .one_source__box.one-source-image {
    background-image: url("/assets/images/one-source-box/one-source-image-circle-tablet.png");
    background-position-x: -116px;
    background-position-y: -42px;
    background-size: 520px;
  }
}
@media screen and (min-width: 1150px) {
  .one_source__box.one-source-image {
    max-width: 1026px;
    background-position-x: 0;
    background-position-y: -56px;
    background-size: 690px;
  }
}

/* stylelint-disable */
.card-flip {
  overflow: hidden;
  max-width: 1160px;
  background-color: #fff;
  border-top-left-radius: 22px;
  border-bottom-right-radius: 22px;
}
.card-flip__wrapper {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1100px) {
  .card-flip__wrapper {
    flex-direction: row-reverse;
    background-color: #fff;
  }
}
.card-flip__front {
  overflow: hidden;
}
.card-flip__front-image {
  height: 100%;
  max-height: 598px;
}
.card-flip__front-icon {
  cursor: pointer;
  position: absolute;
  right: 100px;
  bottom: 55px;
  display: none;
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .card-flip__front-icon {
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .card-flip__front-icon {
    display: none;
  }
}
.card-flip__front-title {
  display: none;
  max-width: 305px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .card-flip__front-title {
    position: absolute;
    left: 100px;
    bottom: 50px;
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .card-flip__front-title {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .card-flip__front {
    flex: 1;
    max-height: 598px;
  }
}
@media screen and (min-width: 1100px) {
  .card-flip__front {
    flex: 1;
    max-height: 489px;
  }
}
.card-flip__back {
  display: block;
  padding: 20px;
  background-color: #fff;
}
.card-flip__back-title {
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  color: #b24399;
  margin-bottom: 7px;
}
@media screen and (min-width: 768px) {
  .card-flip__back-title {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .card-flip__back-title {
    display: block;
  }
}
.card-flip__back-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1100px) {
  .card-flip__back-body {
    justify-content: unset;
  }
}
.card-flip__back-body p strong {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif !important;
}
.card-flip__back strong {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #210022;
}
@media screen and (min-width: 768px) {
  .card-flip__back strong {
    color: #fff;
  }
}
@media screen and (min-width: 1100px) {
  .card-flip__back strong {
    color: #210022;
  }
}
.card-flip__back ul {
  margin-inline: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: #210022;
}
@media screen and (min-width: 768px) {
  .card-flip__back ul {
    font-weight: 500;
    color: #fff;
  }
}
@media screen and (min-width: 1100px) {
  .card-flip__back ul {
    font-weight: 400;
    color: #210022;
  }
}
.card-flip__back li span {
  position: relative;
  left: 8px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
.card-flip__back li::marker {
  font-size: 12px;
  color: #210022;
}
@media screen and (min-width: 768px) {
  .card-flip__back li::marker {
    color: #fff;
  }
}
@media screen and (min-width: 1100px) {
  .card-flip__back li::marker {
    color: #210022;
  }
}
@media screen and (min-width: 768px) {
  .card-flip__back {
    display: none;
    height: 598px;
    max-height: 598px;
    padding: 40px;
    background-color: #3b778c;
  }
}
@media screen and (min-width: 1100px) {
  .card-flip__back {
    display: block;
    max-width: 580px;
    max-height: 489px;
    padding: 40px;
    background-color: #fff;
  }
}

.event-card {
  cursor: pointer;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8.5px);
          backdrop-filter: blur(8.5px);
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  box-shadow: 8px 4px 21px 0 rgba(0, 0, 0, 0.15);
  transition: all 200ms ease-in-out;
}
.event-card:not(.event-card--expandable):hover {
  transform: scale(1.02);
}
.event-card--hidden {
  display: none;
}
.event-card ul li {
  list-style-type: none;
}
.event-card ul li::marker {
  display: none;
}
.event-card__wrapper {
  padding: 1rem;
  padding-right: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .event-card__wrapper {
    padding: 0.5794rem 4rem 0.5794rem 0.5794rem;
  }
}
@media screen and (min-width: 1024px) {
  .event-card__wrapper {
    padding: 1rem 8rem 1rem 1rem;
  }
}
.event-card__header {
  display: flex;
}
@media screen and (min-width: 768px) {
  .event-card__header {
    align-items: center;
  }
}
.event-card__expand-button {
  display: none;
  width: 44px;
  height: 44px;
}
.event-card__expand-button img {
  width: initial;
  max-width: initial;
  margin-right: auto;
  margin-left: auto;
  transition: 200ms transform ease-in-out;
}
.event-card__register-button .register-button__label {
  display: none;
}
.event-card__register-button .register-button__icon {
  display: none;
}
.event-card__date {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.8625rem;
  height: 4.6619rem;
  margin-right: 0.75rem;
  text-transform: uppercase;
  background-color: #559cb5;
}
@media screen and (min-width: 768px) {
  .event-card__date {
    width: 2.2923rem;
    height: 2.716rem;
  }
}
@media screen and (min-width: 1024px) {
  .event-card__date {
    width: 3.8625rem;
    height: 4.6619rem;
    margin-right: 1.25rem;
  }
}
.event-card__month {
  font-family: "Lato", sans-serif;
  font-size: 0.8999rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 768px) {
  .event-card__month {
    font-size: 0.5212rem;
    letter-spacing: 0.0434rem;
  }
}
@media screen and (min-width: 1024px) {
  .event-card__month {
    font-size: 0.8999rem;
    letter-spacing: 0.075rem;
  }
}
.event-card__day {
  font-family: "Roboto", sans-serif;
  font-size: 1.7997rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .event-card__day {
    font-size: 1.0417rem;
  }
}
@media screen and (min-width: 1024px) {
  .event-card__day {
    font-size: 1.7997rem;
  }
}
.event-card__next-event {
  display: none;
}
.event-card__title {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.375rem;
  color: #404040;
  letter-spacing: 0.025rem;
}
@media screen and (min-width: 768px) {
  .event-card__title {
    font-size: 0.6516rem;
    line-height: 0.7964rem;
    letter-spacing: 0.0145rem;
  }
}
@media screen and (min-width: 1024px) {
  .event-card__title {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.375rem;
    letter-spacing: 0.025rem;
  }
}
.event-card__place {
  display: flex;
  flex-flow: row wrap;
  max-width: 12.5rem;
  margin-top: 5px;
}
.event-card__place p {
  display: inline-flex;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 100%;
  color: #5e5e5e;
}
.event-card__place p::after {
  height: 0.75rem;
}
@media screen and (min-width: 768px) {
  .event-card__place p {
    font-size: 0.5068rem;
  }
  .event-card__place p::after {
    height: 0.5068rem;
  }
}
@media screen and (min-width: 1024px) {
  .event-card__place p {
    font-size: 0.875rem;
  }
  .event-card__place p::after {
    height: 0.875rem;
  }
}
.event-card__speaker {
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .event-card__speaker {
    margin-top: 0;
  }
}
.event-card[data-is-next=true] {
  position: relative;
}
.event-card[data-is-next=true] .event-card__next-event {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 0.875rem;
  color: #594059;
  text-transform: uppercase;
  letter-spacing: 0.0938rem;
}
@media screen and (min-width: 768px) {
  .event-card[data-is-next=true] .event-card__next-event {
    font-size: 0.4344rem;
    line-height: 0.5792rem;
    letter-spacing: 0.0543rem;
  }
}
@media screen and (min-width: 1024px) {
  .event-card[data-is-next=true] .event-card__next-event {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
    letter-spacing: 0.0938rem;
  }
}
.event-card[data-is-next=true] .event-card__actions {
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 100%;
}
.event-card[data-is-next=true] .event-card__actions .event-card__register-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.event-card[data-is-next=true] .event-card__actions .event-card__register-button .register-button__icon {
  display: initial;
  width: 1.5rem;
  max-width: initial;
  height: auto;
}
@media screen and (min-width: 768px) {
  .event-card[data-is-next=true] .event-card__actions .event-card__register-button .register-button__icon {
    width: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .event-card[data-is-next=true] .event-card__actions .event-card__register-button .register-button__icon {
    width: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .event-card[data-is-next=true] .event-card__actions .event-card__register-button {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .event-card[data-is-next=true] .event-card__actions .event-card__register-button {
    padding: 0.75rem 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .event-card[data-is-next=true] .event-card__actions {
    width: 1.7375rem;
  }
}
@media screen and (min-width: 1024px) {
  .event-card[data-is-next=true] .event-card__actions {
    width: 3rem;
  }
}
.event-card__expandable-panel {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 0;
  transition: 200ms height ease-in-out;
}
.event-card__expandable-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14.34px;
  opacity: 0.3;
  background: linear-gradient(180deg, #8C8C8C 0%, rgba(238, 238, 238, 0) 56.67%);
}
.event-card__expandable-panel * {
  font-family: "Lato", sans-serif;
}
.event-card__expandable-panel .expandable-panel-content {
  display: none;
}
@media screen and (min-width: 1024px) {
  .event-card__expandable-panel .expandable-panel-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 1.5rem 1rem;
  }
  .event-card__expandable-panel .expandable-panel-content .lg\:divider--vertical::after {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  .event-card__expandable-panel .expandable-panel-content .slide-content {
    width: -moz-max-content;
    width: max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: initial;
  }
  .event-card__expandable-panel .expandable-panel-content .slide-content .content__title {
    margin-bottom: 0.5rem;
    line-height: 100%;
    text-align: left;
  }
  .event-card__expandable-panel .expandable-panel-content .slide-content:not(:first-of-type) {
    flex: 1 0 auto;
  }
  .event-card__expandable-panel .expandable-panel-content .slide-content:first-of-type {
    flex: 1 1 auto;
  }
}
.event-card__expandable-panel .content__title {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  color: #A9A9A9;
  text-align: center;
}
.event-card__expandable-panel .content__paragraph {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: #4B4B4B;
}
@media screen and (min-width: 1024px) {
  .event-card__expandable-panel .content__paragraph {
    max-width: 29.375rem;
  }
}
.event-card__expandable-panel .venue__info {
  margin-top: 0.5rem;
  text-align: center;
}
.event-card__expandable-panel .venue__info a {
  margin-bottom: 0.125rem;
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .event-card__expandable-panel .venue__info {
    margin-top: 0;
    text-align: left;
  }
}
.event-card__expandable-panel .speaker-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .event-card__expandable-panel .speaker-info {
    padding-top: 0.25rem;
  }
}
.event-card__expandable-panel .speaker-photo {
  overflow: hidden;
  flex-shrink: 0;
  width: 3.4813rem;
  height: 3.4813rem;
  margin-right: 0.4781rem;
  border-radius: 50%;
}
.event-card__expandable-panel .speaker-details * {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 100%;
  color: #4B4B4B;
}
.event-card__expandable-panel .speaker-details .speaker-name {
  margin-bottom: 0.25rem;
}
.event-card--expandable {
  /* stylelint-disable-next-line no-descending-specificity */
  /* stylelint-disable-next-line no-descending-specificity */
}
@media screen and (min-width: 768px) {
  .event-card--expandable .event-card__title {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    line-height: 1.375rem;
    letter-spacing: 0.025rem;
  }
}
.event-card--expandable .event-card__date {
  width: 3.1187rem;
  height: 3.8rem;
}
.event-card--expandable .event-card__month {
  font-size: 0.7171rem;
  letter-spacing: 0.0597rem;
}
.event-card--expandable .event-card__day {
  font-size: 1.4343rem;
}
@media screen and (min-width: 768px) {
  .event-card--expandable .event-card__place {
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .event-card--expandable .event-card__place p {
    font-size: 0.875rem;
  }
  .event-card--expandable .event-card__place p::after {
    height: 0.875rem;
  }
}
.event-card--expandable .event-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-card--expandable .event-card__actions .event-card__expand-button {
  display: initial;
}
@media screen and (min-width: 768px) {
  .event-card--expandable .event-card__actions .event-card__expand-button {
    display: none;
  }
}
.event-card--expandable .event-card__wrapper {
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .event-card--expandable .event-card__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-top: 1.5375rem;
    padding-bottom: 1.5375rem;
  }
}
.event-card--expandable .event-card__register-button {
  min-width: 13.125rem;
  height: 2.875rem;
}
@media screen and (min-width: 768px) {
  .event-card--expandable .event-card__register-button {
    min-width: initial;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.event-card--expandable .event-card__header {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .event-card--expandable .event-card__header {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .event-card--expandable .expand-button--header {
    display: initial;
    margin-right: 0.625rem;
  }
}
.event-card--expandable .event-card__info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.event-card--expandable .register-button__label {
  display: initial;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.075rem;
}
.event-card--expandable .slide-content {
  width: 100%;
  max-width: 17.5rem;
  height: 7.8125rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .event-card--expandable .slide-content {
    max-width: 18.875rem;
  }
}
.event-card--expandable.expanded, .event-card--expandable:hover {
  height: auto;
  background: #eef6f8;
}
.event-card--expandable.expanded .event-card__expand-button img, .event-card--expandable:hover .event-card__expand-button img {
  transform: rotate(180deg);
}
.event-card--expandable.expanded .event-card__expandable-panel, .event-card--expandable:hover .event-card__expandable-panel {
  position: relative;
  height: 9.375rem;
  padding-top: 1rem;
}
.event-card--expandable.expanded .event-card__expandable-panel::before, .event-card--expandable:hover .event-card__expandable-panel::before {
  content: "";
}
@media screen and (min-width: 768px) {
  .event-card--expandable.expanded .event-card__expandable-panel, .event-card--expandable:hover .event-card__expandable-panel {
    height: 11.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .event-card--expandable {
    border-bottom: 1px solid #D0D0D0;
    border-radius: 0 !important;
    box-shadow: none;
  }
}
.event-card swiper-container::part(button-prev) {
  background-image: url("/assets/images/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: left center;
}
.event-card swiper-container::part(button-next) {
  background-image: url("/assets/images/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: right center;
}
.event-card swiper-container::part(bullet) {
  opacity: 1;
  background: #fff;
}
.event-card swiper-container::part(bullet-active) {
  background: #5C5C5C;
}
@media screen and (min-width: 1024px) {
  .event-card swiper-container {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .event-card {
    border-radius: 0.25rem;
  }
}

.stats {
  padding: 20px;
  background-color: #eef6f8;
  -webkit-backdrop-filter: blur(53px);
          backdrop-filter: blur(53px);
  border-radius: 24px 0;
}
.stats__title {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
.stats__header-text, .stats__footer-text {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 142%;
  color: #210022;
}
.stats__header-text strong, .stats__footer-text strong {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-weight: 600;
}
.stats__header-text {
  margin-bottom: 14px;
}
.stats__footer-text {
  padding: 16px;
  text-align: center;
}
.stats__flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px 20px;
}
.stats__flex div {
  flex: 1;
}
.stats__flex h2 {
  font-size: 64px;
  font-weight: 600;
  line-height: normal;
  color: #b24399;
  text-align: center;
  letter-spacing: -0.64px;
}
.stats__flex p {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 142%;
  color: #210022;
  text-align: center;
}
.stats__flex strong {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .stats__flex {
    flex-direction: row;
  }
}

.home-page .card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
}
.home-page .card-list .card__body {
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
@media screen and (min-width: 1024px) {
  .home-page .card-list .card--secondary .card__body {
    margin-top: 32px;
  }
}
.home-page .card-list div {
  flex: 1;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .home-page .card-list {
    flex-direction: row;
    justify-content: center;
    padding-bottom: 52px;
  }
}
@media screen and (min-width: 768px) {
  .home-page .form-section {
    margin-top: 0;
  }
}
.home-page .cards-container {
  position: relative;
  overflow: hidden;
}
.home-page .cards-container .card-list {
  position: relative;
  z-index: 1;
}
.home-page .cards-container .circle {
  --circle-size: 71.15px;
  position: absolute;
  display: block;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
}
.home-page .cards-container .circle--top-1 {
  top: 12px;
  left: -52px;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .home-page .cards-container .circle--top-1 {
    --circle-size: 83.066px;
    top: 60px;
    left: -90px;
  }
}
@media screen and (min-width: 1024px) {
  .home-page .cards-container .circle--top-1 {
    --circle-size: 61.262px;
    top: 15px;
    left: -61px;
    transform: rotate(-15deg);
    opacity: 0.8;
  }
}
@media screen and (min-width: 1366px) {
  .home-page .cards-container .circle--top-1 {
    left: calc((100vw - 1300px) / -2 - 36px);
  }
}
.home-page .cards-container .circle--top-2 {
  --circle-size: 67px;
  top: 100px;
  left: -27px;
  opacity: 0.67;
}
@media screen and (min-width: 768px) {
  .home-page .cards-container .circle--top-2 {
    --circle-size: 221.625px;
    top: 60px;
    left: -57px;
    opacity: 0.9;
  }
}
@media screen and (min-width: 1024px) {
  .home-page .cards-container .circle--top-2 {
    --circle-size: 154.448px;
    top: 80px;
    left: 0;
  }
}
.home-page .cards-container .circle--top-3 {
  --circle-size: 0;
}
@media screen and (min-width: 768px) {
  .home-page .cards-container .circle--top-3 {
    --circle-size: 61.262px;
    top: 230px;
    left: -115px;
    transform: rotate(-15deg);
    opacity: 0.8;
  }
}
@media screen and (min-width: 1024px) {
  .home-page .cards-container .circle--top-3 {
    --circle-size: 83.066px;
    top: 185px;
    left: -30px;
    transform: unset;
    opacity: 0.5;
  }
}
.home-page .cards-container .circle--bottom {
  --circle-size: 162px;
  right: -50px;
  bottom: 0;
  opacity: 0.9;
}
@media screen and (min-width: 768px) {
  .home-page .cards-container .circle--bottom {
    --circle-size: 0;
  }
}
@media screen and (min-width: 1024px) {
  .home-page .cards-container .circle--bottom {
    --circle-size: 189.33px;
    top: calc(100% - 35px);
    right: 0;
    bottom: unset;
    opacity: 0.67;
  }
}

.taking-koselugo--text {
  line-height: normal;
}
.taking-koselugo .hero__image-container::after {
  height: 4px;
}
.taking-koselugo__subheading {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__subheading {
    font-size: 32px;
  }
}
.taking-koselugo__how-to {
  margin-block: 48px;
}
.taking-koselugo__how-to .taking-koselugo__subheading {
  margin-bottom: 60px;
}
.taking-koselugo__how-to .taking-koselugo__how-to--sub-subheading {
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}
.taking-koselugo__how-to--hero {
  position: relative;
  max-width: 438px;
  height: 362.719px;
  margin-inline: auto;
}
.taking-koselugo__how-to--hero-title {
  position: absolute;
  top: 23px;
  left: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 252.393px;
  height: 246.52px;
  font-size: 27.375px;
  font-weight: 600;
  line-height: normal;
  color: #fff;
  text-align: center;
  background-color: rgba(178, 67, 153, 0.9);
  border-radius: 100vw;
}
.taking-koselugo__how-to--hero-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -27px;
  width: 94.955px;
  height: 94.955px;
  background-color: rgba(235, 208, 229, 0.5);
  border-radius: 100vw;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--hero-title::before {
    top: -48px;
    width: 169.099px;
    height: 169.099px;
  }
}
.taking-koselugo__how-to--hero-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 20.956px;
  height: 20.956px;
  background-color: rgba(197, 114, 179, 0.5);
  border-radius: 100vw;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--hero-title::after {
    width: 37.319px;
    height: 37.319px;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--hero-title {
    top: 48px;
    left: -60px;
    width: 449.467px;
    height: 439.007px;
    font-size: 48.75px;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--hero-title {
    top: 39px;
    width: 368.793px;
    height: 360.211px;
    font-size: 40px;
  }
}
.taking-koselugo__how-to--hero-image {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -90px;
  width: 337.746px;
  height: 337.746px;
}
.taking-koselugo__how-to--hero-image::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 70px;
  width: 38.121px;
  height: 38.121px;
  background-color: rgba(235, 208, 229, 0.8);
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--hero-image::before {
    top: 25px;
    right: 120px;
    width: 38.121px;
    height: 38.121px;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--hero-image::before {
    right: 90px;
  }
}
.taking-koselugo__how-to--hero-image__img {
  width: 337.746px;
  height: 337.746px;
  border-radius: 9999px;
}
@media screen and (max-width: 400px) {
  .taking-koselugo__how-to--hero-image__img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left;
       object-position: left;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--hero-image__img {
    width: 601.465px;
    height: 601.465px;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--hero-image__img {
    width: 493.51px;
    height: 493.51px;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--hero-image {
    right: -70px;
    width: 601.465px;
    height: 601.465px;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--hero-image {
    right: 0;
    width: 493.51px;
    height: 493.51px;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--hero {
    max-width: 780px;
    height: 645.938px;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--hero {
    width: 50%;
    min-width: 640px;
    height: 500px;
  }
}
.taking-koselugo__how-to--instructions {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.taking-koselugo__how-to--instructions__card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-block: 12px;
}
.taking-koselugo__how-to--instructions__card--icon.medication {
  aspect-ratio: 1;
  width: 80px;
}
.taking-koselugo__how-to--instructions__card--icon.utensils {
  width: 50.279px;
  height: 71.439px;
  margin: 9px 14px;
}
.taking-koselugo__how-to--instructions__card--icon.glass {
  align-self: flex-start;
  width: 80.001px;
  height: 108.915px;
}
.taking-koselugo__how-to--instructions__card--text {
  max-width: 54ch;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-weight: 500;
  line-height: 140%;
}
.taking-koselugo__how-to--instructions__card--text.glass-text {
  align-self: flex-start;
}
.taking-koselugo__how-to--instructions__card--text .lighter {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 400px) {
  .taking-koselugo__how-to--instructions__card--text .lighter {
    display: block;
    max-width: 25ch;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--instructions__card--text .lighter {
    display: block;
    max-width: 45ch;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--instructions__card--text {
    max-width: 45ch;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--instructions__card {
    gap: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--instructions__card {
    gap: 40px;
  }
}
.taking-koselugo__how-to--main {
  position: relative;
  padding-bottom: 32px;
}
.taking-koselugo__how-to--main::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4px;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(207, 240, 251, 0) 0%, #cff0fb 51.56%, rgba(207, 240, 251, 0) 100%);
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--main {
    display: flex;
  }
}
.taking-koselugo__how-to--tictac {
  padding-top: 32px;
}
.taking-koselugo__how-to--tictac--comparison .pill-card-container {
  display: flex;
  flex-grow: 1;
  gap: 29px;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .taking-koselugo__how-to--tictac--comparison .pill-card-container {
    padding-block-end: 32px;
    border-bottom: 1px solid #b24399;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--tictac--comparison .pill-card-container {
    margin: 0;
    padding: 0;
    border-right: 1px solid #b24399;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--tictac--comparison .pill-card-container {
    max-width: 366px;
  }
}
.taking-koselugo__how-to--tictac--comparison .pill-card p {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  line-height: normal;
  text-align: center;
}
.taking-koselugo__how-to--tictac--comparison .pill-card img {
  margin-inline: auto;
}
.taking-koselugo__how-to--tictac--comparison .pill-card .tictac {
  width: 43.585px;
  height: 54.993px;
  margin-bottom: 20px;
}
.taking-koselugo__how-to--tictac--comparison .pill-card .koselugo-pill {
  transform: rotate(6.5deg);
  width: 49.211px;
  height: 73.645px;
  margin-bottom: 20px;
}
.taking-koselugo__how-to--tictac--comparison .dashed-border {
  position: relative;
}
.taking-koselugo__how-to--tictac--comparison .dashed-border::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 35%;
  left: -18px;
  width: 94.597px;
  height: 100px;
  background-image: url("/assets/images/how-to/dashed-border-mobile.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--tictac--comparison .dashed-border::before {
    left: 55px;
    width: 107.189px;
    height: 4px;
    background-image: url("/assets/images/how-to/dashed-border-tablet.svg");
  }
}
.taking-koselugo__how-to--tictac--comparison .heading-container .taking-koselugo__how-to--sub-subheading {
  margin-bottom: 15px;
}
.taking-koselugo__how-to--tictac--comparison .heading-container .taking-koselugo__how-to--text {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  line-height: normal;
}
@media screen and (max-width: 700px) {
  .taking-koselugo__how-to--tictac--comparison .heading-container .taking-koselugo__how-to--text {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--tictac--comparison .heading-container {
    max-width: 308px;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__how-to--tictac--comparison .heading-container {
    max-width: unset;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__how-to--tictac--comparison {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
  }
}
.taking-koselugo__how-to--tictac--info .footnotes {
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
.taking-koselugo__how-to--tictac--info ul {
  margin-block-end: 42px;
  padding-left: 1.5rem;
}
.taking-koselugo__how-to--tictac--info ul * {
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
.taking-koselugo__how-to--tictac--info ul li {
  max-width: 130ch;
}
.taking-koselugo__how-to--tictac--info ul li br {
  display: none;
}
.taking-koselugo__how-to--tictac--info ul li strong {
  font-weight: 500;
}
@media screen and (max-width: 390px) {
  .taking-koselugo__how-to--tictac--info ul li {
    max-width: 373px;
  }
  .taking-koselugo__how-to--tictac--info ul li:last-child {
    max-width: 31ch;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .taking-koselugo__how-to--tictac--info ul li {
    max-width: 690px;
  }
  .taking-koselugo__how-to--tictac--info ul li br {
    display: block;
  }
}
.taking-koselugo__tips {
  background-color: #eef6f8;
}
.taking-koselugo__tips i {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-style: italic;
}
.taking-koselugo__tips-flex {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.taking-koselugo__tips-flex-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}
.taking-koselugo__tips-flex-item ::marker {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__tips-flex-item {
    padding: 0 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__tips-flex {
    flex-direction: row;
    gap: 28px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__tips-flex {
    gap: 25px;
    margin-bottom: 42px;
  }
}
.taking-koselugo__tips-title {
  margin-top: -100px;
  margin-bottom: -12px;
  padding-top: 160px;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #b24399;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__tips-title {
    margin-bottom: 20px;
    font-size: 32px;
  }
}
.taking-koselugo__tips-subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__tips-subtitle {
    font-size: 24px;
  }
}
.taking-koselugo__tips-list {
  margin-left: 24px;
}
.taking-koselugo__tips-item {
  margin-top: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: #210022;
}
.taking-koselugo__tips-paragraph {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #210022;
}
.taking-koselugo__tips-paragraph--secondary {
  font-weight: 500;
  color: #594059;
}
.taking-koselugo__tips-link {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: #870051;
}
.taking-koselugo__tips-link--secondary {
  font-style: italic;
}
.taking-koselugo__tips-card {
  display: flex;
  gap: 20px;
  align-items: center;
}
.taking-koselugo__tips-card-icon {
  width: 61px;
  height: 61px;
}
.taking-koselugo__tips-slogan {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.taking-koselugo__tips-slogan-text {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: normal;
  color: #559cb5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__tips-slogan-text {
    min-width: 592px;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__tips-slogan-text {
    max-width: 592px;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__tips-slogan {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo__tips .blue-dots-horizontal {
    display: none;
  }
}
.taking-koselugo__tips .blue-dots-vertical {
  display: none;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__tips .blue-dots-vertical {
    display: block;
    align-self: center;
    width: 7px;
    height: 170px;
  }
}
.taking-koselugo__tips .purple-dots {
  width: 107px;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__tips .white-subtract-mobile {
    display: none;
  }
}
.taking-koselugo__tips .white-subtract-tablet {
  display: none;
}
@media screen and (min-width: 768px) {
  .taking-koselugo__tips .white-subtract-tablet {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__tips .white-subtract-tablet {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo__tips {
    background-color: #fff;
  }
}
.taking-koselugo .one_source__text a {
  font-size: 18px;
  font-weight: 500;
}
.taking-koselugo .one_source__box {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .taking-koselugo .one_source__box.case-manager-image .one_source__col.case-manager-image {
    background-position-x: -20px;
  }
}
@media screen and (min-width: 768px) {
  .taking-koselugo .hero__image-container::after {
    height: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .taking-koselugo .hero__image-container::after {
    content: "";
  }
}

.tests-needed {
  padding-block: 12px;
}
.tests-needed .header h1 {
  padding-bottom: 20px;
}
@media screen and (min-width: 768) {
  .tests-needed .header h1 {
    font-size: 18px;
  }
}
.tests-needed .header p {
  padding-bottom: 32px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  color: #210022;
}

.mobile-component {
  display: none;
}

@media (max-width: 768px) {
  .desktop-component {
    display: none;
  }
  .mobile-component {
    display: block;
  }
}
.additional-info {
  max-width: 600px;
  margin-inline: auto;
  padding-block: 12px;
}
.additional-info .kit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-left: 25px;
  padding-inline: 20px;
}
.additional-info .kit .kit-bg {
  flex-shrink: 0;
  width: 330px;
  height: 330px;
  margin-bottom: 5px;
  margin-left: -75px;
  background: #f8edf5;
  border-radius: 345px;
}
.additional-info .kit img {
  position: absolute;
  flex-shrink: 0;
  width: 325px;
  height: 355px;
}
@media screen and (min-width: 768px) {
  .additional-info .kit {
    width: 337px;
  }
  .additional-info .kit .kit-bg {
    width: 250px;
    height: 250px;
  }
  .additional-info .kit img {
    width: 255px;
    height: 300px;
  }
}
.additional-info .content {
  padding-top: 20px;
  padding-bottom: 48px;
}
.additional-info .content h2 {
  font-family: "ITC Franklin Gothic Std Compressed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.additional-info .content p {
  padding-block: 20px;
  padding-inline: 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #210022;
  text-align: start;
}
.additional-info .content .button {
  width: 100%;
  margin: 0;
  font-size: 16px;
  color: #870051;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .additional-info .content {
    max-width: 694px;
  }
  .additional-info .content h2 {
    font-size: 24px;
  }
  .additional-info .content .button {
    width: 155px;
  }
}
@media screen and (min-width: 1440px) {
  .additional-info .content p {
    width: 750px;
  }
}
.additional-info .educational-events {
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
}
.additional-info .educational-events .image-container {
  position: relative;
  display: inline-block;
  width: 390px;
  margin-left: -20px;
}
.additional-info .educational-events .image-container img {
  position: relative;
  z-index: 1;
  right: 0;
  display: block;
  aspect-ratio: 1/1;
  width: 305px;
  margin-left: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .additional-info .educational-events .image-container img {
    width: 243px;
  }
}
@media screen and (min-width: 1024px) {
  .additional-info .educational-events .image-container img {
    width: 305px;
  }
}
.additional-info .educational-events .image-container .large {
  position: absolute;
  top: -25px;
  left: 1px;
  aspect-ratio: 1/1;
  width: 214.399px;
  background-color: #d9a1cc;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .additional-info .educational-events .image-container .large {
    width: 171.52px;
  }
}
@media screen and (min-width: 1024px) {
  .additional-info .educational-events .image-container .large {
    width: 214.399px;
  }
}
.additional-info .educational-events .image-container .medium {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 40px;
  aspect-ratio: 1/1;
  width: 90px;
  background-color: #f8edf5;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .additional-info .educational-events .image-container .medium {
    bottom: 30px;
    width: 71px;
  }
}
@media screen and (min-width: 1024px) {
  .additional-info .educational-events .image-container .medium {
    bottom: 40px;
    width: 90px;
  }
}
.additional-info .educational-events .image-container .caption {
  position: absolute;
  bottom: 10px;
  left: 20%;
  transform: translateX(-50%);
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 13px;
  color: #594059;
}
@media screen and (min-width: 768px) {
  .additional-info .educational-events .image-container {
    width: 313px;
    margin-right: 20px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .additional-info .educational-events .image-container {
    width: 390px;
    margin-left: 75px;
  }
}
@media screen and (min-width: 768px) {
  .additional-info .reverse {
    flex-direction: row-reverse !important;
  }
}
.additional-info .ai-container {
  width: 100%;
  border: none;
}
.additional-info .ai-container h2 {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .additional-info .ai-container h2 {
    font-size: 24px;
  }
}
.additional-info .ai-container p {
  font-size: 18px;
}
.additional-info .ai-container .button {
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .additional-info .ai-container .button {
    width: 180px;
  }
}
@media screen and (min-width: 768px) {
  .additional-info .ai-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: auto;
  }
}
.additional-info .ai-container.reverse .content .button {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .additional-info .ai-container.reverse .content .button {
    width: 180px;
  }
}
@media screen and (min-width: 768px) {
  .additional-info .ai-container.reverse .content {
    max-width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .additional-info .ai-container.reverse .content {
    max-width: 65%;
  }
}
@media screen and (min-width: 768px) {
  .additional-info {
    max-width: 100%;
  }
}

/* stylelint-disable */
.about__intro {
  padding-bottom: 48px;
}
.about-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding-block: 48px;
}
.about-section:last-of-type {
  padding-bottom: 0;
}
.about-section__text h3 {
  margin-bottom: 20px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .about-section__text h3 {
    font-size: 32px;
    line-height: normal;
  }
}
.about-section__text strong {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #594059;
}
.about-section__text strong sup {
  top: 0;
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  .about-section__text strong {
    font-size: 24px;
    line-height: normal;
  }
}
.about-section__text p {
  margin-top: 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  color: #210022;
}
.about-section__text p sup {
  top: 0;
  font-size: inherit;
}
.about-section__text p sup.cross {
  top: -0.4em;
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .about-section__text {
    max-width: 860px;
  }
}
.about-section__image {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.about-section__image-capsules {
  width: 237.31px;
  height: 232.764px;
  margin: auto;
}
.about-section__image-stat {
  width: 108.963px;
  height: 108.963px;
  margin: 12px auto 0;
}
@media screen and (min-width: 768px) {
  .about-section__image-stat {
    margin-top: 0;
  }
}
.about-section__image-caption {
  max-width: 334.445px;
  padding: 0;
  color: #b24399;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .about-section__image {
    flex: 0 0 380px;
    padding: 0 20px;
  }
}
.about-section__call-to-action {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-block: 20px;
  border-style: solid;
  border-width: 1px;
  -o-border-image: linear-gradient(to right, #559cb5 0%, rgba(255, 255, 255, 0) 50%) 0 0 100% 0;
     border-image: linear-gradient(to right, #559cb5 0%, rgba(255, 255, 255, 0) 50%) 0 0 100% 0;
}
.about-section__call-to-action-button {
  cursor: pointer;
  display: flex;
  gap: 8px;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
.about-section__call-to-action-button:hover {
  background: radial-gradient(50% 39.47% at 12.27% 50%, #c8dde4 0%, rgba(200, 221, 228, 0) 150%);
}
.about-section__call-to-action-button img {
  width: 20px;
  height: 20px;
}
.about-section__call-to-action-text {
  margin-top: 16px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #210022;
}
@media screen and (min-width: 1400px) {
  .about-section__call-to-action {
    display: block;
    max-width: 1260px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1024px) {
  .about-section {
    flex-flow: row;
    justify-content: space-between;
  }
}
.about-card {
  padding: 44px 20px;
  border-radius: 24px 0px;
  border: 1px solid #559cb5;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 5px 9px 20.9px 0px rgba(13, 52, 66, 0.15);
  -webkit-backdrop-filter: blur(28.75px);
          backdrop-filter: blur(28.75px);
  display: flex;
  flex-direction: row;
  max-width: 1300px;
  margin: auto;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .about-card {
    padding: 60px 70px 0 0;
  }
}
@media screen and (min-width: 1440px) {
  .about-card {
    padding-right: 110px;
    padding-left: 60px;
    gap: 75px;
  }
}
.about-card__left {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-card__left {
    display: flex;
  }
}
.about-card__left-image {
  width: 1050px;
  min-height: 1050px;
  -o-object-position: left;
     object-position: left;
}
@media screen and (min-width: 1440px) {
  .about-card__left-image {
    min-height: unset;
    width: 294px;
    height: 600px;
    padding-bottom: 60px;
    transform: scale(1.1);
  }
}
.about-card__right-header {
  display: flex;
  flex-direction: row;
}
.about-card__right-header-image {
  display: block;
  width: 155px;
  transform: scale(1.35);
  -o-object-position: bottom;
     object-position: bottom;
  margin-top: 20px;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .about-card__right-header-image {
    transform: scale(1);
    display: none;
  }
}
.about-card__right-header-title {
  color: #594059;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.about-card__right-header-title .no-wrap {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .about-card__right-header-title {
    font-size: 32px;
  }
}
.about-card__right-paragraph {
  color: #210022;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-top: 20px;
}
.about-card__right .stats {
  margin-top: -60px;
  padding: 20px;
}
@media screen and (min-width: 375px) {
  .about-card__right .stats {
    margin-top: -140px;
  }
}
@media screen and (min-width: 440px) {
  .about-card__right .stats {
    margin-top: -175px;
  }
}
@media screen and (min-width: 550px) {
  .about-card__right .stats {
    margin-top: -225px;
  }
}
@media screen and (min-width: 660px) {
  .about-card__right .stats {
    margin-top: -250px;
  }
}
@media screen and (min-width: 768px) {
  .about-card__right .stats {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .about-card__right .stats {
    padding: 20px 59px;
  }
}
@media screen and (min-width: 768px) {
  .about-card__right .stats__flex, .about-card__right .stats__footer-text {
    padding: 16px 64px 16px 0;
  }
}
.about-card__right .stats__flex {
  align-items: center;
}
@media screen and (min-width: 1440px) {
  .about-card__right .stats__flex {
    padding: 16px 40px;
  }
}
.about-card__right .stats__flex p {
  margin-top: -12px;
}
.about-card__right .stats__flex div {
  flex: 1;
}
.about-card__right .stats .horizontal-divider {
  margin-inline: auto;
  width: 96px;
}
@media screen and (min-width: 1024px) {
  .about-card__right .stats .horizontal-divider {
    display: none;
  }
}
.about-card__right .stats .vertical-divider {
  display: none;
  width: 3px;
  height: 96px;
}
@media screen and (min-width: 1024px) {
  .about-card__right .stats .vertical-divider {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .about-card__right .stats h2 {
    text-align: start;
  }
}
@media screen and (min-width: 768px) {
  .about-card__right .stats p {
    text-align: start;
  }
}
.about-card__footnotes {
  padding: 30px 0 40px;
  color: #594059;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 1440px) {
  .about-card__footnotes {
    padding: 20px 0 40px;
    max-width: 1300px;
    margin: auto;
  }
}
.about-card--blue {
  background-color: #eef6f8;
  padding: 44px 20px;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  border: none;
  box-shadow: none;
  border-radius: 0px;
}
@media screen and (min-width: 768px) {
  .about-card--blue {
    border-radius: 24px 0px;
    padding: 48px 70px 32px;
    background-color: #fff;
  }
}
@media screen and (min-width: 1100px) {
  .about-card--blue {
    background-color: #eef6f8;
  }
}
.about-card--blue__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card--blue__header strong {
  color: #594059;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .about-card--blue__header strong {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .about-card--blue__header svg {
    display: none;
  }
}
.about-card--blue__header-title {
  color: #b24399;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .about-card--blue__header-title {
    font-size: 32px;
  }
}
.about-card--blue__header-paragraph {
  color: #210022;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.about-card--blue__header-flex {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1100px) {
  .about-card--blue__header-flex {
    flex-direction: row;
  }
}
.about-card--blue__header-flex p {
  flex: 1;
}
.about-card--blue__header-flex .horizontal-divider {
  margin-inline: auto;
  height: 3px;
  width: 58px;
}
@media screen and (min-width: 768px) {
  .about-card--blue__header-flex .horizontal-divider {
    display: none;
  }
}
.about-card--blue__header-flex .vertical-divider {
  display: none;
  width: 3px;
  height: 56px;
}
@media screen and (min-width: 1100px) {
  .about-card--blue__header-flex .vertical-divider {
    display: block;
  }
}
.about-card--blue__footer {
  margin-top: -20px;
  margin-bottom: -20px;
}
@media screen and (min-width: 1100px) {
  .about-card--blue__footer {
    margin-bottom: 0px;
  }
}
.about-card--blue__footer-list-item {
  display: flex;
}
.about-card--blue__footer-list-item p {
  color: #594059;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.about-card--blue__footer-list-item p .inline-sup {
  font-size: 8px;
}
.about-card--blue__footer-list-item sup {
  vertical-align: -2px;
  font-size: 8px;
}
.about-card--blue__caption {
  margin-top: -20px;
  color: #000;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .about-card--blue__caption {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .about-card--blue__caption {
    display: block;
  }
}
.about-card--blue__divider {
  height: 8px;
  background: linear-gradient(90deg, rgba(207, 240, 251, 0) 0%, #6faec3 51.56%, rgba(207, 240, 251, 0) 100%);
  opacity: 0.6;
}
.about-card--blue .stats {
  padding: 0px;
  background-color: #eef6f8;
}
.about-card--blue .stats__flex {
  padding: 0px;
  gap: 40px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .about-card--blue .stats__flex {
    gap: 15px;
  }
}
.about-card--blue .stats__flex p {
  text-align: start;
}
.about-card--blue .stats__flex .horizontal-divider {
  opacity: 1;
  width: 136px;
  height: 3px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about-card--blue .stats__flex .horizontal-divider {
    opacity: 0;
  }
}
@media screen and (min-width: 1024px) {
  .about-card--blue .stats__flex .horizontal-divider {
    display: none;
  }
}
.about-card--blue .stats__flex .vertical-divider {
  display: none;
  width: 3px;
  height: 136px;
}
@media screen and (min-width: 1024px) {
  .about-card--blue .stats__flex .vertical-divider {
    display: block;
    align-self: center;
  }
}
@media screen and (min-width: 768px) {
  .about-card--blue .stats {
    background-color: #fff;
  }
}
@media screen and (min-width: 1100px) {
  .about-card--blue .stats {
    background-color: #eef6f8;
  }
}
.about-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}
.about-box__title {
  color: #210022;
  text-align: center;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  max-width: 900px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .about-box__title {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .about-box__title {
    display: block;
  }
}
.about-box__call-to-action {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .about-box__call-to-action {
    padding: 20px 0;
  }
}
.about-box__call-to-action-title {
  color: #210022;
  text-align: center;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.about-box__call-to-action .button {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .about-box__call-to-action .button {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.about-koselugo .hero__text {
  max-width: 100%;
}
.about-koselugo .borderless {
  border-width: 0;
  -o-border-image: none;
     border-image: none;
}
.about-koselugo .about-card__container {
  position: relative;
  margin-inline: auto;
  max-width: 1300px;
}
@media screen and (min-width: 1350px) {
  .about-koselugo .about-card__container {
    margin-top: 25px;
  }
}
.about-koselugo .circle {
  position: absolute;
  z-index: -99;
  display: none;
}
@media screen and (min-width: 768px) {
  .about-koselugo .circle {
    display: block;
  }
}
.about-koselugo .circle-lg {
  width: 220px;
  height: 220px;
  top: 50px;
  right: -50px;
}
@media screen and (min-width: 768px) and (max-width: 1349px) {
  .about-koselugo .circle-lg {
    width: 150px;
    height: 150px;
    top: 50px;
    right: -60px;
  }
}
@media screen and (min-width: 1350px) {
  .about-koselugo .circle-lg {
    top: -85px;
    right: -120px;
  }
}
.about-koselugo .circle-md {
  width: 190px;
  height: 190px;
  top: 100px;
  left: 0px;
}
@media screen and (min-width: 768px) and (max-width: 1349px) {
  .about-koselugo .circle-md {
    width: 120px;
    height: 120px;
    top: 200px;
    left: -30px;
  }
}
@media screen and (min-width: 1350px) {
  .about-koselugo .circle-md {
    top: 75px;
    left: -60px;
  }
}
.about-koselugo .circle-sm {
  width: 83px;
  height: 83px;
  top: 70px;
  right: -40px;
}
@media screen and (min-width: 1350px) {
  .about-koselugo .circle-sm {
    right: -50px;
  }
}
@media screen and (min-width: 1440px) {
  .about-koselugo .circle-sm {
    right: -100px;
  }
}
.about-koselugo .circle-xs {
  width: 40px;
  height: 40px;
  bottom: 50px;
  right: -50px;
}
.about-koselugo .accordion__section .about-section {
  padding: 0;
}

.understanding * {
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
.understanding__subheading {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .understanding__subheading {
    font-size: 32px;
  }
}
.understanding__text {
  color: #210022;
}
.understanding__growth {
  margin-top: 62px;
}
.understanding__growth .understading_graph-body .understanding__subheading {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
}
@media screen and (min-width: 1300px) {
  .understanding__growth .understading_graph-body .understanding__subheading {
    width: 37ch;
  }
}
@media screen and (max-width: 900px) {
  .understanding__growth .understading_graph-body {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .understanding__growth .understading_graph-body {
    max-width: 75ch;
  }
}
@media screen and (min-width: 1024px) {
  .understanding__growth .understading_graph-body {
    max-width: 50%;
  }
}
@media screen and (min-width: 1300px) {
  .understanding__growth .understading_graph-body {
    max-width: 66ch;
  }
}
.understanding__growth .understading_graph-container {
  flex-shrink: 0;
  max-width: 311px;
}
.understanding__growth .understading_graph-container-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 7.49px;
  margin-inline: auto;
  font-size: 7.91px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .understanding__growth .understading_graph-container-title {
    font-size: 16px;
  }
}
.understanding__growth .understading_graph-container-label {
  margin-top: 3.5px;
  font-size: 5.932px;
  font-weight: 400;
  font-style: normal;
  line-height: 141%;
}
@media screen and (max-width: 390px) {
  .understanding__growth .understading_graph-container-label {
    max-width: 267.438px;
  }
}
@media screen and (min-width: 768px) {
  .understanding__growth .understading_graph-container-label {
    max-width: 540px;
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .understanding__growth .understading_graph-container {
    max-width: 630px;
  }
}
@media screen and (max-width: 1200px) {
  .understanding__growth {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .understanding__growth {
    margin-top: 129px;
  }
  .understanding__growth .wrapper {
    max-width: calc(100% - 70px);
  }
}
@media screen and (min-width: 1024px) {
  .understanding__growth {
    margin-top: 35px;
  }
  .understanding__growth .wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .understanding__growth .wrapper {
    gap: 40px;
  }
}
@media screen and (min-width: 1366px) {
  .understanding__growth .wrapper {
    max-width: 1300px;
  }
}
.understanding__how .understanding__subheading {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 24px;
}
.understanding__how .doctor {
  width: 60px;
  height: 105.322px;
  margin-bottom: 32px;
}
.understanding__how .understanding__subheading2 {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 20px;
}
.understanding__how .understanding__text {
  max-width: 602px;
  margin-top: 20px;
  line-height: normal;
}
.understanding__how .understanding__text + .spotting-pn {
  max-width: 31ch;
}
@media screen and (min-width: 400px) {
  .understanding__how .understanding__text + .spotting-pn {
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) {
  .understanding__how .understanding__text {
    max-width: 988px;
  }
}
.understanding__how .surgeon {
  width: 60px;
  height: 63.506px;
  margin-top: 40px;
  margin-bottom: 32px;
}
.understanding__how .surgeons .understanding__text {
  width: 350px;
  margin-top: 12px;
}
@media screen and (min-width: 400px) {
  .understanding__how .surgeons .understanding__text {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .understanding__how .wrapper {
    max-width: 1080px;
  }
}
@media screen and (min-width: 768px) {
  .understanding__how .doctors,
  .understanding__how .surgeons {
    display: flex;
    -moz-column-gap: 32px;
         column-gap: 32px;
    align-items: flex-start;
  }
  .understanding__how .doctors {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .understanding__how .doctors .understanding__text {
    width: 60ch;
  }
  .understanding__how .doctors .understanding__text + .spotting-pn {
    max-width: 55ch;
  }
  .understanding__how .surgeon {
    margin: 0;
  }
  .understanding__how .surgeons .understanding__text {
    width: 55ch;
    margin-top: 12px;
  }
  .understanding__how .understanding__subheading2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .understanding__how .understanding__subheading {
    font-size: 32px;
  }
  .understanding__how .surgeons .understanding__text {
    width: 92ch;
  }
  .understanding__how .doctors .understanding__text {
    width: 100%;
    max-width: 92ch;
  }
  .understanding__how .doctors .understanding__text + .spotting-pn {
    max-width: 100%;
  }
}
.understanding__what_is {
  margin-top: 13px;
}
.understanding__what_is .understanding__subheading {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
}
.understanding__what_is .understanding__what_is-text {
  max-width: 345px;
  margin-bottom: 72px;
}
@media screen and (min-width: 400px) {
  .understanding__what_is .understanding__what_is-text {
    max-width: unset;
  }
}
@media screen and (min-width: 768px) {
  .understanding__what_is .understanding__what_is-text {
    max-width: 654px;
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .understanding__what_is .understanding__what_is-text {
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) {
  .understanding__what_is .understanding__what_is-text {
    max-width: 100%;
  }
}
.understanding__what_is .pns .three__col_grid {
  row-gap: 20px;
}
.understanding__what_is .pns .understanding__subheading2 {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .understanding__what_is .pns .understanding__subheading2 {
    margin-bottom: 40px;
    font-size: 26px;
  }
}
.understanding__what_is .pns .pn__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 270px;
  margin-right: auto;
  margin-left: auto;
}
.understanding__what_is .pns .pn__card img {
  aspect-ratio: 1;
  width: 160px;
  margin-right: auto;
  margin-left: auto;
}
.understanding__what_is .pns .pn__card img.cell {
  padding: 30px 33px 31px;
}
.understanding__what_is .pns .pn__card .pn__card-text {
  width: 100%;
  margin-bottom: 0;
}
.understanding__what_is .pns .pn__card .pn__card-text sup {
  top: 0;
  font-size: inherit;
  color: inherit;
}
.understanding__what_is .pns .pn__card .disclaimer {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #210022;
}
.understanding__what_is .pns .pn__card .disclaimer sup {
  top: 0;
  font-size: inherit;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .understanding__what_is .pns .pn__card {
    align-items: baseline;
    width: 138px;
  }
}
@media screen and (min-width: 1024px) {
  .understanding__what_is .pns .pn__card {
    width: 266px;
  }
}
.understanding__cta {
  position: relative;
  z-index: 1;
  margin-top: 65px;
  margin-bottom: -35%;
}
.understanding__cta .wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .understanding__cta .wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 710px;
  }
}
@media screen and (min-width: 880px) {
  .understanding__cta .wrapper {
    max-width: 765px;
  }
}
@media screen and (min-width: 1200px) {
  .understanding__cta .wrapper {
    max-width: 1100px;
  }
}
.understanding__cta-text {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
}
.understanding__cta .button {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .understanding__cta .button {
    align-self: unset;
    max-width: 142px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 500px) {
  .understanding__cta {
    margin-bottom: -44px;
  }
}
.understanding__where {
  --img-height: 495px;
  position: relative;
  padding-bottom: calc(var(--img-height) + 50px);
}
.understanding__where::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100vw;
  height: 50px;
  background-color: #fff;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="390" height="50" viewBox="0 0 390 50" fill="none"><path d="M0 0.191411L0 49.9997H390V0.191406C351.102 17.7776 278.341 29.6115 195 29.6115C111.659 29.6115 38.8985 17.7776 0 0.191411Z" fill="white"/></svg>#myMask');
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="390" height="50" viewBox="0 0 390 50" fill="none"><path d="M0 0.191411L0 49.9997H390V0.191406C351.102 17.7776 278.341 29.6115 195 29.6115C111.659 29.6115 38.8985 17.7776 0 0.191411Z" fill="white"/></svg>#myMask');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
@media screen and (min-width: 768px) {
  .understanding__where::after {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="834" height="51" viewBox="0 0 834 51" fill="none"><path d="M0 0.958989L0 50.7673H834V0.958984C750.817 18.5452 595.222 30.3791 417 30.3791C238.778 30.3791 83.1829 18.5452 0 0.958989Z" fill="white"/></svg>');
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="834" height="51" viewBox="0 0 834 51" fill="none"><path d="M0 0.958989L0 50.7673H834V0.958984C750.817 18.5452 595.222 30.3791 417 30.3791C238.778 30.3791 83.1829 18.5452 0 0.958989Z" fill="white"/></svg>');
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover;
  }
}
@media screen and (min-width: 1024px) {
  .understanding__where::after {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="86" viewBox="0 0 1440 86" fill="none"><path d="M0 7.84122e-06L0 86H1440V0C1296.37 30.3646 1027.72 50.7973 720 50.7973C412.279 50.7973 143.625 30.3646 0 7.84122e-06Z" fill="white"/></svg>');
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="86" viewBox="0 0 1440 86" fill="none"><path d="M0 7.84122e-06L0 86H1440V0C1296.37 30.3646 1027.72 50.7973 720 50.7973C412.279 50.7973 143.625 30.3646 0 7.84122e-06Z" fill="white"/></svg>');
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover;
  }
}
.understanding__where-diagram {
  position: absolute;
  right: -6.5vw;
}
.understanding__where-diagram__img {
  height: var(--img-height);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
@media screen and (min-width: 425px) {
  .understanding__where-diagram {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .understanding__where-diagram {
    --img-height: 394px;
    position: static;
    min-width: 323px;
  }
}
@media screen and (min-width: 1024px) {
  .understanding__where-diagram {
    --img-height: 531px;
    max-width: 427px;
  }
}
.understanding__where-content {
  /* stylelint-disable-next-line no-descending-specificity */
}
.understanding__where-content .understanding__text {
  margin: 0;
}
.understanding__where-content .understanding__text:first-of-type {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .understanding__where-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: calc(100% - 140px);
    margin-inline: auto;
  }
  .understanding__where-content .understanding__where-container .understanding__subheading {
    white-space: nowrap;
  }
}
@media screen and (min-width: 1024px) {
  .understanding__where-content {
    max-width: calc(100% - 70px);
  }
}
@media screen and (min-width: 1200px) {
  .understanding__where-content {
    max-width: 1100px;
  }
}
@media screen and (max-width: 500px) {
  .understanding__where {
    padding-top: calc(35% + 56px);
  }
}
@media screen and (min-width: 500px) {
  .understanding__where {
    padding-top: 95px;
  }
}
@media screen and (min-width: 768px) {
  .understanding__where {
    padding-top: 60px;
    padding-bottom: 46px;
  }
}
@media screen and (min-width: 1200px) {
  .understanding__where {
    padding-bottom: 26px;
  }
}
.understanding__pda .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  margin-bottom: 140px;
  padding-top: 34px;
  text-align: center;
}
.understanding__pda .wrapper::after, .understanding__pda .wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.8087rem;
  margin-top: 0.25rem;
  background-image: url("/assets/images/understanding/dotted-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .understanding__pda .wrapper::after, .understanding__pda .wrapper::before {
    background-image: url("/assets/images/understanding/dotted-line-tablet.svg");
  }
}
.understanding__pda .wrapper .understanding__pda-title {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #559cb5;
}
.understanding__pda .wrapper div {
  width: 35ch;
  margin-right: auto;
  margin-left: auto;
}
.understanding__pda .wrapper .button {
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #870051;
}
@media screen and (min-width: 768px) {
  .understanding__pda .wrapper {
    flex-direction: row;
    margin-top: 110px;
  }
  .understanding__pda .wrapper::after, .understanding__pda .wrapper::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 33vw;
  }
  .understanding__pda .wrapper::before {
    left: -39%;
  }
  .understanding__pda .wrapper::after {
    right: -35%;
  }
  .understanding__pda .wrapper div {
    width: 100%;
    max-width: 656px;
  }
  .understanding__pda .wrapper .button {
    color: #870051;
    background-color: #fff;
  }
  .understanding__pda .wrapper .button:hover {
    color: #fff;
    background-color: #870051;
  }
}
@media screen and (min-width: 1024px) {
  .understanding__pda .wrapper::before, .understanding__pda .wrapper::after {
    width: 30%;
    background-image: url("/assets/images/understanding/dotted-line-desktop.svg");
  }
  .understanding__pda .wrapper::before {
    left: -10%;
  }
  .understanding__pda .wrapper::after {
    right: -10%;
  }
  .understanding__pda .wrapper .button {
    color: #fff;
    background-color: #870051;
  }
  .understanding__pda .wrapper .button:hover {
    color: #870051;
    background-color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .understanding__pda .wrapper {
    max-width: 1080px;
  }
  .understanding__pda .wrapper::before, .understanding__pda .wrapper::after {
    width: 112px;
  }
  .understanding__pda .wrapper::before {
    left: 6rem;
  }
  .understanding__pda .wrapper::after {
    right: 7rem;
  }
}
@media screen and (max-width: 400px) {
  .understanding .hero__text {
    max-width: 205px;
  }
}
@media screen and (min-width: 768px) {
  .understanding .hero__image-container::after {
    height: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .understanding .hero .disclaimer {
    top: calc(100% - 45px);
  }
}
@media screen and (min-width: 1200px) {
  .understanding .hero .disclaimer {
    top: calc(100% - 57px);
  }
}
@media screen and (min-width: 1400px) {
  .understanding .hero .disclaimer {
    top: calc(100% - 65px);
  }
}

.support .hero__image-container::after {
  height: 14px;
}
@media screen and (min-width: 768px) {
  .support .hero__image-container::after {
    height: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .support .hero__image-container::after {
    content: "";
    height: 28px;
  }
}
@media screen and (min-width: 1440px) {
  .support .hero__image-container::after {
    height: 30px;
  }
}

.team-section {
  padding-block: 20px;
}
.team-section * {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  line-height: 140%;
}
.team-section p {
  line-height: 140%;
  color: #210022;
}
.team-section span {
  font-weight: 500;
  color: #210022;
}
.team-section .list {
  padding-top: 20px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: #210022;
}
.team-section .list ul {
  margin-top: 10px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .team-section .list ul {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .team-section .list ul {
    gap: 40px;
  }
}
.team-section .list li {
  margin-inline: auto;
  padding-left: 8px;
  padding-block: 10px;
}
.team-section .list li::marker {
  color: #210022;
}
@media screen and (min-width: 768px) {
  .team-section .list li {
    width: 50%;
    padding-inline: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .team-section .list li {
    padding-inline: 0;
  }
}
.team-section .list a {
  display: inline;
  font-size: 18px;
  font-weight: 400;
  color: #870051;
  text-decoration: underline;
}

.pemform-section__title {
  margin-top: 3rem;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #b24399;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pemform-section__title {
    margin: 20px auto 10px;
    font-size: 32px;
  }
}
.pemform-section__text {
  max-width: 59ch;
  margin: 0 auto 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.71px;
  color: #210022;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pemform-section__text {
    max-width: 32ch;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pemform-section__text {
    max-width: 66ch;
  }
}
@media screen and (min-width: 768px) {
  .pemform-section__text {
    margin-bottom: 40px;
  }
}
.pemform-section .bubbles {
  position: absolute;
  top: 6.5rem;
}
.pemform-section .bubbles.first {
  left: -30px;
}
.pemform-section .bubbles.first .bubbles__primary {
  position: relative;
  z-index: 2;
  max-width: 84px;
}
.pemform-section .bubbles.first .bubbles__secondary {
  position: relative;
  z-index: 1;
  max-width: 54px;
  margin-top: -2rem;
  margin-left: 2.5rem;
}
.pemform-section .bubbles.second .bubbles__primary {
  position: relative;
  z-index: -1;
  width: 157px;
  max-width: 157px;
  margin-top: 310px;
  margin-left: -105px;
}
.pemform-section .bubbles.third {
  top: 7rem;
  right: -120px;
}
.pemform-section .bubbles.third .bubbles__primary {
  position: relative;
  z-index: -1;
  width: 61px;
  max-width: 61px;
  margin-left: 100px;
}
.pemform-section .bubbles.third .bubbles__secondary {
  position: relative;
  z-index: -1;
  width: 190px;
  max-width: 190px;
  margin-top: -70px;
  margin-left: -55px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .pemform-section .bubbles.first {
    top: 5rem;
    left: -4px;
  }
  .pemform-section .bubbles.second {
    left: 7rem;
  }
  .pemform-section .bubbles.second .bubbles__primary {
    width: 200px;
    max-width: 200px;
    margin-top: 260px;
  }
  .pemform-section .bubbles.third {
    top: 10rem;
    right: 0;
  }
  .pemform-section .bubbles.third .bubbles__primary {
    display: none;
  }
  .pemform-section .bubbles.third .bubbles__secondary {
    width: 200px;
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .pemform-section .bubbles {
    display: none;
  }
}
.pemform-section .pemresult {
  transition: opacity 1s ease-in-out;
  /* stylelint-disable-next-line no-descending-specificity */
  /* stylelint-disable-next-line no-descending-specificity */
}
.pemform-section .pemresult[aria-hidden=true] {
  display: none;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.pemform-section .pemresult[aria-hidden=false] {
  display: block;
  height: auto;
  visibility: visible;
  opacity: 1;
}
.pemform-section .pemresult__contact[aria-hidden=true] {
  display: none;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.pemform-section .pemresult__contact[aria-hidden=false] {
  display: block;
  height: auto;
  visibility: visible;
  opacity: 1;
}
.pemform-section .pemresult__order[aria-hidden=true] {
  display: none;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.pemform-section .pemresult__order[aria-hidden=false] {
  display: block;
  height: auto;
  visibility: visible;
  opacity: 1;
  /* stylelint-disable-next-line no-descending-specificity */
}
.pemform-section .pemresult__order[aria-hidden=false] .pemresult__title {
  margin-top: 23px;
  margin-bottom: 0;
}
.pemform-section .pemresult--active {
  display: block !important;
  height: auto;
  visibility: visible !important;
  opacity: 1 !important;
}
.pemform-section .pemresult__photo {
  max-width: 227px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 0;
}
.pemform-section .pemresult__title {
  margin-bottom: 1.5rem;
  line-height: normal;
  color: #594059;
}
.pemform-section .pemresult__question {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 25.715px;
  color: #594059;
}
.pemform-section .pemresult__response {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 142.86%;
  color: #594059;
}
.pemform-section .pemresult__response-shorter {
  max-width: 80ch;
}
.pemform-section .pemresult__response.thank-you {
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .pemform-section .pemresult {
    padding: 0 13px;
  }
}

.pemresult-secondary {
  max-width: 920px;
}
.pemresult-secondary[aria-hidden=true] {
  display: none;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.pemresult-secondary[aria-hidden=false] {
  display: block;
  height: auto;
  visibility: visible;
  opacity: 1;
}
.pemresult-secondary__title {
  margin-bottom: 28px;
  color: #594059;
}
.pemresult-secondary__text {
  margin: 0;
  line-height: normal;
  color: #594059;
}
.pemresult-secondary__text a {
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  color: #870051;
}
.pemresult-secondary__text small {
  font-size: 15px;
  line-height: normal;
}
.pemresult-secondary__text:first-of-type {
  margin-bottom: 20px;
  color: #210022;
}
.pemresult-secondary__img {
  max-width: 192px;
  margin-top: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .pemresult-secondary__img {
    max-width: 292px;
    max-height: 90px;
  }
}
@media screen and (max-width: 768px) {
  .pemresult-secondary {
    padding: 0 13px;
  }
}

.one__source-section {
  position: relative;
  padding-top: 40px;
  color: #210022;
}
.one__source-section::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: -2px;
  width: 100vw;
  height: 85px;
  background-color: #d4e6ec;
  -webkit-mask: url("/assets/images/support/wave.svg");
          mask: url("/assets/images/support/wave.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
@media screen and (min-width: 768px) {
  .one__source-section::after {
    bottom: -33px;
    height: 55px;
    -webkit-mask: url("/assets/images/support/wave-tablet.svg");
            mask: url("/assets/images/support/wave-tablet.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover;
  }
}
@media screen and (min-width: 1024px) {
  .one__source-section::after {
    bottom: -38px;
    height: 87px;
    -webkit-mask: url("/assets/images/support/wave-desktop.svg");
            mask: url("/assets/images/support/wave-desktop.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover;
  }
}
.one__source-section * {
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
.one__source-section-logo {
  width: 292.28px;
  height: 89.784px;
}
.one__source-section-title {
  margin-block: 20px;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .one__source-section-title {
    font-size: 32px;
  }
}
.one__source-section-text {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  color: #210022;
}
@media screen and (max-width: 390px) {
  .one__source-section-text {
    max-width: 31ch;
  }
}
@media screen and (min-width: 1024px) {
  .one__source-section .container-support {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}
.one__source-section .card {
  padding: 20px;
  padding-top: 30px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  color: #210022;
}
.one__source-section .card__icon {
  width: 82.796px;
  height: 80px;
  margin-inline: auto;
}
.one__source-section .card__title {
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .one__source-section .card__title {
    font-size: 24px;
  }
}
.one__source-section .card__text {
  text-align: left;
}
.one__source-section .card__link {
  margin-top: 10px;
  font-family: inherit;
  font-style: normal;
  color: inherit;
}
.one__source-section .card__link a {
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  font-style: inherit;
  line-height: 25.714px;
}
.one__source-section .card__list {
  padding-top: 8px;
  padding-inline-start: 12px;
  font-family: inherit;
  font-size: 18px;
}
.one__source-section .card__list li {
  padding-inline-start: 10px;
  font-family: inherit;
  font-size: inherit;
  line-height: 25.714px;
}
@media screen and (min-width: 768px) {
  .one__source-section .card__list {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .one__source-section .card {
    width: 100%;
    padding: 32px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1300px) {
  .one__source-section .card {
    padding: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .one__source-section .card {
    min-width: 634px;
    padding: 20px;
  }
}
.one__source-section .one_source__box {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 833px) {
  .one__source-section .one_source__box {
    max-width: 95%;
  }
}
.one__source-section .one_source__box_wrapper {
  margin-top: 60px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
.one__source-section .one_source__box_wrapper .one_source__text {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  color: #636466;
}
.one__source-section .one_source__box_wrapper .one_source__text p {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.one__source-section .one_source__box_wrapper .one_source__text a {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  text-decoration-line: underline;
}
@media screen and (min-width: 768px) {
  .one__source-section .one_source__box_wrapper .one_source__text {
    max-width: 556px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .one__source-section .one_source__box_wrapper {
    padding-inline: 120px;
  }
}
@media screen and (min-width: 1024) {
  .one__source-section .one_source__box_wrapper {
    padding-inline: 70px;
  }
}
@media screen and (min-width: 834px) and (max-width: 1024px) {
  .one__source-section .onesource-container {
    position: relative;
    margin-top: 60px;
    padding-bottom: 160px;
  }
  .one__source-section .onesource-container .one_source__box {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
  }
  .one__source-section .onesource-container .one_source__box_wrapper {
    margin: 0;
  }
  .one__source-section .onesource-container .one_source__text {
    width: 556px;
  }
}

.hero-index {
  position: relative;
  overflow: hidden;
}
.hero-index .card-list {
  position: relative;
  z-index: 1;
}
.hero-index .form-section {
  position: relative;
}
.hero-index .circle {
  display: block;
  border-radius: 50%;
}
.hero-index .circle--xsc {
  position: absolute;
  display: none;
  width: 62px;
  height: 62px;
}
@media screen and (min-width: 768px) {
  .hero-index .circle--xsc {
    top: 1165px;
    left: -40px;
    display: block;
  }
}
@media screen and (min-width: 834px) {
  .hero-index .circle--xsc {
    top: 1165px;
    left: -40px;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .hero-index .circle--xsc {
    top: 630px;
    left: -40px;
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .hero-index .circle--xsc {
    top: 591px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-index .circle--xsc {
    top: 21%;
    left: -40px;
    display: block;
  }
}
.hero-index .circle--smc {
  position: absolute;
  top: 912px;
  left: -20px;
  width: 72px;
  height: 72px;
}
@media screen and (min-width: 390px) {
  .hero-index .circle--smc {
    top: 839px;
    left: -20px;
  }
}
@media screen and (min-width: 412px) {
  .hero-index .circle--smc {
    top: 812px;
  }
}
@media screen and (min-width: 430px) {
  .hero-index .circle--smc {
    top: 810px;
    left: -30px;
  }
}
@media screen and (min-width: 768px) {
  .hero-index .circle--smc {
    top: 986px;
    left: -29px;
    display: block;
    width: 62px;
    height: 62px;
  }
}
@media screen and (min-width: 834px) {
  .hero-index .circle--smc {
    top: 1020px;
    left: -18px;
    width: 84px;
    height: 84px;
  }
}
@media screen and (min-width: 912px) {
  .hero-index .circle--smc {
    left: 10px;
  }
}
@media screen and (min-width: 992px) {
  .hero-index .circle--smc {
    left: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-index .circle--smc {
    top: 805px;
    left: -10px;
    display: block;
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .hero-index .circle--smc {
    top: 785px;
    left: -15px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-index .circle--smc {
    top: 920px;
    left: 18px;
    width: 84px;
    height: 84px;
  }
}
.hero-index .circle--mdc {
  position: absolute;
  top: 1000px;
  left: 0;
  width: 67.003px;
  height: 67.003px;
}
@media screen and (min-width: 390px) {
  .hero-index .circle--mdc {
    top: 16.5%;
    left: -10px;
  }
}
@media screen and (min-width: 430px) {
  .hero-index .circle--mdc {
    top: 900px;
  }
}
@media screen and (min-width: 768px) {
  .hero-index .circle--mdc {
    top: 973px;
    right: 607px;
    left: unset;
    display: block;
    width: 150px;
    height: 150px;
  }
}
@media screen and (min-width: 820px) {
  .hero-index .circle--mdc {
    top: 982px;
    right: 662px;
    left: unset;
    display: block;
    width: 150px;
    height: 150px;
  }
}
@media screen and (min-width: 834px) {
  .hero-index .circle--mdc {
    top: 1000px;
    right: 590px;
    left: unset;
    width: 222px;
    height: 222px;
  }
}
@media screen and (min-width: 912px) {
  .hero-index .circle--mdc {
    right: 630px;
  }
}
@media screen and (min-width: 992px) {
  .hero-index .circle--mdc {
    top: 1000px;
    right: 750px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-index .circle--mdc {
    top: 715px;
    right: auto;
    display: block;
    width: 150px;
    height: 150px;
  }
}
@media screen and (min-width: 1280px) {
  .hero-index .circle--mdc {
    top: 685px;
    right: auto;
  }
}
@media screen and (min-width: 1440px) {
  .hero-index .circle--mdc {
    top: 820px;
    left: 60px;
    width: 155px;
    height: 155px;
  }
}
.hero-index .circle--lgf {
  position: absolute;
  top: 1620px;
  left: 180px;
  width: 189px;
  height: 189px;
}
@media screen and (min-width: 360px) {
  .hero-index .circle--lgf {
    top: 1520px;
    left: 230px;
  }
}
@media screen and (min-width: 375px) {
  .hero-index .circle--lgf {
    top: 1537px;
    left: 230px;
  }
}
@media screen and (min-width: 390px) {
  .hero-index .circle--lgf {
    top: 1450px;
    left: 250px;
  }
}
@media screen and (min-width: 412px) {
  .hero-index .circle--lgf {
    top: 1400px;
  }
}
@media screen and (min-width: 414px) {
  .hero-index .circle--lgf {
    top: 1394px;
    left: 275px;
  }
}
@media screen and (min-width: 430px) {
  .hero-index .circle--lgf {
    top: 1370px;
    left: 266px;
  }
}
@media screen and (min-width: 540px) {
  .hero-index .circle--lgf {
    top: 1299px;
    left: 398px;
  }
}
@media screen and (min-width: 760px) {
  .hero-index .circle--lgf {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .hero-index .circle--lgf {
    top: 1060px;
    left: 815px;
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .hero-index .circle--lgf {
    top: 1024px;
    left: 1070px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-index .circle--lgf {
    top: 1115px;
    right: 66px;
    left: unset;
    display: block;
  }
}
.hero-index .circle--purple-2 {
  opacity: 0.5;
  background-color: #d9a1cc;
}
.hero-index .circle--purple-4 {
  opacity: 0.67;
  background-color: #c572b3;
}
.hero-index .circle--purple-3 {
  opacity: 0.9;
  background-color: #c572b3;
}

.faqs-page .hero__image-container::after {
  height: 32px;
}
@media screen and (min-width: 768px) {
  .faqs-page .hero__image-container::after {
    height: 23px;
  }
}
@media screen and (min-width: 1024px) {
  .faqs-page .hero__image-container::after {
    content: "";
    height: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .faqs-page .hero__image-container::after {
    height: 38px;
  }
}
.faqs-page .faqs__title {
  margin-top: 48px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #b24399;
  text-align: center;
}
.faqs-page .faqs .accordion {
  width: 100%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 390px) {
  .faqs-page .faqs .accordion {
    min-width: 350px;
  }
}
.faqs-page .faqs .accordion__item_title {
  gap: 20px;
  padding: 24px 4px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: 24px;
  color: #594059;
  text-align: left;
  border-bottom: 1px solid #E5E5E5;
}
.faqs-page .faqs .accordion__item_title:hover {
  background-color: #eef6f8;
}
@media screen and (min-width: 834px) {
  .faqs-page .faqs .accordion__item_title {
    margin-right: 5px;
  }
}
.faqs-page .faqs .accordion__item {
  margin-bottom: 0;
  padding-right: 0;
  padding-left: 0;
}
.faqs-page .faqs .accordion__item_header {
  padding-top: 0;
  padding-bottom: 0;
}
.faqs-page .faqs .accordion__item_title::after {
  flex: none;
  width: 12px;
  height: 7px;
  background-size: cover;
}
.faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_title {
  padding-bottom: 20px;
  border-bottom: none;
}
.faqs-page .faqs .accordion__item_content p {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: #210022;
}
.faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_content p {
  width: 100%;
  margin-top: 0;
  padding-bottom: 12px;
}
@media screen and (min-width: 834px) {
  .faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_content p {
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_content p.text-item-99.text-item-100 {
    width: 99%;
  }
}
@media screen and (min-width: 1024px) {
  .faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_content p.text-item-99.text-item-100 {
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_content p.text-item-99 {
    width: 99%;
  }
}
@media screen and (min-width: 834px) {
  .faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_content p.text-item-101.text-item-100 {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_content p.text-item-101.text-item-100 {
    width: 100%;
    max-width: 98ch;
  }
}
@media screen and (min-width: 834px) {
  .faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_content p.text-item-101 {
    width: 100%;
    letter-spacing: -0.1px;
  }
}
@media screen and (min-width: 390px) {
  .faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_content p.text-item-100 {
    width: 100%;
  }
}
@media screen and (min-width: 834px) {
  .faqs-page .faqs .accordion [aria-expanded=true] .accordion__item_content p.faqs__width-100 {
    width: 100%;
  }
}
.faqs-page .faqs .accordion [aria-expanded=true] {
  background-color: #fff;
}
.faqs-page .faqs .accordion__item_content a {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  color: #870051;
}
.faqs-page .faqs .accordion__item_content a .br-link {
  display: none;
}
@media screen and (min-width: 390px) {
  .faqs-page .faqs .accordion__item_content a .br-link {
    display: inline;
  }
}
@media screen and (min-width: 394px) {
  .faqs-page .faqs .accordion__item_content a .br-link {
    display: none;
  }
}
.faqs-page .faqs .accordion-group-toggle::after {
  display: none;
}
.faqs-page .faqs__color--rose {
  font-weight: 500;
  color: #870051;
}
.faqs-page .faqs .accordion__item_content {
  padding-right: 4px;
  padding-left: 4px;
}
@media screen and (min-width: 768px) {
  .faqs-page .faqs .accordion__item_content {
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .faqs-page .faqs .accordion__item_content {
    padding-right: 4px;
  }
}
.faqs-page .faqs__am-pm {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .faqs-page .faqs .text-line-break {
    line-break: anywhere;
    font-family: "ITC Franklin Gothic Std", sans-serif;
  }
  .faqs-page .faqs .text-item-101 {
    width: 101%;
  }
}

.sitemap-page .sitemap {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.sitemap-page .sitemap__title {
  margin-bottom: 57px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #b24399;
}
.sitemap-page .sitemap__list-link {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #b24399;
}
.sitemap-page .sitemap__list-link .list-link {
  list-style: none;
}
.sitemap-page .sitemap__list-item {
  margin-bottom: 32px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #b24399;
}
.sitemap-page .sitemap__list-item--firts {
  margin-bottom: 57px;
}
.sitemap-page .sitemap__list-item--last {
  margin-bottom: 57px;
}
.sitemap-page .sitemap .sitemap__subnav .subnav__item {
  margin-bottom: 24px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
  text-decoration: underline;
  list-style: none;
}
.sitemap-page .sitemap .sitemap__subnav .subnav__item:hover {
  color: #b24399;
}
.sitemap-page .sitemap .sitemap__subnav .subnav__item:last-of-type {
  margin-bottom: 57px;
}
.sitemap-page .sitemap .sitemap__subnav .subnav__item:nth-child(4) {
  margin-bottom: 0;
}
.sitemap-page .sitemap .subnav-item__link {
  font-size: 18px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .resources-page .hero__image-container::after {
    height: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .hero__image-container::after {
    content: "";
    height: 15px;
  }
}
@media screen and (min-width: 915px) {
  .resources-page .hero__image-container .disclaimer {
    right: 45px;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .hero__image-container .disclaimer {
    right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .resources-page .hero__image-container .disclaimer {
    right: 75px;
  }
}
.resources-page .resources {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.resources-page .resources__heading {
  padding-top: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  color: #b24399;
}
@media screen and (min-width: 768px) {
  .resources-page .resources__heading {
    font-size: 32px;
    line-height: 38.4px;
  }
}
.resources-page .resources__text {
  max-width: 32.5ch;
  margin-top: 20px;
  margin-bottom: 72px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 25.7px;
  color: #210022;
}
@media screen and (min-width: 375px) {
  .resources-page .resources__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 400px) {
  .resources-page .resources__text {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .resources-page .resources__text {
    max-width: 65ch;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .resources__text {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .resources__text {
    margin-bottom: 72px;
  }
}
.resources-page .resources__circle {
  display: block;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .resources-page .resources__circle--small {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 61.26px;
    height: 61.26px;
    opacity: 0.8;
    background-color: #d9a1cc;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .resources__circle--small {
    display: none;
  }
}
.resources-page .resources__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 60px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (min-width: 768px) {
  .resources-page .resources__grid {
    width: 440px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .resources-page .resources__grid {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
    width: 940px;
  }
}
.resources-page .resources__flex {
  display: grid;
  grid-template-columns: 150px auto;
  -moz-column-gap: 19px;
       column-gap: 19px;
}
@media screen and (min-width: 768px) {
  .resources-page .resources__flex {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .resources__flex {
    grid-template-columns: 150px auto;
    width: 430px;
  }
}
.resources-page .resources__title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  line-height: 26.4px;
  color: #594059;
}
.resources-page .resources__desc {
  margin-bottom: 5px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 25.715px;
  color: #210022;
}
.resources-page .resources__conteiner {
  display: none;
}
.resources-page .resources__footer {
  width: 65ch;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #210022;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .resources-page .resources__footer {
    margin-top: 72px;
  }
}
.resources-page .resources__btn {
  width: 100%;
  max-width: 246px;
  margin-top: 32px;
  margin-right: auto;
  margin-left: auto;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 22px;
  color: #fff;
  letter-spacing: 1.2px;
}
.resources-page .resources__cards {
  margin-top: 40px;
  padding-top: 40px;
}
.resources-page .resources__cards-heading {
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: 28.8px;
  color: #b24399;
}
@media screen and (min-width: 768px) {
  .resources-page .resources__cards-heading {
    font-size: 32px;
  }
}
.resources-page .resources__cards-description {
  margin-top: 20px;
  margin-bottom: 32px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 25.715px;
  color: #210022;
}
.resources-page .resources__cards-flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: 350px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .resources-page .resources__cards-flex {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .resources__cards-flex {
    flex-direction: row;
    align-items: stretch;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.resources-page .resources__cards--footer {
  margin-top: 32px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: #210022;
}
.resources-page .resources__cards--prefooter {
  margin-top: 8px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  color: #210022;
}
@media screen and (min-width: 768px) {
  .resources-page .resources__cards--prefooter {
    width: 97%;
  }
}
.resources-page .resources__cards--prefooter a {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #870051;
}
.resources-page .resource__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px;
}
.resources-page .resource__grid .resource__descripcion {
  width: 28.7ch;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
  color: #210022;
  text-align: left;
}
@media screen and (min-width: 375px) {
  .resources-page .resource__grid .resource__descripcion {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .resources-page .resource__grid .resource__descripcion {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .resource__grid .resource__descripcion {
    gap: 0;
  }
}
.resources-page .resource__grid .resource__logo {
  width: 100%;
  max-width: 189.287px;
}
.resources-page .resource__grid .resource__logo--modifier {
  max-width: 189.287px;
}
@media screen and (min-width: 1024px) {
  .resources-page .resource__grid .resource__logo--modifier {
    height: 43.32px;
    margin-bottom: 20px;
    padding-top: 13px;
    padding-bottom: 47px;
  }
}
.resources-page .resource__grid .resource__logo--modifier1 {
  width: 100%;
  max-width: 170.203px;
}
@media screen and (min-width: 1024px) {
  .resources-page .resource__grid .resource__logo--modifier1 {
    height: auto;
  }
}
.resources-page .resource__grid .resource__logo--modifier2 {
  width: 100%;
  max-width: 83.095px;
}
@media screen and (min-width: 1024px) {
  .resources-page .resource__grid .resource__logo--modifier2 {
    height: auto;
  }
}
.resources-page .resource__grid .resource__link {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  color: #870051;
}
.resources-page .kit__seccion .kit {
  position: relative;
  overflow: hidden;
  height: 781px;
}
.resources-page .kit__seccion .kit__image {
  height: 400px;
  background-image: url("/assets/images/resources/Music-room.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (min-width: 400px) {
  .resources-page .kit__seccion .kit__image {
    height: 440px;
  }
}
@media screen and (min-width: 430px) {
  .resources-page .kit__seccion .kit__image {
    height: 700px;
  }
}
@media screen and (min-width: 500px) {
  .resources-page .kit__seccion .kit__image {
    height: 780px;
  }
}
@media screen and (min-width: 768px) {
  .resources-page .kit__seccion .kit__image {
    height: 968px;
    background-image: url("/assets/images/resources/Music-room-tablet.png");
    background-position: top left;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .kit__seccion .kit__image {
    height: 601px;
    background-image: url("/assets/images/resources/Music-room-desktop.png");
    background-position: top left;
  }
}
.resources-page .kit__seccion .kit__content {
  position: absolute;
  bottom: -75px;
  left: -40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 521px;
  height: 521px;
  margin-top: -40px;
  padding-top: 81px;
  background-color: #b24399;
  border-radius: 50%;
}
@media screen and (min-width: 360px) {
  .resources-page .kit__seccion .kit__content {
    bottom: -75px;
    left: -28%;
  }
}
@media screen and (min-width: 390px) {
  .resources-page .kit__seccion .kit__content {
    bottom: -75px;
    left: -25%;
  }
}
@media screen and (min-width: 414px) {
  .resources-page .kit__seccion .kit__content {
    bottom: -95px;
    left: -21%;
  }
}
@media screen and (min-width: 430px) {
  .resources-page .kit__seccion .kit__content {
    bottom: -70px;
    left: -14%;
  }
}
@media screen and (min-width: 540px) {
  .resources-page .kit__seccion .kit__content {
    bottom: -90px;
    left: -4%;
  }
}
@media screen and (min-width: 768px) {
  .resources-page .kit__seccion .kit__content {
    bottom: -45px;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 521px;
    height: 521px;
    padding: 0 50px;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .kit__seccion .kit__content {
    z-index: 2;
    bottom: 40px;
    left: 50px;
  }
}
.resources-page .kit__seccion .kit__heading {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .resources-page .kit__seccion .kit__heading {
    font-size: 32px;
  }
}
.resources-page .kit__seccion .kit__text {
  width: 28ch;
  margin-top: 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 25.715px;
  color: #fff;
}
@media screen and (min-width: 375px) {
  .resources-page .kit__seccion .kit__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .resources-page .kit__seccion .kit__text {
    width: 39ch;
  }
}
.resources-page .kit__seccion .kit__link {
  margin-right: auto;
  margin-left: auto;
}
.resources-page .kit__seccion .kit__circle {
  display: block;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .resources-page .kit__seccion .kit__circle--small {
    position: absolute;
    right: 54px;
    bottom: 71.5px;
    width: 88px;
    height: 88px;
    opacity: 0.8;
    background-color: #d9a1cc;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .kit__seccion .kit__circle--small {
    z-index: 2;
    bottom: 32px;
    left: 408px;
    width: 67.17px;
    height: 67.17px;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .kit__seccion .kit__circle--lg {
    position: absolute;
    top: -23px;
    left: -46px;
    width: 256.34px;
    height: 256.34px;
    opacity: 0.8;
    opacity: 0.67px;
    background-color: #c572b3;
  }
}
@media screen and (min-width: 768px) {
  .resources-page .kit__seccion .kit {
    height: 968px;
  }
}
@media screen and (min-width: 1024px) {
  .resources-page .kit__seccion .kit {
    height: 601px;
  }
}

.page__not_found_title {
  max-width: 15ch;
  margin-bottom: 80px;
  margin-inline: auto;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #b24399;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .page__not_found_title {
    max-width: 100%;
    padding-inline: 1rem;
  }
}

.events-page .hero::after {
  content: "";
  width: 100%;
  height: 80px;
}
@media screen and (min-width: 600px) {
  .events-page .hero::after {
    content: none;
  }
}
.events-page .hero__image-container::after {
  content: none;
}
@media screen and (min-width: 600px) {
  .events-page .hero__image-container::after {
    content: "";
    height: 31px;
  }
}
@media screen and (min-width: 768px) {
  .events-page .hero__image-container::after {
    height: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .events-page .hero__image-container::after {
    content: none;
  }
}
.events-page .hero__image-container .disclaimer {
  display: none;
}
@media screen and (min-width: 600px) {
  .events-page .hero__image-container .disclaimer {
    display: initial;
  }
}
.events-page .hero__content-wrapper {
  height: 100%;
}
@media screen and (min-width: 600px) {
  .events-page .hero__content-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.events-page .hero .event-card__container {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-75%);
  width: 100%;
}
.events-page .hero .event-card__container .disclaimer {
  position: initial;
  margin-bottom: 8px;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .events-page .hero .event-card__container .disclaimer {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .events-page .hero .event-card__container .event-card {
    max-width: 320px;
  }
}
@media screen and (min-width: 768px) {
  .events-page .hero .event-card__container .event-card {
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .events-page .hero .event-card__container .event-card__place {
    max-width: initial;
  }
  .events-page .hero .event-card__container .event-card__speaker {
    margin-top: 0;
  }
}
@media screen and (min-width: 600px) {
  .events-page .hero .event-card__container {
    position: initial;
    top: initial;
    left: initial;
    transform: none;
  }
}
@media screen and (min-width: 768px) {
  .events-page .hero .event-card__container {
    transform: translateY(-20%);
  }
}
.events-page .hero__text {
  position: initial;
  margin-bottom: 32px;
}
@media screen and (min-width: 600px) {
  .events-page .hero__text {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .events-page .hero__text {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 1440px) {
  .events-page .hero__text {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .events-page .event-list__wrapper {
    max-width: 1080px;
  }
}
.events-page .event-list__copy {
  margin-bottom: 32px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
@media screen and (min-width: 600px) {
  .events-page .event-list__copy {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  .events-page .event-list__copy {
    line-height: 142.86%;
  }
}
.events-page .event-list__title {
  margin-bottom: 30px;
  color: #b24399;
}
@media screen and (min-width: 768px) {
  .events-page .event-list__title {
    margin-bottom: 0;
    font-size: 34px;
    letter-spacing: 0.4px;
  }
}
@media screen and (min-width: 768px) {
  .events-page .event-list__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
  }
}
.events-page .event-list__filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .events-page .event-list__filters {
    margin-bottom: 0;
  }
}
.events-page .event-list__filter {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37.4496px;
  padding-right: 15.3696px;
  padding-left: 15.3696px;
  font-family: "Roboto", sans-serif;
  font-size: 15.3696px;
  font-weight: 500;
  line-height: 100%;
  color: #67737A;
  letter-spacing: 0.3072px;
  background: #D0D0D0;
  border-radius: 50px;
}
.events-page .event-list__filter:not(:last-of-type) {
  margin-right: 15.3696px;
}
.events-page .event-list__filter.active {
  color: #2A3F3B;
  background: #80B5C8;
}
.events-page .event-list .events .event-card:not(:last-of-type) {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .events-page .event-list .events .event-card:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.events-page .pn-stars__wrapper {
  margin-top: -2px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #eef6f8;
}
.events-page .pn-stars__logo {
  width: 213.2704px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}
.events-page .pn-stars__title {
  margin-bottom: 32px;
  color: #b24399;
}
.events-page .pn-stars__description {
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
.events-page .pn-stars__description .contact__link {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: 140%;
  color: #870051;
  text-decoration: none;
}
.events-page .form-section {
  margin-top: 0;
}

/* {outputFileName:style} */