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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__infobar span {
  padding: 0 5px;
}

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

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

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

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

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

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

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

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

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

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

: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: scroll;
  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: 8px;
  height: 8px;
}

.nice-select .list::-webkit-scrollbar-thumb {
  background: #ddd;
}

.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 */
/* Color Variables */
/* Boilerplate Colors */
/* Font Family variables */
/* // Roboto / Custom Font
@font-face {
  font-family: Roboto;
  src: url("/assets/fonts/Roboto-Thin.ttf");
  font-weight: 100;
}

@font-face {
  font-family: Roboto;
  src: url("/assets/fonts/Roboto-Light.ttf");
  font-weight: normal;
}

@font-face {
  font-family: Roboto;
  src: url("/assets/fonts/Roboto-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Roboto;
  src: url("/assets/fonts/Roboto-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: Roboto;
  src: url("/assets/fonts/Roboto-Bold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: Roboto;
  src: url("/assets/fonts/Roboto-Black.ttf");
  font-weight: 700, bold;
}

// Inter Font
@font-face {
  font-family: Inter;
  src: url("/assets/fonts/Inter-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Inter;
  src: url("/assets/fonts/Inter-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Inter;
  src: url("/assets/fonts/Inter-Black.ttf");
  font-weight: 900;
} */
@font-face {
  font-family: "hwt-artz";
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-stretch: normal;
  src: url("https://use.typekit.net/af/0951ac/00000000000000007735a49b/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/0951ac/00000000000000007735a49b/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/0951ac/00000000000000007735a49b/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
}
@font-face {
  font-family: "vista-sans";
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-stretch: normal;
  src: url("https://use.typekit.net/af/e99728/00000000000000003b9adcff/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/e99728/00000000000000003b9adcff/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/e99728/00000000000000003b9adcff/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
}
@font-face {
  font-family: "vista-sans";
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-stretch: normal;
  src: url("https://use.typekit.net/af/2c97ea/00000000000000003b9adcf7/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/2c97ea/00000000000000003b9adcf7/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/2c97ea/00000000000000003b9adcf7/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
}
@font-face {
  font-family: "vista-sans";
  font-weight: 900;
  font-style: normal;
  font-display: auto;
  font-stretch: normal;
  src: url("https://use.typekit.net/af/850b34/00000000000000003b9adcf5/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff2"), url("https://use.typekit.net/af/850b34/00000000000000003b9adcf5/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff"), url("https://use.typekit.net/af/850b34/00000000000000003b9adcf5/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("opentype");
}
@font-face {
  font-family: "vista-sans-narrow";
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-stretch: normal;
  src: url("https://use.typekit.net/af/7ac6bc/00000000000000003b9adceb/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/7ac6bc/00000000000000003b9adceb/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/7ac6bc/00000000000000003b9adceb/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
}
@font-face {
  font-family: "vista-sans-narrow";
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-stretch: normal;
  src: url("https://use.typekit.net/af/740739/00000000000000003b9adcf3/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/740739/00000000000000003b9adcf3/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/740739/00000000000000003b9adcf3/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
}
@font-face {
  font-family: "vista-sans-narrow";
  font-weight: 900;
  font-style: normal;
  font-display: auto;
  font-stretch: normal;
  src: url("https://use.typekit.net/af/5d9b53/00000000000000003b9adce9/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff2"), url("https://use.typekit.net/af/5d9b53/00000000000000003b9adce9/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff"), url("https://use.typekit.net/af/5d9b53/00000000000000003b9adce9/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("opentype");
}
*,
*::before,
*::after {
  font-family: "vista-sans", sans-serif;
}

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

html.no-scroll {
  overflow: hidden;
}

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

footer {
  position: relative;
}

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

h1 {
  font-family: "bree-serif", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 102%;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  h1 {
    font-family: "bree-serif", serif;
    font-size: 56px;
    font-weight: 600;
    letter-spacing: 0;
  }
}

h2 {
  position: relative;
  font-family: "hwt-artz", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 105%;
  color: #52486e;
  letter-spacing: 0.72px;
}
h2:not(.unstyled) {
  position: relative;
  padding-left: 16px;
}
h2:not(.unstyled)::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 100%;
  line-height: 0.8;
  background-color: #df4f60;
}
h2.emphasis {
  font-weight: 600;
  font-style: italic;
  line-height: normal;
}

h3 {
  font-family: "hwt-artz", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}

h4 {
  font-family: "Bree", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  h4 {
    font-family: "Bree", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0;
  }
}

h5 {
  font-family: "hwt-artz", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.44px;
}

h6 {
  font-family: "vista-sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0;
}

p {
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
}
p.body-2 {
  font-family: "vista-sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

a {
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}
a.body-2 {
  font-family: "vista-sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
}

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

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

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

ul li::marker {
  display: none;
}

main {
  overflow-x: hidden;
  display: block;
  flex: 1 0 auto;
}
main ul li {
  list-style-type: disc;
}
main ul li::marker {
  color: #000;
}
main a {
  color: #52486e;
  transition: color 0.2s ease-in-out;
}
main a:hover {
  color: #bc4250;
}
main a:active {
  color: #df4f60;
}

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; } */
.color--cool {
  color: #322F3F;
}

.bg-color--cool {
  background-color: #322F3F;
}

.color--cool-700-home {
  color: #4E4B66;
}

.bg-color--cool-700-home {
  background-color: #4E4B66;
}

.color--cool-700 {
  color: #4d4a63;
}

.bg-color--cool-700 {
  background-color: #4d4a63;
}

.color--cool-800 {
  color: #262338;
}

.bg-color--cool-800 {
  background-color: #262338;
}

.color--primary-red {
  color: #df4f60;
}

.bg-color--primary-red {
  background-color: #df4f60;
}

.color--secondary-red {
  color: #bc4250;
}

.bg-color--secondary-red {
  background-color: #bc4250;
}

.color--neutrals-primary {
  color: #fff;
}

.bg-color--neutrals-primary {
  background-color: #fff;
}

.color--neutrals-primary-black {
  color: rgba(0, 0, 0, 0.9);
}

.bg-color--neutrals-primary-black {
  background-color: rgba(0, 0, 0, 0.9);
}

.color--neutrals-primary-black-40 {
  color: #999;
}

.bg-color--neutrals-primary-black-40 {
  background-color: #999;
}

.color--secondary-navy {
  color: #52486e;
}

.bg-color--secondary-navy {
  background-color: #52486e;
}

.color--purple {
  color: #53486e;
}

.bg-color--purple {
  background-color: #53486e;
}

.color--secondary-blue {
  color: #989ece;
}

.bg-color--secondary-blue {
  background-color: #989ece;
}

.color--primary-yellow {
  color: #f1bb43;
}

.bg-color--primary-yellow {
  background-color: #f1bb43;
}

.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--light-gray {
  color: #f2f2f2;
}

.bg-color--light-gray {
  background-color: #f2f2f2;
}

.bg-color--gradient-primary-yellow-slightly-blue {
  background-image: linear-gradient(180deg, rgba(241, 187, 67, 0.2) 0%, rgba(152, 158, 206, 0) 102.72%);
}

.bg-color--gradient-purple-secondary-blue {
  background-image: linear-gradient(90deg, #52486e 1.99%, #989ece 100%);
}

.bg-color--gradient-primary-red-primary-yellow {
  background-image: linear-gradient(0deg, #df4f60 -32.99%, #f1bb43 113.43%);
}

.bg-color--gradient-slightly-blue {
  background-image: linear-gradient(180deg, rgba(152, 158, 206, 0.2) 0%, rgba(152, 158, 206, 0) 102.72%);
}

.bg-color--f7f7f7 {
  background-color: #f7f7f7;
}

.add-arrows-row {
  --arrows-background-color: transparent;
  --arrows-display: none;
  --arrows-image: url("/assets/images/arrows-row--neutrals-primary.svg");
}
.add-arrows-row::after, .add-arrows-row::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: var(--arrows-display);
  width: 100vw;
  height: 29.3px;
}
.add-arrows-row::after {
  background-image: var(--arrows-image);
}
.add-arrows-row::before {
  background-color: var(--arrows-background-color);
}
.add-arrows-row--secondary-blue {
  --arrows-image: url("/assets/images/arrows-row--secondary-blue.svg");
}
@media screen and (min-width: 1024px) {
  .add-arrows-row {
    --arrows-display: block;
  }
  .add-arrows-row--secondary-blue {
    --arrows-display: none;
  }
}
@media screen and (min-width: 1150px) {
  .add-arrows-row--secondary-blue {
    --arrows-display: block;
  }
}

.solo-arrow .heading__arrow:not(:first-child) {
  display: none;
}

.ng-mt-0 {
  margin-top: -0px;
}

.ng-mt-1 {
  margin-top: -1px;
}

.ng-mt-2 {
  margin-top: -2px;
}

.ng-mt-3 {
  margin-top: -3px;
}

.ng-mt-4 {
  margin-top: -4px;
}

.ng-mt-5 {
  margin-top: -5px;
}

.ng-mt-6 {
  margin-top: -6px;
}

.ng-mt-7 {
  margin-top: -7px;
}

.ng-mt-8 {
  margin-top: -8px;
}

.ng-mt-9 {
  margin-top: -9px;
}

.ng-mt-10 {
  margin-top: -10px;
}

.ng-mt-11 {
  margin-top: -11px;
}

.ng-mt-12 {
  margin-top: -12px;
}

.ng-mt-13 {
  margin-top: -13px;
}

.ng-mt-14 {
  margin-top: -14px;
}

.ng-mt-15 {
  margin-top: -15px;
}

.ng-mt-16 {
  margin-top: -16px;
}

.ng-mt-17 {
  margin-top: -17px;
}

.ng-mt-18 {
  margin-top: -18px;
}

.ng-mt-19 {
  margin-top: -19px;
}

.ng-mt-20 {
  margin-top: -20px;
}

.ng-mt-21 {
  margin-top: -21px;
}

.ng-mt-22 {
  margin-top: -22px;
}

.ng-mt-23 {
  margin-top: -23px;
}

.ng-mt-24 {
  margin-top: -24px;
}

.ng-mt-25 {
  margin-top: -25px;
}

.ng-mt-26 {
  margin-top: -26px;
}

.ng-mt-27 {
  margin-top: -27px;
}

.ng-mt-28 {
  margin-top: -28px;
}

.ng-mt-29 {
  margin-top: -29px;
}

.ng-mt-30 {
  margin-top: -30px;
}

.ng-mt-31 {
  margin-top: -31px;
}

.ng-mt-32 {
  margin-top: -32px;
}

.ng-mt-33 {
  margin-top: -33px;
}

.ng-mt-34 {
  margin-top: -34px;
}

.ng-mt-35 {
  margin-top: -35px;
}

.ng-mt-36 {
  margin-top: -36px;
}

.ng-mt-37 {
  margin-top: -37px;
}

.ng-mt-38 {
  margin-top: -38px;
}

.ng-mt-39 {
  margin-top: -39px;
}

.ng-mt-40 {
  margin-top: -40px;
}

.ng-mt-41 {
  margin-top: -41px;
}

.ng-mt-42 {
  margin-top: -42px;
}

.ng-mt-43 {
  margin-top: -43px;
}

.ng-mt-44 {
  margin-top: -44px;
}

.ng-mt-45 {
  margin-top: -45px;
}

.ng-mt-46 {
  margin-top: -46px;
}

.ng-mt-47 {
  margin-top: -47px;
}

.ng-mt-48 {
  margin-top: -48px;
}

.ng-mt-49 {
  margin-top: -49px;
}

.ng-mt-50 {
  margin-top: -50px;
}

.ng-mt-51 {
  margin-top: -51px;
}

.ng-mt-52 {
  margin-top: -52px;
}

.ng-mt-53 {
  margin-top: -53px;
}

.ng-mt-54 {
  margin-top: -54px;
}

.ng-mt-55 {
  margin-top: -55px;
}

.ng-mt-56 {
  margin-top: -56px;
}

.ng-mt-57 {
  margin-top: -57px;
}

.ng-mt-58 {
  margin-top: -58px;
}

.ng-mt-59 {
  margin-top: -59px;
}

.ng-mt-60 {
  margin-top: -60px;
}

.ng-mt-61 {
  margin-top: -61px;
}

.ng-mt-62 {
  margin-top: -62px;
}

.ng-mt-63 {
  margin-top: -63px;
}

.ng-mt-64 {
  margin-top: -64px;
}

.ng-mt-65 {
  margin-top: -65px;
}

.ng-mt-66 {
  margin-top: -66px;
}

.ng-mt-67 {
  margin-top: -67px;
}

.ng-mt-68 {
  margin-top: -68px;
}

.ng-mt-69 {
  margin-top: -69px;
}

.ng-mt-70 {
  margin-top: -70px;
}

.ng-mt-71 {
  margin-top: -71px;
}

.ng-mt-72 {
  margin-top: -72px;
}

.ng-mt-73 {
  margin-top: -73px;
}

.ng-mt-74 {
  margin-top: -74px;
}

.ng-mt-75 {
  margin-top: -75px;
}

.ng-mt-76 {
  margin-top: -76px;
}

.ng-mt-77 {
  margin-top: -77px;
}

.ng-mt-78 {
  margin-top: -78px;
}

.ng-mt-79 {
  margin-top: -79px;
}

.ng-mt-80 {
  margin-top: -80px;
}

.ng-mt-81 {
  margin-top: -81px;
}

.ng-mt-82 {
  margin-top: -82px;
}

.ng-mt-83 {
  margin-top: -83px;
}

.ng-mt-84 {
  margin-top: -84px;
}

.ng-mt-85 {
  margin-top: -85px;
}

.ng-mt-86 {
  margin-top: -86px;
}

.ng-mt-87 {
  margin-top: -87px;
}

.ng-mt-88 {
  margin-top: -88px;
}

.ng-mt-89 {
  margin-top: -89px;
}

.ng-mt-90 {
  margin-top: -90px;
}

.ng-mt-91 {
  margin-top: -91px;
}

.ng-mt-92 {
  margin-top: -92px;
}

.ng-mt-93 {
  margin-top: -93px;
}

.ng-mt-94 {
  margin-top: -94px;
}

.ng-mt-95 {
  margin-top: -95px;
}

.ng-mt-96 {
  margin-top: -96px;
}

.ng-mt-97 {
  margin-top: -97px;
}

.ng-mt-98 {
  margin-top: -98px;
}

.ng-mt-99 {
  margin-top: -99px;
}

.ng-mt-100 {
  margin-top: -100px;
}

.ng-mb-0 {
  margin-bottom: -0px;
}

.ng-mb-1 {
  margin-bottom: -1px;
}

.ng-mb-2 {
  margin-bottom: -2px;
}

.ng-mb-3 {
  margin-bottom: -3px;
}

.ng-mb-4 {
  margin-bottom: -4px;
}

.ng-mb-5 {
  margin-bottom: -5px;
}

.ng-mb-6 {
  margin-bottom: -6px;
}

.ng-mb-7 {
  margin-bottom: -7px;
}

.ng-mb-8 {
  margin-bottom: -8px;
}

.ng-mb-9 {
  margin-bottom: -9px;
}

.ng-mb-10 {
  margin-bottom: -10px;
}

.ng-mb-11 {
  margin-bottom: -11px;
}

.ng-mb-12 {
  margin-bottom: -12px;
}

.ng-mb-13 {
  margin-bottom: -13px;
}

.ng-mb-14 {
  margin-bottom: -14px;
}

.ng-mb-15 {
  margin-bottom: -15px;
}

.ng-mb-16 {
  margin-bottom: -16px;
}

.ng-mb-17 {
  margin-bottom: -17px;
}

.ng-mb-18 {
  margin-bottom: -18px;
}

.ng-mb-19 {
  margin-bottom: -19px;
}

.ng-mb-20 {
  margin-bottom: -20px;
}

.ng-mb-21 {
  margin-bottom: -21px;
}

.ng-mb-22 {
  margin-bottom: -22px;
}

.ng-mb-23 {
  margin-bottom: -23px;
}

.ng-mb-24 {
  margin-bottom: -24px;
}

.ng-mb-25 {
  margin-bottom: -25px;
}

.ng-mb-26 {
  margin-bottom: -26px;
}

.ng-mb-27 {
  margin-bottom: -27px;
}

.ng-mb-28 {
  margin-bottom: -28px;
}

.ng-mb-29 {
  margin-bottom: -29px;
}

.ng-mb-30 {
  margin-bottom: -30px;
}

.ng-mb-31 {
  margin-bottom: -31px;
}

.ng-mb-32 {
  margin-bottom: -32px;
}

.ng-mb-33 {
  margin-bottom: -33px;
}

.ng-mb-34 {
  margin-bottom: -34px;
}

.ng-mb-35 {
  margin-bottom: -35px;
}

.ng-mb-36 {
  margin-bottom: -36px;
}

.ng-mb-37 {
  margin-bottom: -37px;
}

.ng-mb-38 {
  margin-bottom: -38px;
}

.ng-mb-39 {
  margin-bottom: -39px;
}

.ng-mb-40 {
  margin-bottom: -40px;
}

.ng-mb-41 {
  margin-bottom: -41px;
}

.ng-mb-42 {
  margin-bottom: -42px;
}

.ng-mb-43 {
  margin-bottom: -43px;
}

.ng-mb-44 {
  margin-bottom: -44px;
}

.ng-mb-45 {
  margin-bottom: -45px;
}

.ng-mb-46 {
  margin-bottom: -46px;
}

.ng-mb-47 {
  margin-bottom: -47px;
}

.ng-mb-48 {
  margin-bottom: -48px;
}

.ng-mb-49 {
  margin-bottom: -49px;
}

.ng-mb-50 {
  margin-bottom: -50px;
}

.ng-mb-51 {
  margin-bottom: -51px;
}

.ng-mb-52 {
  margin-bottom: -52px;
}

.ng-mb-53 {
  margin-bottom: -53px;
}

.ng-mb-54 {
  margin-bottom: -54px;
}

.ng-mb-55 {
  margin-bottom: -55px;
}

.ng-mb-56 {
  margin-bottom: -56px;
}

.ng-mb-57 {
  margin-bottom: -57px;
}

.ng-mb-58 {
  margin-bottom: -58px;
}

.ng-mb-59 {
  margin-bottom: -59px;
}

.ng-mb-60 {
  margin-bottom: -60px;
}

.ng-mb-61 {
  margin-bottom: -61px;
}

.ng-mb-62 {
  margin-bottom: -62px;
}

.ng-mb-63 {
  margin-bottom: -63px;
}

.ng-mb-64 {
  margin-bottom: -64px;
}

.ng-mb-65 {
  margin-bottom: -65px;
}

.ng-mb-66 {
  margin-bottom: -66px;
}

.ng-mb-67 {
  margin-bottom: -67px;
}

.ng-mb-68 {
  margin-bottom: -68px;
}

.ng-mb-69 {
  margin-bottom: -69px;
}

.ng-mb-70 {
  margin-bottom: -70px;
}

.ng-mb-71 {
  margin-bottom: -71px;
}

.ng-mb-72 {
  margin-bottom: -72px;
}

.ng-mb-73 {
  margin-bottom: -73px;
}

.ng-mb-74 {
  margin-bottom: -74px;
}

.ng-mb-75 {
  margin-bottom: -75px;
}

.ng-mb-76 {
  margin-bottom: -76px;
}

.ng-mb-77 {
  margin-bottom: -77px;
}

.ng-mb-78 {
  margin-bottom: -78px;
}

.ng-mb-79 {
  margin-bottom: -79px;
}

.ng-mb-80 {
  margin-bottom: -80px;
}

.ng-mb-81 {
  margin-bottom: -81px;
}

.ng-mb-82 {
  margin-bottom: -82px;
}

.ng-mb-83 {
  margin-bottom: -83px;
}

.ng-mb-84 {
  margin-bottom: -84px;
}

.ng-mb-85 {
  margin-bottom: -85px;
}

.ng-mb-86 {
  margin-bottom: -86px;
}

.ng-mb-87 {
  margin-bottom: -87px;
}

.ng-mb-88 {
  margin-bottom: -88px;
}

.ng-mb-89 {
  margin-bottom: -89px;
}

.ng-mb-90 {
  margin-bottom: -90px;
}

.ng-mb-91 {
  margin-bottom: -91px;
}

.ng-mb-92 {
  margin-bottom: -92px;
}

.ng-mb-93 {
  margin-bottom: -93px;
}

.ng-mb-94 {
  margin-bottom: -94px;
}

.ng-mb-95 {
  margin-bottom: -95px;
}

.ng-mb-96 {
  margin-bottom: -96px;
}

.ng-mb-97 {
  margin-bottom: -97px;
}

.ng-mb-98 {
  margin-bottom: -98px;
}

.ng-mb-99 {
  margin-bottom: -99px;
}

.ng-mb-100 {
  margin-bottom: -100px;
}

.ng-ml-0 {
  margin-left: -0px;
}

.ng-ml-1 {
  margin-left: -1px;
}

.ng-ml-2 {
  margin-left: -2px;
}

.ng-ml-3 {
  margin-left: -3px;
}

.ng-ml-4 {
  margin-left: -4px;
}

.ng-ml-5 {
  margin-left: -5px;
}

.ng-ml-6 {
  margin-left: -6px;
}

.ng-ml-7 {
  margin-left: -7px;
}

.ng-ml-8 {
  margin-left: -8px;
}

.ng-ml-9 {
  margin-left: -9px;
}

.ng-ml-10 {
  margin-left: -10px;
}

.ng-ml-11 {
  margin-left: -11px;
}

.ng-ml-12 {
  margin-left: -12px;
}

.ng-ml-13 {
  margin-left: -13px;
}

.ng-ml-14 {
  margin-left: -14px;
}

.ng-ml-15 {
  margin-left: -15px;
}

.ng-ml-16 {
  margin-left: -16px;
}

.ng-ml-17 {
  margin-left: -17px;
}

.ng-ml-18 {
  margin-left: -18px;
}

.ng-ml-19 {
  margin-left: -19px;
}

.ng-ml-20 {
  margin-left: -20px;
}

.ng-ml-21 {
  margin-left: -21px;
}

.ng-ml-22 {
  margin-left: -22px;
}

.ng-ml-23 {
  margin-left: -23px;
}

.ng-ml-24 {
  margin-left: -24px;
}

.ng-ml-25 {
  margin-left: -25px;
}

.ng-ml-26 {
  margin-left: -26px;
}

.ng-ml-27 {
  margin-left: -27px;
}

.ng-ml-28 {
  margin-left: -28px;
}

.ng-ml-29 {
  margin-left: -29px;
}

.ng-ml-30 {
  margin-left: -30px;
}

.ng-ml-31 {
  margin-left: -31px;
}

.ng-ml-32 {
  margin-left: -32px;
}

.ng-ml-33 {
  margin-left: -33px;
}

.ng-ml-34 {
  margin-left: -34px;
}

.ng-ml-35 {
  margin-left: -35px;
}

.ng-ml-36 {
  margin-left: -36px;
}

.ng-ml-37 {
  margin-left: -37px;
}

.ng-ml-38 {
  margin-left: -38px;
}

.ng-ml-39 {
  margin-left: -39px;
}

.ng-ml-40 {
  margin-left: -40px;
}

.ng-ml-41 {
  margin-left: -41px;
}

.ng-ml-42 {
  margin-left: -42px;
}

.ng-ml-43 {
  margin-left: -43px;
}

.ng-ml-44 {
  margin-left: -44px;
}

.ng-ml-45 {
  margin-left: -45px;
}

.ng-ml-46 {
  margin-left: -46px;
}

.ng-ml-47 {
  margin-left: -47px;
}

.ng-ml-48 {
  margin-left: -48px;
}

.ng-ml-49 {
  margin-left: -49px;
}

.ng-ml-50 {
  margin-left: -50px;
}

.ng-ml-51 {
  margin-left: -51px;
}

.ng-ml-52 {
  margin-left: -52px;
}

.ng-ml-53 {
  margin-left: -53px;
}

.ng-ml-54 {
  margin-left: -54px;
}

.ng-ml-55 {
  margin-left: -55px;
}

.ng-ml-56 {
  margin-left: -56px;
}

.ng-ml-57 {
  margin-left: -57px;
}

.ng-ml-58 {
  margin-left: -58px;
}

.ng-ml-59 {
  margin-left: -59px;
}

.ng-ml-60 {
  margin-left: -60px;
}

.ng-ml-61 {
  margin-left: -61px;
}

.ng-ml-62 {
  margin-left: -62px;
}

.ng-ml-63 {
  margin-left: -63px;
}

.ng-ml-64 {
  margin-left: -64px;
}

.ng-ml-65 {
  margin-left: -65px;
}

.ng-ml-66 {
  margin-left: -66px;
}

.ng-ml-67 {
  margin-left: -67px;
}

.ng-ml-68 {
  margin-left: -68px;
}

.ng-ml-69 {
  margin-left: -69px;
}

.ng-ml-70 {
  margin-left: -70px;
}

.ng-ml-71 {
  margin-left: -71px;
}

.ng-ml-72 {
  margin-left: -72px;
}

.ng-ml-73 {
  margin-left: -73px;
}

.ng-ml-74 {
  margin-left: -74px;
}

.ng-ml-75 {
  margin-left: -75px;
}

.ng-ml-76 {
  margin-left: -76px;
}

.ng-ml-77 {
  margin-left: -77px;
}

.ng-ml-78 {
  margin-left: -78px;
}

.ng-ml-79 {
  margin-left: -79px;
}

.ng-ml-80 {
  margin-left: -80px;
}

.ng-ml-81 {
  margin-left: -81px;
}

.ng-ml-82 {
  margin-left: -82px;
}

.ng-ml-83 {
  margin-left: -83px;
}

.ng-ml-84 {
  margin-left: -84px;
}

.ng-ml-85 {
  margin-left: -85px;
}

.ng-ml-86 {
  margin-left: -86px;
}

.ng-ml-87 {
  margin-left: -87px;
}

.ng-ml-88 {
  margin-left: -88px;
}

.ng-ml-89 {
  margin-left: -89px;
}

.ng-ml-90 {
  margin-left: -90px;
}

.ng-ml-91 {
  margin-left: -91px;
}

.ng-ml-92 {
  margin-left: -92px;
}

.ng-ml-93 {
  margin-left: -93px;
}

.ng-ml-94 {
  margin-left: -94px;
}

.ng-ml-95 {
  margin-left: -95px;
}

.ng-ml-96 {
  margin-left: -96px;
}

.ng-ml-97 {
  margin-left: -97px;
}

.ng-ml-98 {
  margin-left: -98px;
}

.ng-ml-99 {
  margin-left: -99px;
}

.ng-ml-100 {
  margin-left: -100px;
}

.ng-mr-0 {
  margin-right: -0px;
}

.ng-mr-1 {
  margin-right: -1px;
}

.ng-mr-2 {
  margin-right: -2px;
}

.ng-mr-3 {
  margin-right: -3px;
}

.ng-mr-4 {
  margin-right: -4px;
}

.ng-mr-5 {
  margin-right: -5px;
}

.ng-mr-6 {
  margin-right: -6px;
}

.ng-mr-7 {
  margin-right: -7px;
}

.ng-mr-8 {
  margin-right: -8px;
}

.ng-mr-9 {
  margin-right: -9px;
}

.ng-mr-10 {
  margin-right: -10px;
}

.ng-mr-11 {
  margin-right: -11px;
}

.ng-mr-12 {
  margin-right: -12px;
}

.ng-mr-13 {
  margin-right: -13px;
}

.ng-mr-14 {
  margin-right: -14px;
}

.ng-mr-15 {
  margin-right: -15px;
}

.ng-mr-16 {
  margin-right: -16px;
}

.ng-mr-17 {
  margin-right: -17px;
}

.ng-mr-18 {
  margin-right: -18px;
}

.ng-mr-19 {
  margin-right: -19px;
}

.ng-mr-20 {
  margin-right: -20px;
}

.ng-mr-21 {
  margin-right: -21px;
}

.ng-mr-22 {
  margin-right: -22px;
}

.ng-mr-23 {
  margin-right: -23px;
}

.ng-mr-24 {
  margin-right: -24px;
}

.ng-mr-25 {
  margin-right: -25px;
}

.ng-mr-26 {
  margin-right: -26px;
}

.ng-mr-27 {
  margin-right: -27px;
}

.ng-mr-28 {
  margin-right: -28px;
}

.ng-mr-29 {
  margin-right: -29px;
}

.ng-mr-30 {
  margin-right: -30px;
}

.ng-mr-31 {
  margin-right: -31px;
}

.ng-mr-32 {
  margin-right: -32px;
}

.ng-mr-33 {
  margin-right: -33px;
}

.ng-mr-34 {
  margin-right: -34px;
}

.ng-mr-35 {
  margin-right: -35px;
}

.ng-mr-36 {
  margin-right: -36px;
}

.ng-mr-37 {
  margin-right: -37px;
}

.ng-mr-38 {
  margin-right: -38px;
}

.ng-mr-39 {
  margin-right: -39px;
}

.ng-mr-40 {
  margin-right: -40px;
}

.ng-mr-41 {
  margin-right: -41px;
}

.ng-mr-42 {
  margin-right: -42px;
}

.ng-mr-43 {
  margin-right: -43px;
}

.ng-mr-44 {
  margin-right: -44px;
}

.ng-mr-45 {
  margin-right: -45px;
}

.ng-mr-46 {
  margin-right: -46px;
}

.ng-mr-47 {
  margin-right: -47px;
}

.ng-mr-48 {
  margin-right: -48px;
}

.ng-mr-49 {
  margin-right: -49px;
}

.ng-mr-50 {
  margin-right: -50px;
}

.ng-mr-51 {
  margin-right: -51px;
}

.ng-mr-52 {
  margin-right: -52px;
}

.ng-mr-53 {
  margin-right: -53px;
}

.ng-mr-54 {
  margin-right: -54px;
}

.ng-mr-55 {
  margin-right: -55px;
}

.ng-mr-56 {
  margin-right: -56px;
}

.ng-mr-57 {
  margin-right: -57px;
}

.ng-mr-58 {
  margin-right: -58px;
}

.ng-mr-59 {
  margin-right: -59px;
}

.ng-mr-60 {
  margin-right: -60px;
}

.ng-mr-61 {
  margin-right: -61px;
}

.ng-mr-62 {
  margin-right: -62px;
}

.ng-mr-63 {
  margin-right: -63px;
}

.ng-mr-64 {
  margin-right: -64px;
}

.ng-mr-65 {
  margin-right: -65px;
}

.ng-mr-66 {
  margin-right: -66px;
}

.ng-mr-67 {
  margin-right: -67px;
}

.ng-mr-68 {
  margin-right: -68px;
}

.ng-mr-69 {
  margin-right: -69px;
}

.ng-mr-70 {
  margin-right: -70px;
}

.ng-mr-71 {
  margin-right: -71px;
}

.ng-mr-72 {
  margin-right: -72px;
}

.ng-mr-73 {
  margin-right: -73px;
}

.ng-mr-74 {
  margin-right: -74px;
}

.ng-mr-75 {
  margin-right: -75px;
}

.ng-mr-76 {
  margin-right: -76px;
}

.ng-mr-77 {
  margin-right: -77px;
}

.ng-mr-78 {
  margin-right: -78px;
}

.ng-mr-79 {
  margin-right: -79px;
}

.ng-mr-80 {
  margin-right: -80px;
}

.ng-mr-81 {
  margin-right: -81px;
}

.ng-mr-82 {
  margin-right: -82px;
}

.ng-mr-83 {
  margin-right: -83px;
}

.ng-mr-84 {
  margin-right: -84px;
}

.ng-mr-85 {
  margin-right: -85px;
}

.ng-mr-86 {
  margin-right: -86px;
}

.ng-mr-87 {
  margin-right: -87px;
}

.ng-mr-88 {
  margin-right: -88px;
}

.ng-mr-89 {
  margin-right: -89px;
}

.ng-mr-90 {
  margin-right: -90px;
}

.ng-mr-91 {
  margin-right: -91px;
}

.ng-mr-92 {
  margin-right: -92px;
}

.ng-mr-93 {
  margin-right: -93px;
}

.ng-mr-94 {
  margin-right: -94px;
}

.ng-mr-95 {
  margin-right: -95px;
}

.ng-mr-96 {
  margin-right: -96px;
}

.ng-mr-97 {
  margin-right: -97px;
}

.ng-mr-98 {
  margin-right: -98px;
}

.ng-mr-99 {
  margin-right: -99px;
}

.ng-mr-100 {
  margin-right: -100px;
}

.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: #df4f60;
  --button-border-color: transparent;
  --button-hover-text-color: #fff;
  --button-hover-background-color: #bc4250;
  --button-hover-border-color: transparent;
}

.button {
  transition: all, 0.4s, ease-in-out 1s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: -moz-max-content;
  width: max-content;
  padding: 14px 12px;
  font-family: "hwt-artz", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--button-text-color);
  text-transform: uppercase;
  letter-spacing: 0.44px;
  background-color: var(--button-background-color);
  border: 2px solid var(--button-border-color);
  border-radius: 8px;
}
.button::after {
  transition: all, 0.4s, ease-in-out 1s ease-in-out;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 12px;
  background-color: var(--button-text-color);
  -webkit-mask-image: url("/assets/images/button-arrow.svg");
          mask-image: url("/assets/images/button-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.button:hover {
  color: var(--button-hover-text-color);
  background-color: var(--button-hover-background-color);
  border-color: var(--button-hover-border-color);
}
.button:hover::after {
  background-color: var(--button-hover-text-color);
}
.button--secondary {
  --button-text-color: #df4f60;
  --button-background-color: #fff;
  --button-border-color: #df4f60;
  --button-hover-text-color: #bc4250;
  --button-hover-background-color: #fff;
  --button-hover-border-color: #bc4250;
}
.button--tertiary {
  --button-text-color: #fff;
  --button-background-color: #999;
  --button-hover-text-color: #fff;
  --button-hover-background-color: #999;
}
.button--invisible {
  display: none !important;
  width: 0;
  height: 0;
  visibility: hidden;
}
.button--invisible::after {
  display: none;
}
.button__text {
  flex: 1;
  font-family: "hwt-artz", sans-serif;
}
.button--simple-dark {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  color: #52486e;
  background-color: transparent;
  border: none;
}
.button--simple-dark::after {
  order: 2;
  width: 16px;
  margin-right: 12px;
  margin-left: 10px;
  -webkit-mask-image: url("/assets/images/button-arrow.svg");
          mask-image: url("/assets/images/button-arrow.svg");
}
.button--simple-dark:hover {
  background-color: transparent;
}
.button--simple-dark .button__text {
  order: 1;
  margin-right: 10px;
}
.button--no-icon {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  background-color: transparent;
  border: none;
}
.button--no-icon::after {
  display: none;
}
.button--no-icon:hover {
  background-color: transparent;
}
.button--simple {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  background-color: transparent;
  border: none;
}
.button--simple::after {
  order: 2;
  width: 16px;
  margin-right: 12px;
  margin-left: 10px;
  -webkit-mask-image: url("/assets/images/simple-arrow.svg");
          mask-image: url("/assets/images/simple-arrow.svg");
}
.button--simple:hover {
  background-color: transparent;
}
.button--simple .button__text {
  order: 1;
  margin-right: 10px;
}
.button--back::after {
  transform: rotate(180deg);
  order: 1;
  width: 9px;
  margin-right: 12px;
  margin-left: 0;
  -webkit-mask-image: url("/assets/images/chevron-arrow.svg");
          mask-image: url("/assets/images/chevron-arrow.svg");
}
.button--back .button__text {
  order: 2;
}
.button--next::after {
  width: 9px;
  -webkit-mask-image: url("/assets/images/chevron-arrow.svg");
          mask-image: url("/assets/images/chevron-arrow.svg");
}
@media screen and (min-width: 375px) {
  .button {
    padding: 16px 20px 15px;
    font-size: 22px;
  }
}

.submit-button {
  transition: all, 0.4s, ease-in-out 1s ease-in-out;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "hwt-artz", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  color: var(--button-text-color);
  text-transform: uppercase;
  letter-spacing: 0.44px;
  background-color: var(--button-background-color);
  border: 2px solid var(--button-border-color);
  border-radius: 8px;
}
.submit-button::after {
  transition: all, 0.4s, ease-in-out 1s ease-in-out;
  content: "";
  position: absolute;
  right: 15px;
  width: 16px;
  height: 16px;
  margin-left: 12px;
  padding-right: 20px;
  background-color: var(--button-text-color);
  -webkit-mask-image: url("/assets/images/button-arrow.svg");
          mask-image: url("/assets/images/button-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.submit-button--tertiary {
  --button-text-color: #fff;
  --button-background-color: #999;
  --button-hover-text-color: #fff;
  --button-hover-background-color: #999;
  cursor: not-allowed;
}
.submit-button input {
  z-index: 2;
  width: 100%;
  padding: 16px 50px 15px 20px;
}
.submit-button input:disabled {
  cursor: not-allowed !important;
}

.site__header {
  /* Styles for Header Main Container */
  position: sticky;
  z-index: 3;
  top: 0;
  width: 100%;
  background-color: white;
}
.site__header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100vw;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
}
.site__header .header__inner {
  /* Styles for Header Content Container */
  width: 100%;
}
@media screen and (min-width: 1150px) {
  .site__header .header__inner {
    gap: 40px;
    position: relative;
    display: grid;
    grid-template-areas: "logo buttons empty" "logo items social";
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    row-gap: 24px;
    -moz-column-gap: 15px;
         column-gap: 15px;
    align-items: center;
    justify-content: flex-start;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-left: 20px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .header__inner > * {
      margin: calc(40px / 2);
    }
  }
}
@media screen and (min-width: 1200px) {
  .site__header .header__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .site__header .header__inner {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}
@media screen and (min-width: 1350px) {
  .site__header .header__inner {
    -moz-column-gap: 102.05px;
         column-gap: 102.05px;
    padding-right: 56.09px;
    padding-left: 55.67px;
  }
}
@media screen and (min-width: 1400px) {
  .site__header .header__inner {
    -moz-column-gap: 117px;
         column-gap: 117px;
    max-width: 1440px;
    margin: 0 auto;
  }
}
.site__header .header__top {
  /* Styles for Header Top Mobile Content & Logo Container */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px 10px 14.2px;
}
@media screen and (min-width: 1150px) {
  .site__header .header__top {
    display: inline-block;
    grid-area: logo;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    padding: 0;
  }
}
@media screen and (min-width: 1400px) {
  .site__header .header__top {
    padding-right: 19px;
  }
}
.site__header .header__button {
  /* Styles for Header Buttons */
  width: 40px;
  height: 40px;
  color: black;
  background-color: transparent;
}
.site__header .header__toggle {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  /* Styles for Header Mobile Toggle */
  width: 59px;
  height: 59px;
  padding: 0;
  line-height: 1;
  border: 3.06px solid #df4f60;
  border-radius: 50%;
}
.site__header .header__toggle::after {
  content: unset;
}
.site__header .header__toggle .icon__toggler {
  width: 32px;
  height: 32px;
}
.site__header .header__toggle .icon__toggler::before, .site__header .header__toggle .icon__toggler::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #52486e;
  border-radius: 50px;
  transition: transform 0.3s linear;
}
.site__header .header__toggle .icon__toggler::after {
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 0;
}
.site__header .header__toggle .icon__toggler--extra {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background-color: #52486e;
  border-radius: 50px;
}
.site__header .header__toggle--opened .icon__toggler::before {
  bottom: 0;
  transform: rotate(45deg);
  margin-top: auto;
  margin-bottom: auto;
}
.site__header .header__toggle--opened .icon__toggler::after {
  transform: rotate(-45deg);
}
.site__header .header__toggle--opened .icon__toggler--extra {
  display: none;
}
@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: 70px;
  max-width: 76px;
  height: 76px;
}
.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: 126.91px;
    max-width: 126.91px;
    height: 129.42px;
  }
}
.site__header .header__icon {
  /* Styles for Icons in Header */
  position: relative;
  display: inline-block;
  /* &.icon__toggler {
    border-bottom-width: 0;

    &::before {
      top: 8px;
      transform: rotate(45deg);
    }

    &::after {
      transform: rotate(-45deg);
    }
  } */
}
.site__header .header__icon::after, .site__header .header__icon::before {
  position: absolute;
  background-color: #52486e;
  transition: all 0.3s linear;
}
.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_button_links {
  display: none;
}
.site__header .header_button_links .item {
  border-bottom: 1px solid #fff;
}
.site__header .header_button_links .item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 1150px) {
  .site__header .header_button_links .item:nth-child(2) .button__icon {
    width: 29.52px;
    height: 22.14px;
  }
  .site__header .header_button_links .item:nth-child(3) .button__icon {
    width: 30.07px;
    height: 26.84px;
  }
}
.site__header .header_button_links .button {
  gap: 16px;
  justify-content: flex-start;
  width: 100%;
  text-transform: unset;
  border-radius: unset;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .site__header .header_button_links .button > * {
    margin: calc(16px / 2);
  }
}
.site__header .header_button_links .button::after {
  content: unset;
}
.site__header .header_button_links .button__icon {
  width: 28.71px;
  height: 29.82px;
}
.site__header .header_button_links .button__text {
  font-family: "bree-serif", serif;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  line-height: 40px;
  color: #fff;
  letter-spacing: 0.56px;
}
.site__header .header_button_links .button__text--secondary {
  font-family: "hwt-artz", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 32px;
}
@media screen and (min-width: 1150px) {
  .site__header .header_button_links .button {
    gap: 11.9px;
    width: -moz-fit-content;
    width: fit-content;
    padding: 15.91px 19.88px;
    border-width: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 3.977px 3.977px 5.965px 0 rgba(0, 0, 0, 0.15);
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .header_button_links .button > * {
      margin: calc(11.9px / 2);
    }
  }
  .site__header .header_button_links .button:hover {
    border-width: 0;
  }
}
@media screen and (min-width: 1150px) {
  .site__header .header_button_links {
    gap: 10px;
    display: flex;
    grid-area: buttons;
    justify-content: space-around;
    width: 825px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .header_button_links > * {
      margin: calc(10px / 2);
    }
  }
}
@media screen and (min-width: 1400px) {
  .site__header .header_button_links {
    gap: 31.81px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .header_button_links > * {
      margin: calc(31.81px / 2);
    }
  }
}
.site__header .social__grid_list {
  gap: 32px;
  display: none;
  flex-direction: row;
  padding-left: 20px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .site__header .social__grid_list > * {
    margin: calc(32px / 2);
  }
}
.site__header .social__grid_list .social__grid_icon {
  width: 48px;
  max-width: 48px;
  height: 48px;
}
@media screen and (min-width: 1150px) {
  .site__header .social__grid_list .social__grid_icon {
    width: 29.82px;
    max-width: 29.82px;
    height: 29.82px;
  }
}
@media screen and (min-width: 1150px) {
  .site__header .social__grid_list {
    gap: 10px;
    display: flex;
    grid-area: social;
    padding-left: 0;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .social__grid_list > * {
      margin: calc(10px / 2);
    }
  }
}
@media screen and (min-width: 1300px) {
  .site__header .social__grid_list {
    gap: 15px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .social__grid_list > * {
      margin: calc(15px / 2);
    }
  }
}
@media screen and (min-width: 1400px) {
  .site__header .social__grid_list {
    gap: 24px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .social__grid_list > * {
      margin: calc(24px / 2);
    }
  }
}
@media screen and (min-width: 1024px) {
  .site__header.add-arrows-row::after {
    bottom: 5px;
  }
}

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

.site__navigation {
  /* Styles for Main Nav Container */
  position: absolute;
  left: 0;
  overflow: hidden;
  width: 100vw;
  padding: 0;
  background-color: white;
}
.site__navigation--hidden {
  height: 0;
}
.site__navigation--hiding {
  animation: hide-navigation 0.35s;
}
.site__navigation--show {
  overflow-y: scroll;
  box-sizing: border-box;
  height: 100dvh;
  padding-bottom: 120px;
  animation: show-navigation 0.35s;
}
@media screen and (min-width: 1150px) {
  .site__navigation {
    position: relative;
    left: unset;
    overflow: unset;
    grid-area: items;
    width: 100%;
    max-width: 1080px;
    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-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 20px;
}
.nav__menu__item {
  /* Styles for List Item in Main Nav */
  gap: 10px;
  display: flex;
  row-gap: 0;
  align-items: center;
  width: 100%;
  background-color: #f2f2f2;
  border-top: 1px solid #52486e;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .nav__menu__item > * {
    margin: calc(10px / 2);
  }
}
.nav__menu__item--button-style {
  border-top: none;
  border-bottom: 1px solid #fff;
}
.nav__menu__item--button-style .button {
  gap: 16px;
  justify-content: flex-start;
  width: 100%;
  text-transform: unset;
  border-radius: unset;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .nav__menu__item--button-style .button > * {
    margin: calc(16px / 2);
  }
}
.nav__menu__item--button-style .button::after {
  content: unset;
}
.nav__menu__item--button-style .button__icon {
  width: 28.71px;
  height: 29.82px;
}
.nav__menu__item--button-style .button__text {
  font-family: "bree-serif", serif;
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  line-height: 40px;
  color: #fff;
  letter-spacing: 0.56px;
}
.nav__menu__item--button-style .button__text--secondary {
  font-family: "hwt-artz", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 32px;
}
.nav__menu__item--button-style:nth-child(2) .button__icon {
  width: 29.52px;
  height: 22.14px;
}
.nav__menu__item--button-style:nth-child(3) .button__icon {
  width: 30.073px;
  height: 26.84px;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item--button-style {
    display: none;
  }
}
.nav__menu__item--button-style + .nav__menu__item {
  border-top: none;
}
.nav__menu__item .menu-item__link {
  /* Styles for Links in Main List */
  width: 100%;
  padding: 15px 0;
  padding-left: 20px;
  font-family: "hwt-artz", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: 32px;
  color: #52486e;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item .menu-item__link {
    padding: 0;
  }
}
.nav__menu__item .header__button {
  /* Styles for buttons */
}
.nav__menu__item .header__button::after {
  content: unset;
}
.nav__menu__item .header__button .header__icon {
  /* Styles for icons */
  width: 20px;
  height: 12.87px;
}
.nav__menu__item .header__button .header__icon::before, .nav__menu__item .header__button .header__icon::after {
  width: 3px;
  height: 12.87px;
  background-color: #df4f60;
}
.nav__menu__item .header__button .header__icon::before {
  left: 5px;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item .header__button {
    display: none;
  }
}
.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% - 55px);
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.has__subnav .menu-item__link {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
  }
}
.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 */
}
.nav__menu__item:hover .menu-item__link {
  color: #bc4250;
}
.nav__menu__item.nav__menu__item--active .menu-item__link {
  color: #bc4250;
}
.nav__menu__item.nav__menu__item--social-style {
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 17px;
  background-color: transparent;
  border-top: none;
}
.nav__menu__item.nav__menu__item--social-style .social__grid_icon {
  width: 48px;
  max-width: 48px;
  height: 48px;
}
.nav__menu__item.nav__menu__item--social-style .menu-item__link {
  padding-left: 32px;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.nav__menu__item--social-style {
    display: none;
  }
}
.nav__menu__item:not(.nav__menu__item--social-style) + .nav__menu__item--social-style .menu-item__link {
  padding-left: 20px;
}
.nav__menu__item.show-submenu + .nav__menu__item {
  border-top: none;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item {
    gap: 0;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    background-color: transparent;
    border: none;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__menu__item > * {
      margin: calc(0 / 2);
    }
  }
}
@media screen and (min-width: 1150px) {
  .nav__menu {
    gap: 42px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    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(42px / 2);
    }
  }
}

.nav__subnav {
  /* Styles for List of Sub Menu */
  overflow: hidden;
  width: 100%;
  height: 0;
  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 transparent;
  animation: hide-submenu 0.35s;
}
@media screen and (min-width: 1150px) {
  .nav__subnav--horizontal .subnav__list {
    display: flex;
  }
}
@media screen and (min-width: 1150px) {
  .nav__subnav--vertical .subnav_list {
    display: flex;
    flex-direction: column;
  }
}
.nav__subnav .subnav__list {
  position: relative;
  background-color: #fff;
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__list {
    width: 100%;
    padding: 24px 20px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
  }
  .nav__subnav .subnav__list::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 15px;
    transform: rotate(45deg);
    display: block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-right-color: transparent;
    border-bottom-color: transparent;
  }
}
.nav__subnav .subnav__item {
  margin-bottom: 16px;
  list-style: none;
}
.nav__subnav .subnav__item:first-child {
  margin-top: 10px;
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item:first-child {
    margin-top: 0;
  }
}
.nav__subnav .subnav__item:last-child {
  margin-bottom: 10px;
}
@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;
  }
}
.nav__subnav .subnav__item .subnav-item__link {
  /* Styles for Links in Sub Menu */
  padding: 0 10px;
  padding-left: 20px;
  font-family: "vista-sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 40px;
  color: #52486e;
}
.nav__subnav .subnav__item .subnav-item__link:hover {
  font-weight: 900;
  color: #bc4250;
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item .subnav-item__link:hover {
    color: #bc4250;
    text-decoration-color: #bc4250;
  }
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item .subnav-item__link {
    width: 100%;
    margin-right: 10px;
    padding: 0;
    line-height: normal;
    text-decoration: underline;
    text-decoration-color: #fff;
    transition: all 0.2s linear;
  }
}
.nav__subnav .subnav__item.subnav__item--active .subnav-item__link {
  font-weight: 900;
  color: #bc4250;
}
.nav__subnav .subnav__item.subnav__item--active .subnav-item__link:hover {
  color: #bc4250;
}
@media screen and (min-width: 1150px) {
  .nav__subnav {
    position: absolute;
    z-index: 1;
    top: 85%;
    right: 0;
    width: -moz-max-content;
    width: max-content;
    background-color: transparent;
  }
  .nav__subnav .subnav_list {
    border-radius: 6px;
  }
  .nav__subnav .subnav__item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav__subnav--show {
    top: 85%;
    left: -20px;
    width: 300px;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 15px;
  }
  .nav__subnav--hiding {
    top: 85%;
    left: -20px;
    width: 300px;
    padding-top: 15px;
  }
}
@media screen and (min-width: 1300px) {
  .nav__subnav--show {
    width: 350px;
  }
  .nav__subnav--hiding {
    width: 350px;
  }
}
@media screen and (min-width: 1400px) {
  .nav__subnav--show {
    width: 428px;
  }
  .nav__subnav--hiding {
    width: 428px;
  }
}

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

.hero {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: var(--hero-bg);
}
.hero__full-height {
  height: 100vh;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
}
.hero__wrapper .hero__content-container {
  order: 2;
}
.hero__wrapper .hero__content-container .hero__content-wrapper {
  width: 100%;
  max-width: var(--hero-max-width-content-wrapper);
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}
.hero__wrapper .hero__image-container {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .hero__wrapper {
    flex-direction: row;
  }
  .hero__wrapper .hero__content-container {
    order: initial;
  }
  .hero__wrapper .hero__content-container .hero__content-wrapper {
    max-width: calc(var(--hero-max-width-content-wrapper) + (100% - var(--hero-max-width-content-wrapper)) / 2);
    margin-right: 0;
  }
}
.hero__actions {
  display: flex;
  flex-direction: column;
}
.hero__actions > *:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .hero__actions {
    flex-direction: row;
  }
  .hero__actions > *:not(:last-of-type) {
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
}
.hero__absolute-layout {
  position: relative;
}
.hero__absolute-layout .hero__wrapper {
  justify-content: center;
  height: calc(var(--hero-min-height) * 1px + (var(--hero-max-height) - var(--hero-min-height)) * (100vw - var(--hero-min-screen-size) * 1px) / (var(--hero-max-screen-size) - var(--hero-min-screen-size)));
  max-height: calc(var(--hero-max-height) * 1px);
}
.hero__absolute-layout .hero__wrapper .hero__content-container {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .hero__absolute-layout .hero__wrapper .hero__content-container .hero__content-wrapper {
    max-width: var(--hero-max-width-content-wrapper);
    margin-right: auto;
  }
}
@media screen and (min-width: 1024px) {
  .hero__absolute-layout .hero__wrapper {
    align-items: center;
    justify-content: flex-start;
  }
}
.hero__absolute-layout .hero__image-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__absolute-layout .hero__image-container picture {
  overflow: hidden;
  height: 100%;
}
.hero__absolute-layout .hero__image-container picture img {
  width: auto;
  max-width: initial;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__home {
  --hero-bg: #fff;
  margin-bottom: 18px;
  padding-top: 0;
  padding-bottom: 0;
}
.hero__home.hero__flex-layout .hero__content-container {
  width: 100%;
  background: linear-gradient(180deg, rgba(241, 187, 67, 0.2) 0%, rgba(152, 158, 206, 0) 102.72%);
}
.hero__home.hero__flex-layout .hero__content-container .hero__content-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 27.84px 25px 66.16px;
}
@media screen and (min-width: 768px) {
  .hero__home.hero__flex-layout .hero__content-container .hero__content-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 800px) {
  .hero__home.hero__flex-layout .hero__content-container .hero__content-wrapper {
    padding-top: 15px;
  }
}
@media screen and (min-width: 900px) {
  .hero__home.hero__flex-layout .hero__content-container .hero__content-wrapper {
    padding-top: 27.84px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__home.hero__flex-layout .hero__content-container .hero__content-wrapper {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    padding: 70px 0 0;
  }
}
@media screen and (min-width: 1400px) {
  .hero__home.hero__flex-layout .hero__content-container .hero__content-wrapper {
    margin-right: 0;
    margin-left: 0;
    padding: 81px 0 0 157px;
  }
}
@media screen and (min-width: 768px) {
  .hero__home.hero__flex-layout .hero__content-container {
    background: none;
  }
}
@media screen and (min-width: 1024px) {
  .hero__home.hero__flex-layout .hero__content-container {
    order: 2;
  }
}
.hero__home.hero__flex-layout .hero__image-container {
  position: relative;
}
.hero__home.hero__flex-layout .hero__image-container .hero__disclaimer {
  position: absolute;
  bottom: 6px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  line-height: 15px;
  color: #fff;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.55));
}
@media screen and (min-width: 1024px) {
  .hero__home.hero__flex-layout .hero__image-container .hero__disclaimer {
    bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .hero__home.hero__flex-layout .hero__image-container {
    max-width: 642px;
  }
}
.hero__home.hero__flex-layout .hero__title {
  margin-bottom: 8px;
  line-height: normal;
  color: #52486e;
}
.hero__home.hero__flex-layout .hero__title--secondary {
  font-family: "hwt-artz", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .hero__home.hero__flex-layout .hero__title--secondary {
    font-size: 60px;
  }
}
.hero__home.hero__flex-layout .hero__title em {
  font-family: "bree-serif", serif;
  font-style: italic;
}
@media screen and (min-width: 1024px) {
  .hero__home.hero__flex-layout .hero__title em {
    line-height: 57px;
  }
}
.hero__home.hero__flex-layout .hero__text {
  max-width: 35ch;
  margin-bottom: 24px;
  font-family: "vista-sans", sans-serif;
  font-size: 24px;
  line-height: 32px;
  color: #52486e;
}
@media screen and (min-width: 768px) and (max-width: 800px) {
  .hero__home.hero__flex-layout .hero__text {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__home.hero__flex-layout .hero__text {
    position: relative;
    max-width: 30ch;
    line-height: 36px;
  }
  .hero__home.hero__flex-layout .hero__text::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: calc(100% + 20px);
    right: 0;
    width: 85px;
    height: 85px;
    opacity: 0.25;
    background-color: #989ece;
    -webkit-mask-image: url("/assets/images/single-arrow.svg");
            mask-image: url("/assets/images/single-arrow.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
}
@media screen and (min-width: 1100px) {
  .hero__home.hero__flex-layout .hero__text {
    max-width: 41ch;
  }
}
@media screen and (min-width: 1200px) {
  .hero__home.hero__flex-layout .hero__text::after {
    width: 166px;
    height: 164.63px;
  }
}
@media screen and (min-width: 768px) {
  .hero__home.hero__flex-layout .hero__wrapper {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .hero__home.hero__flex-layout .hero__wrapper {
    max-width: 1440px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .hero__home.hero__flex-layout .hero__wrapper {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .hero__home {
    --hero-bg: linear-gradient(180deg, rgba(241, 187, 67, 0.2) 0%, rgba(152, 158, 206, 0) 102.72%);
    margin-bottom: 62px;
  }
}

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

.cookie {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  justify-content: center;
  padding-top: 21.82px;
  padding-right: 15px;
  padding-bottom: 21.82px;
  padding-left: 15px;
  font-family: "Vista Sans OTCE", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #fff;
  letter-spacing: 0.32px;
  background-color: #DF4F60;
}
.cookie .grid {
  display: grid;
  grid-gap: 0;
  grid-template-areas: "content";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  font-family: "Vista Sans OTCE", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #000;
  text-align: center;
  letter-spacing: 0.32px;
  background-color: #fff;
}
.cookie .grid.hidden {
  display: none;
}
.cookie .grid__content {
  display: flex;
  grid-area: content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 21.82px;
  padding-right: 15px;
  padding-bottom: 21.82px;
  padding-left: 15px;
}
.cookie.hidden {
  display: none;
}
.cookie__text {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.cookie__text_link {
  font-size: inherit;
  font-weight: 400;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie__button {
  cursor: pointer;
  padding: 5px;
}
.cookie__button_icon {
  width: 21.363px;
  height: 21.363px;
}
@media screen and (min-width: 1100px) {
  .cookie {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

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

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

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

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

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

/* stylelint-disable rule-empty-line-before */
.form {
  width: 100%;
  max-width: 741px;
  margin: auto;
}
.form input {
  width: 100%;
  border-radius: 0;
}
.form input[type=submit] {
  cursor: pointer;
}
.form input[type=checkbox], .form input[type=radio] {
  transform: translateY(-0.075em);
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: currentcolor;
  border: 1px solid #989ece;
}
.form input[type=radio] {
  border-radius: 50%;
}
.form 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;
}
.form input[type=radio]:checked::before {
  transform: scale(1.5);
}
.form input[type=checkbox] {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}
.form input[type=checkbox]::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url("/assets/images/check-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.form input[type=checkbox]:checked {
  background-color: #52486e;
  border-color: #989ece;
}
.form input:focus {
  border: 1px solid #989ece;
  box-shadow: 4px 4px 8px rgba(152, 158, 206, 0.4);
}
.form .form__control-required {
  margin-top: -1rem;
  padding-left: 1rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #322F3F;
}
.form .form__control-required span {
  color: #df4f60;
}
@media screen and (max-width: 768px) {
  .form .form__control-required {
    margin-bottom: 1rem;
  }
}
.form .form__group {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
}
.form .form__group-placeholder {
  position: absolute;
  margin-top: 5px;
  margin-left: 15px;
  font-size: 20px;
  color: #999;
}
.form .form__group-placeholder span {
  color: #df4f60;
}
.form .form__group input {
  height: 60px !important;
}
.form .form__group input:not(:-moz-placeholder-shown) ~ span {
  z-index: -1;
}
.form .form__group input:focus ~ span, .form .form__group input:not(:placeholder-shown) ~ span {
  z-index: -1;
}
.form .form__control {
  position: relative;
  display: block;
  margin-bottom: 1rem;
  padding: 0;
  padding-bottom: 0;
  transition: all 100ms ease-in-out;
  /* stylelint-disable-next-line no-descending-specificity */
}
.form .form__control--no-padding {
  margin-top: 18px;
  padding: 0;
}
.form .form__control .form__control-label,
.form .form__control .form__control-legend {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #52486e;
}
@media screen and (max-width: 768px) {
  .form .form__control .form__control-label,
  .form .form__control .form__control-legend {
    line-height: 32px;
  }
}
.form .form__control .form__control-legend {
  line-height: 18px;
}
.form .form__control .form__control-error {
  display: none;
  font-size: 1rem;
  color: #df4f60;
}
@media screen and (min-width: 1024px) {
  .form .form__control .form__control-error {
    font-size: 0.875rem;
  }
}
.form .form__control #pem-form-error {
  position: absolute;
  font-size: 1rem;
  color: #df4f60;
}
.form .form__control.field-required .form__control-label::after,
.form .form__control.field-required .form__control-legend::after {
  content: "*";
  display: inline-block;
  color: #df4f60;
}
.form .form__control .form__control-input {
  width: 100%;
  height: 2.9375rem;
  padding: 0.625rem 1rem;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  color: #322F3F;
  background-color: #fff;
  outline: 1px solid #989ece;
}
.form .form__control .form__control-input::-moz-placeholder {
  font-size: 1.125rem;
  font-weight: 300;
  color: #999;
}
.form .form__control .form__control-input::placeholder {
  font-size: 1.125rem;
  font-weight: 300;
  color: #999;
}
.form .form__control .form__control-select-wrapper {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.125rem;
  font-weight: 300;
  color: #999;
  border: 1px solid #989ece;
  outline: unset;
}
.form .form__control .form__control-select-wrapper .form__control-select {
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  padding-block: 8px;
  color: #000;
}
.form .form__control .form__control-select-wrapper .form__control-select:focus {
  border: none;
  outline: none;
}
.form .form__control .form__control-select-wrapper .form__control-select option,
.form .form__control .form__control-select-wrapper .form__control-select option:checked {
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
}
.form .form__control .form__control-select-wrapper .form__control-select option:disabled {
  color: #999;
}
.form .form__control .form__control-radio,
.form .form__control .form__control-checkbox {
  display: flex;
  align-items: flex-start;
}
.form .form__control .form__control-radio:not(:last-of-type),
.form .form__control .form__control-checkbox:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.form .form__control .form__control-radio input,
.form .form__control .form__control-checkbox input {
  margin-right: 0.625rem;
}
.form .form__control .form__control-checkbox {
  align-items: flex-start;
}
.form .form__control .form__control-checkbox .form__control-label {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  line-height: 17.5px;
  color: #322F3F;
}
@media screen and (min-width: 768px) {
  .form .form__control .form__control-checkbox .form__control-label {
    font-size: 1.125rem;
  }
}
.form .form__control .nice-select.open .option.disabled {
  display: none;
}
.form .form__control .nice-select.open .option.selected {
  background-color: #f2f2f2;
}
.form .form__control.error .form__control-input,
.form .form__control.error .form__control-select-wrapper {
  border-color: #df4f60;
  outline-color: #df4f60;
}
.form .form__control.error .form__control-input:focus,
.form .form__control.error .form__control-select-wrapper:focus {
  box-shadow: none;
}
.form .form__control.error .form__control-error {
  display: block;
}
.form .form__control.error input[type=checkbox] {
  border: 1px solid #bc4250;
}
.form .form__control.valid .nice-select .current {
  color: #322F3F;
}
.form .form__disclaimer-text {
  margin-top: 5px;
  font-size: 16px;
  color: #322F3F;
}
.form .form__disclaimer-star {
  color: #df4f60;
}

.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 {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.accordion__item_icon {
  aspect-ratio: 1;
  width: 56px;
  margin-right: 8px;
}
.accordion__item_title {
  cursor: pointer;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  line-height: 1.5588rem;
  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: 5000px;
}
.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";
}

.transcript__accordion {
  padding-right: 0;
  padding-left: 0;
}
.transcript__accordion .accordion__item_header {
  padding-top: 0;
  padding-bottom: 0;
}
.transcript__accordion .accordion__item_title {
  align-items: center;
  padding-top: 20px;
  padding-right: 11px;
  padding-bottom: 20px;
  font-family: "hwt-artz", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: 32px;
  color: #52486e;
  border-top: 1px solid #989ece;
  border-bottom: 1px solid #989ece;
}
.transcript__accordion .accordion__item_title::after {
  margin-top: 0;
  background-image: url("/assets/images/angle-down.svg");
}
.transcript__accordion .accordion__item_content {
  max-width: 81ch;
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #4d4a63;
}
.transcript__accordion .accordion__item_content p {
  padding-bottom: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.transcript__accordion[aria-expanded=true] {
  background-color: #fff;
}
.transcript__accordion[aria-expanded=true] .accordion__item_title {
  border-bottom: 0;
  transition: border-bottom 0.3s ease-in-out;
}
.transcript__accordion[aria-expanded=true] .accordion__item_content {
  padding-bottom: 30px;
}

.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 {
  overflow: hidden;
  border-radius: 10px;
}
.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: 50px;
  padding-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #fff;
  background-color: #52486e;
}
.footer__grid {
  display: grid;
  row-gap: 30px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .footer__grid {
    grid-template-areas: "branding social text links";
    -moz-column-gap: 82px;
         column-gap: 82px;
  }
}
.footer p {
  margin-bottom: 15px;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.footer p.copy {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .footer p.copy br {
    display: none;
  }
}
.footer p.copy .date {
  display: block;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .footer p.copy .date {
    margin-top: 0;
  }
}
.footer__branding .footer__logo img {
  width: 200.008px;
  height: 54.756px;
  -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;
  }
}
@media screen and (min-width: 1024px) {
  .footer__branding {
    grid-area: branding;
    grid-column-start: 1;
    grid-row-end: 4;
    grid-row-start: 2;
  }
}
.footer__social_links .social__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
.footer__social_links .social__grid_heading {
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  color: #fff;
  letter-spacing: 0.44px;
}
.footer__social_links .social__grid_list {
  display: flex;
  gap: 12px;
}
.footer__social_links .social__grid_list .item {
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 428px) {
  .footer__social_links .social__grid {
    grid-template-columns: 197px 1fr;
  }
}
@media screen and (min-width: 768px) {
  .footer__social_links .social__grid {
    grid-template-columns: auto 1fr;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__social_links {
    display: grid;
    grid-area: social;
    grid-column-end: text-end;
  }
}
.footer__text .copy__break {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__text .copy__break {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .footer__text {
    grid-area: text;
    grid-column-start: 2;
    grid-row-start: 2;
  }
}
@media screen and (min-width: 1024px) {
  .footer__links {
    grid-area: links;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-row-start: 3;
  }
}

.footer__nav_menu {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav_menu_item {
  margin-bottom: 21px;
}
.footer__nav_menu_item_link {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 22px;
}
.footer__nav_menu_item_link .icon {
  width: 36px;
  height: 17px;
}
.footer__nav_menu_item_link:active {
  color: #ccc;
}
.footer__nav_menu_item.privacy__choices a {
  position: relative;
}
.footer__nav_menu_item.privacy__choices a::before {
  content: "";
  position: relative;
  display: block;
  width: 36px;
  height: 17px;
  background-image: url("/assets/images/footer/privacy-choices-icon.svg");
}
@media screen and (min-width: 375px) {
  .footer__nav_menu {
    grid-template-columns: auto 1fr;
  }
}
@media screen and (min-width: 428px) {
  .footer__nav_menu {
    -moz-column-gap: 36px;
         column-gap: 36px;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav_menu {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  .footer__nav_menu {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
@media screen and (min-width: 1100px) {
  .footer__nav_menu {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (min-width: 1250px) {
  .footer__nav_menu {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}

.fancybox__container {
  --fancybox-bg: rgb(153 153 153 / 80%);
}

.modal {
  position: relative;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 70px 0 rgba(0, 26, 82, 0.1);
}
.modal .modal__header {
  display: flex;
  flex-direction: column;
}
.modal .modal__close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  font-size: 19px;
  font-weight: 700;
  color: #52486e;
}
.modal .modal__close:focus-visible {
  outline: none;
}
.modal .modal__close img {
  width: 40px;
  height: 40px;
  margin-top: -5px;
  margin-right: 0.5rem;
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .modal .modal__close img {
    width: 45px;
    height: 45px;
    margin-top: 0.5rem;
  }
}
.modal .modal__close--none {
  display: none;
}
@media screen and (max-width: 768px) {
  .modal .modal__close--only-md {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .modal .modal__close {
    top: 1rem;
  }
}
.modal .modal__icon {
  height: 133px;
  margin-top: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .modal .modal__icon {
    height: 205px;
  }
}
.modal .modal__title {
  margin-top: 2rem;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  font-family: "bree-serif", serif;
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
  line-height: 40.8px;
  color: #52486e;
  text-align: center;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
@supports (-webkit-touch-callout: none) {
  .modal .modal__title {
    overflow-wrap: normal;
  }
}
@media screen and (min-width: 768px) {
  .modal .modal__title {
    font-size: 56px;
    line-height: 102%;
  }
}
.modal [data-modal-header] {
  display: flex;
  justify-content: space-between;
}
.modal .modal__content {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .modal .modal__content {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
.modal .modal__text {
  max-width: 35ch;
  margin-right: auto;
  margin-left: auto;
  line-height: 32px;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .modal .modal__text--margin {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .modal .modal__text--margin {
    margin-right: 5rem;
    margin-left: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .modal .modal__text {
    max-width: 40ch;
  }
}
.modal [data-modal-actions] {
  gap: 1rem;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 20px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .modal [data-modal-actions] > * {
    margin: calc(1rem / 2);
  }
}
@media screen and (max-width: 768px) {
  .modal {
    width: 97%;
  }
}

.stay-informed-modal .modal__text {
  max-width: 36ch;
  color: #322F3F;
}
@media screen and (min-width: 1024px) {
  .stay-informed-modal .modal__text {
    max-width: 40ch;
  }
}
.stay-informed-modal .modal__title {
  margin-top: 20px;
  margin-bottom: 15px;
}
.stay-informed-modal .modal__actions {
  margin-top: 15px;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .exit-alexion-modal.modal {
    max-width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .exit-alexion-modal.modal {
    max-width: 1088px;
    padding-right: 61.5px;
    padding-left: 61.5px;
  }
}
@media screen and (max-width: 374px) {
  .exit-alexion-modal.modal .modal__title {
    font-size: 28px;
  }
}
@media screen and (min-width: 375px) and (max-width: 420px) {
  .exit-alexion-modal.modal .modal__title {
    font-size: 29px;
  }
  .exit-alexion-modal.modal .button {
    font-size: 15px;
  }
}
@media screen and (min-width: 375px) and (max-width: 420px) and (min-width: 375px) {
  .exit-alexion-modal.modal .button {
    font-size: 20px;
  }
}
.exit-alexion-modal .modal__title {
  max-width: 31ch;
}
.exit-alexion-modal .modal__text {
  max-width: 36ch;
  color: #322F3F;
}
@media screen and (min-width: 600px) {
  .exit-alexion-modal .modal__text {
    max-width: 40ch;
  }
}
@media screen and (min-width: 768px) {
  .exit-alexion-modal .modal__text {
    max-width: 59ch;
  }
}

.assessment-modal.modal {
  padding: 0;
}
@supports (-webkit-overflow-scrolling: touch) {
  .assessment-modal.modal input:not(#terms-and-conditions) {
    /* is iOS device */
    display: inline;
  }
}
@media screen and (max-width: 500px) {
  .assessment-modal.modal {
    width: 92%;
    margin-top: 2.7rem;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) {
  .assessment-modal.modal {
    width: 90%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1100px) {
  .assessment-modal.modal {
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .assessment-modal.modal {
    width: 85%;
  }
}
@media screen and (min-width: 1300px) {
  .assessment-modal.modal {
    width: 90%;
    max-width: 1240px;
  }
}
@media screen and (min-width: 1400px) and (min-height: 790px) {
  .assessment-modal.modal {
    overflow-y: hidden;
  }
}
@supports (-webkit-overflow-scrolling: touch) {
  .assessment-modal.modal {
    margin-top: 1rem;
  }
}
.assessment-modal .modal__close {
  top: 22px;
  right: -7px;
  display: flex;
  align-items: center;
  height: 30px;
  margin: 0;
  margin-top: 0;
  margin-right: 1rem;
  margin-bottom: 2rem;
}
.assessment-modal .modal__close img {
  width: 18px;
  height: 18px;
  margin-top: 0;
}
@media screen and (min-width: 1025px) {
  .assessment-modal .modal__close {
    position: relative;
    margin-top: 1rem;
    margin-left: auto;
    padding-right: 2rem;
  }
}
.assessment-modal .modal__content {
  margin: 0;
}
.assessment-modal .assessments {
  height: 0;
  margin: 0;
  visibility: hidden;
}
.assessment-modal .assessments .question,
.assessment-modal .assessments .img,
.assessment-modal .assessments .question-index,
.assessment-modal .assessments .response {
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.assessment-modal .assessments--active {
  max-width: 100%;
  height: auto;
  visibility: visible;
  opacity: 1;
}
.assessment-modal .assessments--active .question,
.assessment-modal .assessments--active .img,
.assessment-modal .assessments--active .question-index,
.assessment-modal .assessments--active .response {
  visibility: visible;
  opacity: 1;
}
.assessment-modal .assessments .button {
  padding-top: 0.9rem;
  padding-right: 1.5rem;
  padding-bottom: 0.9rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .assessment-modal .assessments {
    flex-direction: column;
  }
  .assessment-modal .assessments .assessments__question {
    width: 100%;
    max-width: 100%;
  }
  .assessment-modal .assessments .assessments__responses {
    width: 100%;
    max-width: 100%;
  }
}

.assessment-result .assessments__question {
  place-items: unset;
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .assessment-result .assessments__question {
    padding-left: 1.1rem;
  }
}
.assessment-result .assessments__responses {
  padding-right: 10px;
  padding-left: 12px;
}
@media screen and (min-width: 600px) {
  .assessment-result .assessments__responses {
    padding-left: 23.6px;
  }
}
.assessment-result .modal__close {
  display: none;
}
@media screen and (min-width: 768px) {
  .assessment-result .assessments__responses {
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .assessment-result .assessments__responses {
    padding: 3rem 44px;
  }
}

.exit-assessment.modal {
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .exit-assessment.modal [data-modal-actions] {
    flex-direction: column;
  }
  .exit-assessment.modal [data-modal-actions] .button {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 700px) {
  .exit-assessment.modal {
    width: 70%;
  }
}
.exit-assessment .modal__text {
  margin-top: 3rem;
  font-weight: 700;
  color: #52486e;
}
@media screen and (max-width: 768px) {
  .exit-assessment .modal__text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .exit-assessment .modal__text {
    max-width: 70ch;
  }
}

.assessments {
  display: flex;
  flex-direction: column;
}
.assessments__question {
  display: grid;
  place-items: center;
  background: linear-gradient(359deg, rgba(152, 158, 206, 0.2) 0%, rgba(152, 158, 206, 0) 102.72%);
}
.assessments__question-content {
  display: grid;
  justify-items: center;
}
.assessments__question .img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .assessments__question .img {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .assessments__question .img {
    width: 140px;
    height: 140px;
  }
}
.assessments__question .question {
  max-width: 17ch;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: "hwt-artz", sans-serif, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  color: #df4f60;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .assessments__question .question {
    font-size: 36px;
    line-height: 105%;
  }
}
.assessments__question .indication {
  max-width: 27ch;
  font-size: 20px;
  font-weight: 700;
  color: #52486e;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .assessments__question .indication {
    font-size: 24px;
    line-height: 40px;
  }
}
.assessments__question .question-range {
  font-size: 20px;
  font-weight: 400;
  color: #322F3F;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .assessments__question .question-range {
    font-size: 24px;
    line-height: 40px;
  }
}
.assessments__question .question-index {
  font-weight: 600;
  color: #df4f60;
}
@media screen and (min-width: 1000px) {
  .assessments__question {
    flex-basis: unset;
    width: 440px;
    max-width: 440px;
  }
}
@media screen and (min-width: 1350px) {
  .assessments__question {
    flex-basis: unset;
    width: 475px;
    max-width: 475px;
  }
}
@media screen and (max-width: 1200px) {
  .assessments__question {
    padding-top: 3rem;
    padding-right: 1.1rem;
    padding-bottom: 2rem;
    padding-left: 1.1rem;
    border-radius: 10px 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .assessments__question {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.assessments__responses .responses {
  margin-bottom: 2rem;
  padding: 0 20px;
}
.assessments__responses .responses .response {
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 5rem;
  margin-top: 16px;
  padding: 0 20px;
  font-size: 20px;
  line-height: 24px;
  color: #322F3F;
  border: 1px solid #989ece;
}
@media screen and (min-width: 1025px) {
  .assessments__responses .responses .response {
    height: 6rem;
    margin-top: 24px;
    padding: 0 25px;
    font-size: 24px;
    line-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .assessments__responses .responses .response {
    height: -moz-fit-content;
    height: fit-content;
    min-height: 5rem;
    max-height: -moz-fit-content;
    max-height: fit-content;
    margin-top: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .assessments__responses .responses {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1300px) {
  .assessments__responses .responses {
    padding: 0 50px;
  }
}
.assessments__responses .navigation {
  margin-bottom: 2rem;
}
.assessments__responses .navigation .row {
  gap: 2rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .assessments__responses .navigation .row > * {
    margin: calc(2rem / 2);
  }
}
.assessments__responses .navigation .button--back {
  flex-direction: row-reverse;
  transition: none;
}
.assessments__responses .navigation .button--back::after {
  transition: none;
}
.assessments__responses .navigation .button--next {
  transition: none;
}
.assessments__responses .navigation .button--next::after {
  transition: none;
}
.assessments__responses .navigation .button--next-finish {
  padding-right: 25px;
  padding-left: 25px;
  transition: none;
}
.assessments__responses .navigation .button--next-finish::after {
  display: none;
  transition: none;
}
.assessments__responses .navigation .button--next:disabled {
  cursor: not-allowed;
}
@media screen and (min-width: 768px) {
  .assessments__responses {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .assessments__responses {
    flex-basis: unset;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1300px) {
  .assessments__responses {
    flex-basis: unset;
    width: 765px;
    max-width: 765px;
  }
}
.assessments .response__input:checked ~ .response {
  color: #fff;
  background-color: #52486e;
}
.assessments .response__input:checked ~ .response::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("/assets/images/mg-assessments/check-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media screen and (min-width: 901px) {
  .assessments .response__input:checked ~ .response::after {
    width: 28px;
    height: 28px;
  }
}
.assessments .link {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  color: #52486e;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.assessments .link::after {
  content: "";
  width: 100%;
  margin-top: -7px;
  border-bottom: 1px solid #4d4a63;
}
.assessments .link:hover {
  color: #bc4250;
}
.assessments .link:hover::after {
  border-color: #bc4250;
}
.assessments .link:active {
  color: #df4f60;
}
@media screen and (min-width: 1024px) {
  .assessments {
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.mg__measure-symptoms .form__controls {
  display: grid;
  grid-template-columns: 50% 50%;
  -moz-column-gap: 0;
       column-gap: 0;
}
@media screen and (max-width: 768px) {
  .mg__measure-symptoms .form__controls {
    grid-template-columns: 100%;
  }
}

.form__control--terms {
  align-items: flex-start;
}

.assessments__question-result {
  display: grid;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 0.5rem;
  margin-left: 2rem;
  color: #52486e;
}
.assessments__question-result .assessments-score__divider {
  width: 180px;
  height: 1px;
  background-color: #989ece;
}
@media screen and (max-width: 768px) {
  .assessments__question-result .assessments-score__divider {
    width: 55%;
  }
}
.assessments__question-result .assessments-score__indication {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.3rem;
}
@media screen and (max-width: 768px) {
  .assessments__question-result .assessments-score__indication {
    line-height: normal;
  }
}
.assessments__question-result .assessments-score__thank-msg {
  max-width: 30ch;
  padding-bottom: 1.5rem;
  line-height: 32px;
  color: #322F3F;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .assessments__question-result .assessments-score__thank-msg {
    line-height: 28px;
    letter-spacing: 0.4px;
  }
}
.assessments__question-result .assessments-score__score {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  margin-left: 1rem;
  font-family: "vista-sans-narrow", sans-serif, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 28px;
  color: #df4f60;
  letter-spacing: 1.28px;
}
.assessments__question-result .assessments-score__score span.hidden {
  display: none;
}
@media screen and (max-width: 1024px) {
  .assessments__question-result .assessments-score__score {
    font-size: 64px;
  }
}
.assessments__question-result .assessments-score__range {
  max-width: 22ch;
  margin-bottom: 1rem;
  padding-bottom: 5px;
  font-size: 24px;
  line-height: 40px;
}
@media screen and (max-width: 600px) {
  .assessments__question-result .assessments-score__range {
    max-width: 22ch;
  }
}
.assessments__question-result .assessments-score__print,
.assessments__question-result .assessments-score__print_title {
  display: block;
  max-width: 40ch;
  margin-top: 1rem;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 600px) {
  .assessments__question-result .assessments-score__print,
  .assessments__question-result .assessments-score__print_title {
    line-height: 40px;
  }
}
@media screen and (min-width: 400px) and (max-width: 470px) {
  .assessments__question-result .assessments-score__print,
  .assessments__question-result .assessments-score__print_title {
    min-width: 30ch;
    list-style: 28px;
  }
}
.assessments__question-result .assessments-score__print {
  font-size: 20px;
  line-height: 32px;
}
.assessments__question-result .assessments-score__startover {
  margin-top: 1rem;
}
@media screen and (min-width: 1200px) {
  .assessments__question-result {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .assessments__question-result .assessments-score__thank-msg {
    max-width: 30ch;
  }
  .assessments__question-result .assessments-score__score {
    max-width: 21ch;
  }
  .assessments__question-result .assessments-score__range {
    max-width: 21ch;
  }
  .assessments__question-result .assessments-score__print {
    max-width: 40ch;
  }
}
@media screen and (max-width: 600px) {
  .assessments__question-result {
    margin-left: 0;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .assessments__question-result {
    width: 100%;
    margin-top: 1rem;
    margin-left: 1rem;
    color: #52486e;
  }
}

.assessment-form,
.signup-form {
  margin-top: 1rem;
  margin-right: 1.5rem;
}
.assessment-form .form__title,
.signup-form .form__title {
  margin-bottom: 1rem;
  padding: 0 0.5rem;
  color: #322F3F;
}
@media screen and (max-width: 600px) {
  .assessment-form .form__title,
  .signup-form .form__title {
    max-width: 36ch;
    padding-right: 10px;
  }
}
.assessment-form .form .form__control,
.signup-form .form .form__control {
  padding: 0 10px;
}
.assessment-form .form .form__control-error,
.signup-form .form .form__control-error {
  left: 15px;
}
.assessment-form .form .form__control-checkbox + .form__control-error,
.signup-form .form .form__control-checkbox + .form__control-error {
  margin-top: -7px;
  margin-left: 35px;
}
.assessment-form .form .form__control-terms .form__control-label,
.signup-form .form .form__control-terms .form__control-label {
  font-size: 16px;
  line-height: 24px;
}
.assessment-form .form .form__control-terms .form__control-label .link,
.signup-form .form .form__control-terms .form__control-label .link {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .assessment-form .form .form__control-terms .form__control-label .link,
  .signup-form .form .form__control-terms .form__control-label .link {
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .assessment-form .form .form__control-terms .form__control-label,
  .signup-form .form .form__control-terms .form__control-label {
    line-height: 24px;
  }
}
.assessment-form .form .form__control-terms .form__control-error,
.signup-form .form .form__control-terms .form__control-error {
  top: 90%;
  left: 3rem;
}
@media screen and (max-width: 768px) {
  .assessment-form .form .form__control-terms .form__control-error,
  .signup-form .form .form__control-terms .form__control-error {
    top: 95%;
    left: 3.1rem;
  }
}
.assessment-form .form .form__control-terms .form__control-label::after,
.assessment-form .form .form__control-terms .form__control-legend::after,
.signup-form .form .form__control-terms .form__control-label::after,
.signup-form .form .form__control-terms .form__control-legend::after {
  margin-left: -3px;
}
.assessment-form .button--submit,
.signup-form .button--submit {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2rem;
}
.assessment-form .button--submit:disabled,
.signup-form .button--submit:disabled {
  cursor: not-allowed;
  background-color: #999;
}
.assessment-form .button--submit:disabled::after,
.signup-form .button--submit:disabled::after {
  display: none;
}
.assessment-form .button--submit:not(:disabled)::after,
.signup-form .button--submit:not(:disabled)::after {
  -webkit-mask-image: url("/assets/images/mg-assessments/check-icon.png");
          mask-image: url("/assets/images/mg-assessments/check-icon.png");
}
.assessment-form .button--submit.submit-button--tertiary input,
.signup-form .button--submit.submit-button--tertiary input {
  padding: 16px 20px 15px;
}
.assessment-form .button--submit.submit-button--tertiary::after,
.signup-form .button--submit.submit-button--tertiary::after {
  display: none;
}
@media screen and (max-width: 900px) {
  .assessment-form,
  .signup-form {
    margin-right: 0;
    margin-left: 0;
  }
}

.assessments-thanks-content {
  margin: 2rem 1.5rem;
}
.assessments-thanks-content .button--home {
  margin: auto;
  padding-top: 0.6rem;
  padding-right: 4rem !important;
  padding-bottom: 0.6rem;
  padding-left: 4rem !important;
}
.assessments-thanks-content .button--home::after {
  display: none;
}
@media screen and (min-width: 901px) {
  .assessments-thanks-content {
    margin: 0 2rem 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .assessments-thanks-content {
    margin-bottom: 0;
  }
}

.thanks-img {
  max-width: 200px;
  margin: 2rem 0;
}
@media screen and (min-width: 901px) {
  .thanks-img {
    max-width: 340px;
  }
}
.thanks-title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem !important;
  line-height: 105%;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 768px) {
  .thanks-title {
    line-height: normal;
  }
}
.thanks-text {
  max-width: 56ch;
  margin-bottom: 2rem;
  color: #322F3F;
}

.nice-select {
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
}
.nice-select::after {
  transform: rotate(0deg) translateY(0) translateX(-5px);
  width: 20px;
  height: 20px;
  background-image: url("/assets/images/select-caret-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
}
.nice-select .current {
  overflow: hidden;
  max-width: 480px;
  font-size: 20px;
  color: #999;
  white-space: wrap;
}
.nice-select .current.placeholder {
  color: #999;
}
@media screen and (min-width: 430px) {
  .nice-select .current {
    max-width: 100%;
  }
}
.nice-select .extended-select-item {
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.nice-select.open::after {
  transform: rotate(0deg) translateY(0) translateX(-5px);
}
.nice-select .nice-select-dropdown {
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
  margin-top: 0;
  border-top-color: #fff;
  border-radius: 0;
  outline: 1px solid #989ece;
  box-shadow: none;
}
.nice-select .nice-select-dropdown .list {
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.nice-select .nice-select-dropdown .list li {
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 20px;
  line-height: 30px;
  text-wrap: wrap;
  -moz-white-space: normal;
  -o-white-space: normal;
  white-space: normal;
  border-top: 1px solid #ccc;
}
.nice-select .nice-select-dropdown .list li:nth-child(2) {
  border-top: 0;
}
@media screen and (max-width: 768px) {
  .nice-select .nice-select-dropdown .list li {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
  }
}
.nice-select .nice-select-dropdown .option.disabled {
  border: none;
}
.nice-select .nice-select-dropdown .option.selected {
  font-weight: 500;
}
.nice-select .nice-select-dropdown .option.selected.focus {
  background-color: #f2f2f2;
}

.signup-form__content {
  display: flex;
  max-width: 1075px;
  margin: 75px auto;
  padding: 0 14px;
}
@media screen and (max-width: 1024px) {
  .signup-form__content {
    margin: 28px 14px 0;
    padding: 28px 0;
    border-top: 1px solid #989ece;
  }
}
.signup-form .form .form__control .form__control-label {
  line-height: 24px;
  color: #52486e;
}
.signup-form .form .form__control .form__control-label .link {
  display: inline;
  font-size: 16px;
  line-height: 22px;
  color: #4d4a63;
  text-decoration-color: rgba(77, 74, 99, 0.5);
}
.signup-form .form__arrow--left {
  align-self: center;
  width: 85px;
  height: 85px;
  margin-right: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .signup-form .form__arrow--left {
    display: none;
  }
}
.signup-form .form__arrow--right {
  align-self: flex-end;
  width: 125px;
  height: 125px;
  margin-bottom: 36px;
  margin-left: 50px;
}
@media screen and (max-width: 1024px) {
  .signup-form .form__arrow--right {
    display: none;
  }
}
.signup-form .submit-button {
  margin: 0 auto 2rem;
}
.signup-form .button-icon {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.signup-form .button-icon:disabled {
  cursor: not-allowed;
  background-color: #999;
}

.mg__card {
  overflow: hidden;
  background-color: #fff;
  border: 1px solid rgb(152, 158, 206);
  border-radius: 10px;
  transition: box-shadow 0.3s ease-in-out;
}
.mg__card:hover {
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.15);
}
.mg__card_body {
  padding-top: 32px;
  padding-right: 24px;
  padding-bottom: 32px;
  padding-left: 24px;
  border: 1px solid #f2f2f2;
  border-top: 0;
  border-right: 0;
  border-radius: 10px;
  border-top-left-radius: 0;
}
.mg__card_title {
  max-width: 399px;
  margin-bottom: 16px;
  font-family: "hwt-artz", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  color: #52486e;
}
.mg__card_text {
  margin-bottom: 17px;
  font-family: "vista-sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #52486e;
  letter-spacing: 0.27px;
}
.mg__card .button {
  padding: 16px 20px;
  font-size: 22px;
}
.mg__card_image_container {
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.mg__card_image_caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
  color: #fff;
}

.collections__nav .nav {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  list-style-type: none;
}
.collections__nav .nav__item {
  list-style-type: none;
}
.collections__nav .nav__item_link {
  font-family: "vista-sans", sans-serif, sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #52486e;
}
.collections__nav .nav__item_link.all:not(.no--next)::after {
  content: "|";
  display: inline-block;
  margin-left: 10px;
}
.collections__nav .nav__item_link:not(.next)::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 13px;
  margin-right: 2px;
  background-image: url("/assets/images/navigation/prev-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}
.collections__nav .nav__item_link:hover:not(.next)::before {
  background-image: url("/assets/images/navigation/prev-red.svg");
}
.collections__nav .nav__item_link:active:not(.next)::before {
  background-image: url("/assets/images/navigation/prev-red-active.svg");
}
.collections__nav .nav__item_link.next {
  color: #4d4a63;
}
.collections__nav .nav__item_link.next::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 13px;
  margin-left: 2px;
  background-image: url("/assets/images/navigation/next-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.collections__nav .nav__item_link.next:hover::after {
  background-image: url("/assets/images/navigation/next-red.svg");
}
.collections__nav .nav__item_link.next:active::after {
  background-image: url("/assets/images/navigation/next-red-active.svg");
}
.collections__nav .nav__item_link:hover {
  color: #bc4250;
  text-decoration: underline;
}
.collections__nav .nav__item_link:active {
  color: #df4f60;
  text-decoration: none;
}

.pem {
  position: relative;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding-top: 35px;
  padding-bottom: 10px;
  padding-left: 10px;
  background: linear-gradient(180deg, #52486e 13.24%, #989ece 100%);
  border: 1px solid rgb(152, 158, 206);
  border-radius: 10px;
  transition: box-shadow 0.3s ease-in-out;
}
.pem::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 11.85px;
  left: 0;
  display: block;
  width: 877px;
  height: 350px;
  background-image: url("/assets/images/pem-callout/arrows-mobile.svg");
  background-repeat: repeat;
  background-position: -3px top;
}
@media screen and (min-width: 428px) {
  .pem::before {
    bottom: 0;
    height: 410px;
  }
}
@media screen and (min-width: 432px) {
  .pem::before {
    bottom: 11.85px;
    width: 100%;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  .pem::before {
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
    width: 42%;
    height: 100%;
    background-image: url("/assets/images/pem-callout/arrows-desktop.svg");
  }
}
@media screen and (min-width: 992px) {
  .pem::before {
    width: 44%;
  }
}
.pem:hover {
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.15);
}
.pem__grid {
  position: relative;
}
@media screen and (min-width: 768px) {
  .pem__grid {
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
    justify-items: start;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .pem__grid {
    grid-template-columns: 60% 30%;
    -moz-column-gap: 68px;
         column-gap: 68px;
  }
}
@media screen and (min-width: 1024px) {
  .pem__grid {
    grid-template-columns: 65% 30%;
  }
}
@media screen and (min-width: 1440px) {
  .pem__grid {
    max-width: 1240px;
  }
}
.pem__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.pem__title_text {
  font-family: "bree-serif", serif;
  font-size: 36px;
  font-weight: 600;
  font-style: italic;
  line-height: normal;
  color: #fff;
}
.pem__title_text:nth-child(2) {
  text-transform: lowercase;
}
.pem__title_text:nth-child(3) {
  display: block;
  margin-left: 5px;
  font-family: "hwt-artz", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 105%;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 640px) {
  .pem__title_text:nth-child(3) {
    display: inline;
  }
}
@media screen and (min-width: 1024px) {
  .pem__title_text:nth-child(3) {
    font-weight: 700;
    line-height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .pem__title_text {
    font-weight: 600;
  }
  .pem__title_text_text:nth-child(2) {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .pem__title_text {
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
  }
  .pem__title_text_text:nth-child(2) {
    font-weight: 600;
  }
  .pem__title_text_text:nth-child(3) {
    line-height: 60px;
    text-transform: uppercase;
  }
}
.pem__description {
  width: 100%;
  max-width: 32ch;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
}
.pem__description.body-2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}
@media screen and (min-width: 428px) {
  .pem__description.body-2 {
    max-width: 33ch;
  }
}
@media screen and (min-width: 500px) {
  .pem__description.body-2 {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (min-width: 768px) {
  .pem__description.body-2 {
    max-width: 43ch;
    font-size: 18px;
    line-height: 32px;
  }
}
@media screen and (min-width: 900px) {
  .pem__description.body-2 {
    max-width: 48ch;
  }
}
@media screen and (min-width: 1024px) {
  .pem__description.body-2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1150px) {
  .pem__description.body-2 {
    max-width: 57ch;
  }
}
@media screen and (min-width: 428px) {
  .pem__description {
    max-width: 57ch;
  }
}
.pem__img {
  position: relative;
  z-index: 1;
  max-width: 95%;
  margin: auto;
  padding-top: 81px;
  padding-bottom: 23px;
}
@media screen and (min-width: 428px) {
  .pem__img {
    min-width: 70%;
    margin: unset;
    margin-left: 3.55px;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .pem__img {
    display: block;
    width: -moz-max-content;
    width: max-content;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .pem__img {
    min-width: unset;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .pem__img {
    width: 100%;
  }
}
.pem .button {
  position: relative;
  z-index: 1;
  max-width: 209px;
  font-size: 20px;
}
@media screen and (min-width: 428px) {
  .pem .button {
    max-width: 100%;
    font-size: 22px;
  }
}
@media screen and (min-width: 428px) {
  .pem {
    padding-right: 30px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .pem {
    padding-bottom: 20px;
    background: linear-gradient(90deg, #52486e 1.99%, #989ece 100%);
  }
}
@media screen and (min-width: 992px) {
  .pem {
    padding-top: 35px;
    padding-right: 0;
    padding-bottom: 30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .pem {
    padding-right: 52px;
    padding-bottom: 46px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .pem {
    width: 100%;
    max-width: 1240px;
    padding-right: 61px;
    padding-bottom: 26px;
    padding-left: 68px;
  }
}

.share__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding-top: 10px;
  padding-bottom: 10px;
}
.share__buttons_label {
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 32px;
  color: #4d4a63;
  text-transform: uppercase;
}
.share__buttons .share__list {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  margin-left: 8px;
  list-style-type: none;
}
.share__buttons .share__list_item {
  list-style-type: inherit;
}
.share__buttons .share__list_item .share__button {
  cursor: pointer;
}

.toast {
  position: fixed;
  z-index: 999;
  top: 5px;
  right: 5px;
  left: auto;
  padding: 12px;
  font-family: "vista-sans", sans-serif;
  color: #fff;
  background-color: #4d4a63;
  box-shadow: 0 3px 3px rgba(38, 35, 56, 0.25);
}
.toast.hidden {
  display: none;
}

.heading {
  background: linear-gradient(0deg, #DF4F60 0%, #F1BB43 80.67%);
}
.heading__wrapper {
  position: relative;
  margin: auto;
  padding: 31px 20px;
}
@media screen and (min-width: 1024px) {
  .heading__wrapper {
    margin-right: 35px;
    margin-left: 35px;
    padding: 61.5px 0;
  }
}
@media screen and (min-width: 1300px) {
  .heading__wrapper {
    max-width: 1252px;
    margin: 0 auto;
  }
}
.heading__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .heading__content {
    gap: 8px;
  }
}
.heading__title {
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
  line-height: 40.8px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .heading__title {
    font-size: 56px;
    line-height: 57.12px;
  }
}
.heading__title--small {
  font-family: "bree-serif", serif;
  font-size: 22px;
  line-height: 32px;
}
@media screen and (min-width: 1024px) {
  .heading__title--small {
    font-size: 28px;
    line-height: 20px;
  }
}
.heading__keyword {
  font-family: "hwt-artz", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 22px;
  letter-spacing: 0.44px;
}
@media screen and (min-width: 1024px) {
  .heading__keyword {
    line-height: 32px;
  }
}
.heading__arrow {
  position: absolute;
}
.heading__arrow--primary {
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
}
@media screen and (min-width: 1150px) {
  .heading__arrow--primary {
    top: 47px;
    right: 0;
    width: 71px;
    height: 71px;
  }
}
@media screen and (min-width: 1440px) {
  .heading__arrow--primary {
    right: -20px;
  }
}
.heading__arrow--secondary {
  right: 330px;
  bottom: 11px;
  display: none;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 1150px) {
  .heading__arrow--secondary {
    display: unset;
  }
}
.heading sup {
  top: -0.7em;
  left: 0.5ch;
  font-family: "bree-serif", serif;
  font-style: normal;
}
@media screen and (min-width: 1024px) {
  .heading {
    background: linear-gradient(0deg, #DF4F60 1.79%, #F1BB43 86.94%);
  }
}

.pre__footer {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 96px;
  padding-bottom: 80px;
  background-color: #989ece;
}
.pre__footer::before {
  content: "";
  position: absolute;
  top: 10px;
  display: block;
  width: 100%;
  height: 30px;
  background-image: url("/assets/images/pre-footer/arrow-pre-footer.svg");
  background-position: center;
}
.pre__footer__title {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-family: "hwt-artz", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 105%;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.72px;
}
.pre__footer__image {
  width: 42px;
  height: 42px;
}
.pre__footer__content {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.pre__footer__quote {
  width: 28ch;
  max-width: 390px;
  margin-top: 18.08px;
  margin-right: auto;
  margin-left: auto;
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
}
@media screen and (min-width: 375px) {
  .pre__footer__quote {
    margin-right: auto;
    margin-left: auto;
    font-size: 24px;
  }
}
@media screen and (min-width: 428px) {
  .pre__footer__quote {
    width: 28ch;
    font-size: 24px;
    line-height: 40px;
  }
}
@media screen and (min-width: 500px) {
  .pre__footer__quote {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .pre__footer__quote {
    max-width: 1024px;
    margin-top: 11px;
  }
}
.pre__footer__author {
  font-family: "vista-sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  line-height: 44px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 428px) {
  .pre__footer__author {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .pre__footer__author {
    line-height: 40px;
  }
}

.pre__footerv2 {
  background-color: cadetblue;
}
.pre__footerv2 h6 {
  width: 30ch;
  margin-right: auto;
  margin-left: auto;
  color: white;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pre__footerv2 h6 {
    width: 60ch;
  }
}

.wrapper__intro {
  margin-top: -0.2px;
}
.wrapper__intro .intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.wrapper__intro .intro__media {
  position: relative;
  width: 100%;
}
.wrapper__intro .intro__media .intro__image {
  flex: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .wrapper__intro .intro__media .intro__image--hidden {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .wrapper__intro .intro__media .intro__image {
    width: 498px;
    margin-bottom: 0;
  }
}
.wrapper__intro .intro__media .intro__media_text {
  position: absolute;
  bottom: 0;
  left: 20px;
  font-family: "vista-sans", sans-serif;
}
@media screen and (min-width: 1024px) {
  .wrapper__intro .intro__media .intro__media_text {
    bottom: 15%;
  }
}
.wrapper__intro .intro__media .pem-collage {
  margin-top: -30px;
}
@media screen and (min-width: 1024px) {
  .wrapper__intro .intro__media {
    order: 2;
  }
}
.wrapper__intro .intro__content {
  width: 100%;
  margin: 0 auto;
}
.wrapper__intro .intro__content_title {
  margin-bottom: 24px;
}
.wrapper__intro .intro__content_text p {
  margin-bottom: 16px;
}
.wrapper__intro .intro__content_text p:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 430px) {
  .wrapper__intro .intro__content_text {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (min-width: 1024px) {
  .wrapper__intro .intro__content_text {
    max-width: 642px;
  }
}
.wrapper__intro .intro__content-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 16px 0;
}
@media screen and (max-width: 1024px) {
  .wrapper__intro .intro__content-footer {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .wrapper__intro .intro__content {
    margin-top: 50px;
  }
}
.wrapper__intro .intro__arrow--right {
  width: 125px;
  height: 125px;
  margin-left: 50px;
}
@media screen and (max-width: 1024px) {
  .wrapper__intro .intro__arrow--right {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .wrapper__intro .intro {
    flex-direction: row;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .wrapper__intro .intro {
    gap: 64px;
  }
}
.wrapper__intro.--type-image .intro__media {
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 1024px) {
  .wrapper__intro.--type-image .intro__media {
    width: -moz-max-content;
    width: max-content;
  }
}
.wrapper__intro.--type-image .intro__content {
  max-width: calc(100% - 2rem);
}
@media screen and (min-width: 428px) {
  .wrapper__intro.--type-image .intro__content {
    max-width: calc(100% - 2.5rem);
  }
}
@media screen and (min-width: 768px) {
  .wrapper__intro.--type-image .intro__content {
    max-width: calc(100% - 4rem);
  }
}
@media screen and (min-width: 1024px) {
  .wrapper__intro.--type-image .intro__content {
    max-width: 100%;
  }
}
.wrapper__intro.--type-video .intro__media {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .wrapper__intro.--type-video .intro__media {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .wrapper__intro:not(.--type-video) {
    max-width: 100%;
  }
}

.hero__slider {
  --swiper-pagination-bullet-width: 13.75px;
  --swiper-pagination-bullet-height: 13.75px;
  --swiper-pagination-bullet-horizontal-gap: 15px;
  --swiper-pagination-bullet-inactive-color: #58595b;
  --swiper-theme-color: #df4f60;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  --swiper-pagination-bottom: 0;
  --swiper-pagination-top: calc(100% - 48px);
}
@media screen and (min-width: 768px) {
  .hero__slider {
    --swiper-pagination-bottom: 0;
    --swiper-pagination-top: calc(100% - 38px);
  }
  .hero__slider swiper-slide[data-swiper-slide-index="2"] .hero__home .hero__text {
    max-width: 34ch;
  }
  .hero__slider swiper-slide[data-swiper-slide-index="3"] .hero__home .hero__text {
    max-width: 36ch;
  }
}
@media screen and (min-width: 1200px) {
  .hero__slider swiper-slide[data-swiper-slide-index="2"] .hero__home .hero__text {
    max-width: 38ch;
  }
  .hero__slider swiper-slide[data-swiper-slide-index="3"] .hero__home .hero__text {
    max-width: 43ch;
  }
}

.information__section .wrapper {
  gap: 40px;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 24px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .information__section .wrapper > * {
    margin: calc(40px / 2);
  }
}
@media screen and (min-width: 768px) {
  .information__section .wrapper {
    flex-direction: row;
    justify-content: space-evenly;
  }
}
@media screen and (min-width: 1024px) {
  .information__section .wrapper {
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .information__section .information__content {
    max-width: 660px;
  }
}
.information__section .information__title {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .information__section .information__title {
    margin-bottom: 20px;
  }
}
.information__section .information__intro {
  display: none;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .information__section .information__intro {
    display: block;
    max-width: 58ch;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .information__section .information__intro {
    max-width: 100%;
  }
}
.information__section .information__list {
  padding-bottom: 20px;
}
.information__section .information__item {
  gap: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  list-style: none;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .information__section .information__item > * {
    margin: calc(16px / 2);
  }
}
.information__section .information__item_text {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.information__section .information__icon {
  width: 56px;
  height: 56px;
}
.information__section .mg__card_text {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 32px;
}
.information__section .mg__card_title {
  margin-bottom: 8px;
}
.information__section .mg__card_button {
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .information__section .mg__card {
    max-width: 390px;
  }
}
@media screen and (min-width: 1024px) {
  .information__section--add-arrows .information__content {
    position: relative;
  }
  .information__section--add-arrows .information__content::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 300px;
    right: 0;
    width: 157px;
    height: 156px;
    opacity: 0.25;
    background-color: #f1bb43;
    -webkit-mask-image: url("/assets/images/single-arrow.svg");
            mask-image: url("/assets/images/single-arrow.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
}
@media screen and (min-width: 1024px) {
  .information__section--add-arrows .information__list {
    position: relative;
  }
  .information__section--add-arrows .information__list::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 35px;
    left: 360px;
    width: 70.98px;
    height: 71px;
    opacity: 0.2;
    background-color: #df4f60;
    fill: #df4f60;
    -webkit-mask-image: url("/assets/images/single-arrow-solid.svg");
            mask-image: url("/assets/images/single-arrow-solid.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
}

.collection__page .collection {
  max-width: 816px;
  margin-top: 35px;
  margin-right: auto;
  margin-left: auto;
}
.collection__page .collection__title {
  margin-bottom: 24px;
}
.collection__page .collection__video_share {
  padding-top: 22px;
  padding-bottom: 0;
}
.collection__page .collection__video_share .share__buttons {
  padding-top: 0;
  padding-bottom: 0;
}
.collection__page .collection__video_excerpt {
  margin-top: 32px;
  margin-bottom: 24px;
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #4d4a63;
}
.collection__page .collection__video_transcript {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .collection__page .collection__video_transcript {
    margin-bottom: 100px;
  }
}

.home__slider {
  position: relative;
  padding-top: 54px;
  padding-bottom: 46px;
  background: linear-gradient(0deg, #df4f60 -32.99%, #f1bb43 113.43%);
}
.home__slider::before {
  content: "";
  position: absolute;
  top: 10px;
  display: block;
  width: 100%;
  height: 30px;
  background-image: url("/assets/images/pre-footer/arrow-pre-footer.svg");
  background-position: center;
}
@media screen and (min-width: 830px) {
  .home__slider::before {
    top: 30px;
  }
}
.home__slider_heading {
  font-family: "bree-serif", serif;
  font-size: 36px;
  font-weight: 600;
  font-style: italic;
  line-height: normal;
  color: #52486e;
  text-align: center;
}
.home__slider_heading span {
  font-family: "hwt-artz", sans-serif;
  font-size: 36px;
  font-weight: 800;
  font-style: normal;
  line-height: normal;
  color: #52486e;
}
@media screen and (max-width: 768px) {
  .home__slider_heading {
    line-height: 37px;
  }
}
.home__slider .mg__card {
  max-width: 390px;
}
.home__slider .mg__card img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media screen and (min-width: 400px) {
  .home__slider .mg__card_body {
    height: 276px;
  }
}
.home__slider .mg__card_text {
  max-width: 350px;
  min-height: 72px;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #322F3F;
}
@media screen and (min-width: 768px) {
  .home__slider .mg__card_text {
    width: 351px;
  }
}
@media screen and (min-width: 768px) {
  .home__slider .mg__card {
    width: 390px;
  }
}
.home__slider .heading-container {
  position: relative;
  max-width: 300px;
  margin: auto;
  margin-bottom: 2rem;
}
.home__slider .heading-container .swiper-button-next {
  position: absolute;
  z-index: 0;
  right: 0%;
  rotate: 180deg;
  font-weight: bolder;
  color: black;
}
.home__slider .heading-container .swiper-button-next::after {
  content: " ";
  width: 23.3px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  background-image: url("/assets/images/card/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@media screen and (min-width: 2100px) {
  .home__slider .heading-container .swiper-button-next {
    display: none;
  }
}
.home__slider .heading-container .swiper-button-prev {
  position: absolute;
  z-index: 0;
  left: 0%;
  font-weight: bolder;
  color: black;
}
.home__slider .heading-container .swiper-button-prev::after {
  content: " ";
  width: 23.3px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  background-image: url("/assets/images/card/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.home__slider .heading-container .swiper-button-prev:disabled::after {
  background-image: url("/assets/images/card/arrow-disabled.png");
}
.home__slider .heading-container .swiper-button-prev img {
  transform: rotate(180deg);
}
@media screen and (min-width: 2100px) {
  .home__slider .heading-container .swiper-button-prev {
    display: none;
  }
}
.home__slider .swiper-container {
  --swiper-pagination-bullet-width: 13.75px;
  --swiper-pagination-bullet-height: 13.75px;
  --swiper-pagination-bullet-horizontal-gap: 15px;
  --swiper-pagination-bullet-inactive-color: #52486e;
  --swiper-theme-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bottom: 0;
  width: unset;
  max-width: 270px;
  margin: auto;
}
@media screen and (max-width: 330px) {
  .home__slider .swiper-container {
    --swiper-pagination-bottom: -0px;
  }
  .home__slider .swiper-container::part(container) {
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 399px) {
  .home__slider .swiper-container {
    max-width: 90%;
  }
}
@media screen and (min-width: 400px) {
  .home__slider .swiper-container {
    max-width: 395px;
  }
}
@media screen and (min-width: 768px) {
  .home__slider .swiper-container {
    max-width: 800px;
  }
}
@media screen and (min-width: 1024px) {
  .home__slider .swiper-container {
    max-width: 1440px;
  }
}
@media screen and (min-width: 1500px) {
  .home__slider .swiper-container {
    max-width: 90%;
  }
}
@media screen and (min-width: 2100px) {
  .home__slider .swiper-container {
    width: -moz-fit-content;
    width: fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: auto;
  }
}
.home__slider swiper-slide {
  height: 560px;
}
@media screen and (min-width: 768px) {
  .home__slider swiper-slide {
    width: 390px !important;
  }
}
@media screen and (min-width: 600px) {
  .home__slider {
    padding-top: 92px;
  }
  .home__slider_heading br {
    display: none;
  }
  .home__slider .heading-container {
    max-width: 500px;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .home__slider {
    padding-bottom: 37px;
  }
  .home__slider ::part(pagination) {
    display: none;
  }
}

.home .nice-select .current {
  color: #999;
}
.home .form__control[data-is-valid=true] .nice-select .current {
  color: #4d4a63;
}
.home .grid {
  display: grid;
  grid-gap: 33px;
  grid-template-columns: 1fr;
  max-width: 1238px;
  margin-top: 20px;
  margin-right: auto;
  margin-bottom: 32px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .home .grid .mg__card_image img {
    height: 170px;
  }
}
@media screen and (min-width: 1024px) {
  .home .grid .mg__card_image img {
    height: 224px;
  }
}
.home .grid .item__heading {
  margin-bottom: 5px;
  font-family: "hwt-artz", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  color: #52486e;
}
.home .grid .item__heading span {
  font-family: "bree-serif", serif;
  font-weight: 600;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .home .grid {
    grid-template-columns: 300px 1fr;
    margin-bottom: 44px;
  }
}
@media screen and (min-width: 1024px) {
  .home .grid {
    grid-template-columns: 391px 1fr;
  }
}
.home .personal-box .mg__card_body {
  padding-left: 12px;
}
@media screen and (min-width: 992px) {
  .home .personal-box .mg__card_body {
    padding-left: 24px;
  }
}
.home .pem {
  margin-bottom: 43px;
}
@media screen and (min-width: 1024px) {
  .home .pem {
    margin-bottom: 47px;
  }
}
@media screen and (min-width: 1024px) {
  .home .pre__footer__quote {
    max-width: 75ch;
  }
}
.home .prefooter__home .pre__footer__author {
  margin-top: 26px;
}

@media screen and (min-width: 1024px) {
  .intro--thank-you .intro__content_title {
    max-width: 40ch;
  }
}

.about {
  color: red;
}

.mg__measure-symptoms .heading__arrow--secondary {
  display: none;
}
.mg__measure-symptoms .wrapper__intro {
  position: relative;
}
@media screen and (min-width: 1300px) {
  .mg__measure-symptoms .wrapper__intro {
    max-width: 1234px;
  }
}
.mg__measure-symptoms--arrow {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 190px;
}
@media screen and (min-width: 1024px) and (max-width: 1100px) {
  .mg__measure-symptoms--arrow {
    width: 240px;
  }
}
@media screen and (max-width: 1023px) {
  .mg__measure-symptoms--arrow {
    display: none;
  }
}
.mg__measure-symptoms .assessments-title {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mg__measure-symptoms .intro__content_title {
  max-width: 35ch;
}
.mg__measure-symptoms .intro__content_text {
  color: #4E4B66;
}
.mg__measure-symptoms .assesments-modal .button {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.mg__measure-symptoms .assessment-pem {
  margin-bottom: 11rem;
}
@media screen and (max-width: 768px) {
  .mg__measure-symptoms .assessment-pem .pem__title_text {
    font-size: 28px;
    line-height: 40px;
  }
  .mg__measure-symptoms .assessment-pem .pem__title_text:nth-child(3) {
    line-height: 32px;
  }
}

@media screen and (min-width: 428px) {
  .what-is-mg .heading__title {
    max-width: 17ch;
  }
}
@media screen and (min-width: 600px) {
  .what-is-mg .heading__title {
    max-width: 100%;
  }
}
.what-is-mg .intro {
  gap: 40px;
  padding-bottom: 40px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .what-is-mg .intro > * {
    margin: calc(40px / 2);
  }
}
.what-is-mg .intro__content_title {
  margin-bottom: 17px;
  line-height: 37.8px;
}
@media screen and (min-width: 1024px) {
  .what-is-mg .intro__content_title {
    margin-bottom: 15px;
  }
}
.what-is-mg .intro__content_text p:nth-child(2) {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .what-is-mg .intro__content_text p:nth-child(2) {
    margin-bottom: 25.64px;
  }
}
@media screen and (min-width: 1024px) {
  .what-is-mg .intro__content_text p {
    max-width: 65ch;
    font-size: 20px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .what-is-mg .intro {
    margin-bottom: 49.63px;
    padding-bottom: 0;
  }
}
.what-is-mg .pre__footer-mg .pre__footer__quote {
  color: #fff;
}
@media screen and (min-width: 428px) {
  .what-is-mg .pre__footer-mg .pre__footer__quote {
    width: 29.5ch;
  }
}
@media screen and (min-width: 768px) {
  .what-is-mg .pre__footer-mg .pre__footer__quote {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .what-is-mg .pre__footer-mg .pre__footer__quote {
    max-width: 60ch;
  }
}
.what-is-mg .wrapper__intro .intro__content_text p:last-of-type {
  margin-bottom: 24px;
}
.what-is-mg .wrapper__intro .intro__content_text {
  max-width: -moz-max-content;
  max-width: max-content;
}
.what-is-mg .information__section {
  margin-bottom: 64px;
}
.what-is-mg .information__section .information__name {
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #4d4a63;
}
@media screen and (min-width: 768px) {
  .what-is-mg .information__section .information__name {
    width: 35ch;
  }
}
@media screen and (min-width: 992px) {
  .what-is-mg .information__section .information__name {
    width: 50ch;
  }
}
@media screen and (min-width: 1024px) {
  .what-is-mg .information__section .information__item:nth-child(2) .information__name {
    max-width: 48ch;
  }
}
@media screen and (min-width: 1024px) {
  .what-is-mg .information__section {
    margin-bottom: 58px;
  }
}
.what-is-mg .closser .mg__card_text {
  color: #322F3F;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  .mg__voices .heading__wrapper {
    padding-top: 54px;
    padding-bottom: 61px;
  }
  .mg__voices .heading__content {
    gap: 16px;
  }
}
@media screen and (min-width: 1300px) {
  .mg__voices .wrapper__intro {
    max-width: 1240px;
  }
}
.mg__voices .intro__content_title {
  margin-bottom: 21px;
}
@media screen and (min-width: 1024px) {
  .mg__voices .intro__content_text {
    max-width: 77ch;
  }
}
.mg__voices_grid {
  display: grid;
  row-gap: 32px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  margin-top: 50px;
  margin-bottom: 100px;
}
.mg__voices_grid .mg__card_title {
  max-width: 342px;
}
.mg__voices_grid .mg__card_text {
  font-size: 20px;
  line-height: 32px;
  color: #322F3F;
}
@media screen and (min-width: 1440px) {
  .mg__voices_grid .mg__card_text {
    width: 100%;
  }
}
.mg__voices_grid .mg__card_body {
  padding-right: 18px;
}
@media screen and (min-width: 1440px) {
  .mg__voices_grid .mg__card_body {
    padding-right: 14px;
  }
}
@media screen and (min-width: 375px) {
  .mg__voices_grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media screen and (min-width: 1024px) {
  .mg__voices_grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0;
    max-width: 1234px;
    margin-right: auto;
    margin-bottom: 193px;
    margin-left: auto;
  }
}
.mg__voices .wrapper__intro .intro__media .intro__media_text {
  bottom: 6%;
}
@media screen and (min-width: 500px) {
  .mg__voices .wrapper__intro .intro__media .intro__media_text {
    bottom: 7%;
  }
}
@media screen and (min-width: 600px) {
  .mg__voices .wrapper__intro .intro__media .intro__media_text {
    left: 25px;
  }
}
@media screen and (min-width: 650px) {
  .mg__voices .wrapper__intro .intro__media .intro__media_text {
    left: 32px;
  }
}
@media screen and (min-width: 768px) {
  .mg__voices .wrapper__intro .intro__media .intro__media_text {
    bottom: 40px;
  }
}
@media screen and (min-width: 900px) {
  .mg__voices .wrapper__intro .intro__media .intro__media_text {
    left: 39px;
  }
}
@media screen and (min-width: 1024px) {
  .mg__voices .wrapper__intro .intro__media .intro__media_text {
    bottom: 110px;
    left: 20px;
  }
}
@media screen and (min-width: 1040px) {
  .mg__voices .wrapper__intro .intro__media .intro__media_text {
    bottom: 80px;
  }
}
@media screen and (min-width: 1053px) {
  .mg__voices .wrapper__intro .intro__media .intro__media_text {
    bottom: 70px;
  }
}

@media screen and (min-width: 1024px) {
  .collection__page.collection__page--voices .heading__wrapper {
    padding-top: 54px;
    padding-bottom: 61px;
  }
  .collection__page.collection__page--voices .heading__content {
    gap: 16px;
  }
}

.mg__symptons .mg__symptons_main {
  background-color: #f7f7f7;
}
.mg__symptons .wrapper__intro .intro {
  gap: 40px;
}
.mg__symptons .symptoms__link {
  margin-top: 24px;
  margin-bottom: 40px;
}
.mg__symptons .mg__symptoms__details {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #f7f7f7;
}
.mg__symptons .mg__symptoms__details ::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -50%;
  width: 200vw;
  height: 100%;
  background-color: #f7f7f7;
}
.mg__symptons .mg__symptoms__details .arrow__decoration__solid {
  display: none;
}
@media screen and (min-width: 900px) {
  .mg__symptons .mg__symptoms__details .arrow__decoration__solid {
    position: absolute;
    top: 11%;
    right: 1%;
    display: block;
    width: 50.984px;
    height: 51px;
  }
}
@media screen and (min-width: 1200px) {
  .mg__symptons .mg__symptoms__details .arrow__decoration__solid {
    top: 9.5%;
  }
}
.mg__symptons .mg__symptoms__details .symptoms__details__title {
  font-family: "hwt-artz", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 105%;
  color: #52486e;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 375px) {
  .mg__symptons .mg__symptoms__details .symptoms__details__title {
    width: 385px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  .mg__symptons .mg__symptoms__details .symptoms__details__title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.mg__symptons .mg__symptoms__details .symptoms__details__description__tablet {
  max-width: 112ch;
  margin-top: 16px;
  margin-bottom: 27px;
  color: #322F3F;
}
.mg__symptons .mg__symptoms__details .symptoms__details__disclaimer {
  margin-top: 32px;
  margin-bottom: 27px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #322F3F;
}
@media screen and (min-width: 768px) {
  .mg__symptons .mg__symptoms__details .symptoms__details__disclaimer {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.mg__symptons .mg__symptoms__details .symptom__accordion {
  position: relative;
  background-color: #fff;
  border: 1px solid #52486e;
  border-radius: 10px;
}
.mg__symptons .mg__symptoms__details .symptom__accordion .accordion__item_title {
  line-height: 32px;
  color: #52486e;
}
.mg__symptons .mg__symptoms__details .symptom__accordion .accordion__item_title::after {
  margin-top: 0.5rem;
  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='%23DF4F60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.mg__symptons .mg__symptoms__details .symptom__accordion .symptom__text {
  all: unset;
  display: block;
  max-width: 543px;
  margin-bottom: 14px;
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
}
.mg__symptons .mg__symptoms__details .symptom__accordion .accordion__item_content {
  color: #322F3F;
}
.mg__symptons .mg__symptoms__details .symptom__accordion .accordion__item_content .symptom__text {
  color: #322F3F;
}
.mg__symptons .mg__symptoms__details .symptom__accordion:nth-child(4) .symptom__text:last-child {
  margin-bottom: 31px;
}
.mg__symptons .mg__symptoms__details .symptom__accordion .sub__header {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 32px;
}
.mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc {
  position: relative;
}
@media screen and (min-width: 768px) {
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .accordion__item_header {
    pointer-events: none;
  }
}
@media screen and (min-width: 1024px) {
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .accordion__item_header {
    padding-bottom: 10px;
  }
}
.mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .arrow__decoration {
  position: absolute;
  z-index: 1;
  bottom: -80px;
  display: none;
  aspect-ratio: 1;
  width: 59.06px;
}
@media screen and (min-width: 768px) {
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .arrow__decoration {
    right: 22%;
    bottom: 60px;
    display: block;
    width: 164px;
  }
}
@media screen and (min-width: 900px) {
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .arrow__decoration {
    right: 25%;
  }
}
@media screen and (min-width: 1024px) {
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .arrow__decoration {
    right: 30%;
  }
}
@media screen and (min-width: 768px) {
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc {
    display: grid;
    grid-template-areas: "vision mobility" "speech eating" "breathing .";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 32px;
  }
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .accordion__item_title::after {
    pointer-events: none;
    display: none;
  }
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .vision {
    grid-area: vision;
  }
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .speech {
    grid-area: speech;
  }
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .breathing {
    grid-area: breathing;
  }
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .mobility {
    grid-area: mobility;
  }
  .mg__symptons .mg__symptoms__details #accordion-group-symptoms-acc .eating {
    grid-area: eating;
  }
}
.mg__symptons .mg__symptoms__statistics {
  padding-top: 40px;
  padding-bottom: 60px;
}
.mg__symptons .mg__symptoms__statistics ::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -50%;
  width: 200vw;
  height: 100%;
  background-color: #ededf5;
}
.mg__symptons .mg__symptoms__statistics h3 {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #52486e;
  text-align: center;
}
.mg__symptons .mg__symptoms__statistics h3::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1;
  width: 42px;
  background-image: url("/assets/images/symptoms/question-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.mg__symptons .mg__symptoms__statistics p {
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 40px;
  color: #52486e;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mg__symptons .mg__symptoms__statistics p {
    width: 555px;
    height: 67px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    text-align: center;
  }
}
.mg__symptons .mg__symptoms__statistics .mg__symptoms__footer {
  margin-top: 36px;
  margin-bottom: 0;
  font-family: "vista-sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #322F3F;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mg__symptons .mg__symptoms__statistics .mg__symptoms__footer {
    width: 80ch;
  }
}
@media screen and (min-width: 768px) {
  .mg__symptons .mg__symptoms__statistics .statistics__graphs {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .mg__symptons .mg__symptoms__statistics .statistics__graphs {
    margin-top: -43px;
  }
}

.what-causes-mg .intro {
  gap: 40px;
  padding-bottom: 40px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .what-causes-mg .intro > * {
    margin: calc(40px / 2);
  }
}
.what-causes-mg .intro .button-video::after {
  display: none;
}
.what-causes-mg .intro__content_title {
  margin-bottom: 17px;
}
@media screen and (min-width: 1024px) {
  .what-causes-mg .intro__content_title {
    margin-bottom: 18.64px;
    font-size: 38.456px;
    line-height: 38.456px;
  }
}
.what-causes-mg .intro__content_text p {
  color: #4E4B66;
}
.what-causes-mg .intro__content_text p:nth-child(2) {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .what-causes-mg .intro__content_text p:nth-child(2) {
    margin-bottom: 25.64px;
  }
}
@media screen and (min-width: 1024px) {
  .what-causes-mg .intro__content_text p {
    max-width: 50ch;
    font-size: 21.365px;
    line-height: 34.183px;
  }
}
@media screen and (min-width: 1024px) {
  .what-causes-mg .intro__media {
    position: relative;
  }
  .what-causes-mg .intro__media::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 40px;
    left: 40%;
    width: 95px;
    height: 95px;
    opacity: 0.1;
    background-color: #f1bb43;
    fill: #f1bb43;
    -webkit-mask-image: url("/assets/images/single-arrow-solid.svg");
            mask-image: url("/assets/images/single-arrow-solid.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1300px) {
  .what-causes-mg .intro__media::after {
    left: 35%;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1600px) {
  .what-causes-mg .intro__media::after {
    bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .what-causes-mg .intro {
    margin-bottom: 49.63px;
    padding-bottom: 0;
  }
}
.what-causes-mg .information__section {
  padding-bottom: 82px;
}
.what-causes-mg .information__section .mg__card_body {
  padding-right: 13px;
}
@media screen and (min-width: 1024px) {
  .what-causes-mg .information__section .mg__card {
    max-width: 400px;
  }
}
.what-causes-mg .information__section .information__list {
  padding-bottom: 6px;
}
@media screen and (min-width: 1024px) {
  .what-causes-mg .information__section {
    padding-bottom: 20px;
  }
}
.what-causes-mg .pre__footer {
  padding-bottom: 115px;
}
@media screen and (min-width: 1024px) {
  .what-causes-mg .pre__footer__quote {
    max-width: 55ch;
  }
}
.what-causes-mg .information__intro {
  display: block;
  color: #4E4B66;
}
.what-causes-mg .information__item_text {
  color: #4E4B66;
}

.signup-form .form .form__control-required {
  margin-top: 1rem;
}

.childrens-book {
  /*   .divider {
    display: flex;
    flex-grow: 1;

    width: 100%;
    height: 1px;
    margin-left: auto;

    background-color: #000;
  } */
}
.childrens-book .intro__content_text {
  max-width: 44ch;
}
@media screen and (min-width: 450px) {
  .childrens-book .intro__content_text {
    max-width: 100ch;
  }
}
@media screen and (min-width: 1024px) {
  .childrens-book .intro__content_text {
    max-width: 87ch;
  }
}
@media screen and (min-width: 1024px) {
  .childrens-book .heading__arrow--secondary {
    display: none;
  }
  .childrens-book .heading__wrapper {
    padding-top: 57px;
    padding-bottom: 59px;
  }
  .childrens-book .heading__content {
    gap: 24px;
  }
  .childrens-book .heading__keyword {
    line-height: 20px;
  }
}
.childrens-book .wrapper__intro {
  position: relative;
  width: 100%;
  max-width: 100% !important;
}
@media screen and (min-width: 768px) {
  .childrens-book .wrapper__intro .intro__content_title {
    line-height: 37.8px;
  }
}
.childrens-book .wrapper__intro .intro__media {
  padding-bottom: 2.5rem;
}
.childrens-book .wrapper__intro .intro__content_text p {
  color: #322F3F;
}
.childrens-book .wrapper__intro .order-form .intro__media {
  background: linear-gradient(-90deg, rgba(152, 158, 206, 0.2) 0%, rgba(152, 158, 206, 0) 102.72%);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 50% 100%;
  border-bottom: 1px solid #989ece;
}
@media screen and (min-width: 1024px) {
  .childrens-book .wrapper__intro .order-form {
    background: linear-gradient(-90deg, rgba(152, 158, 206, 0.2) 0%, rgba(152, 158, 206, 0) 102.72%);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 50% 100%;
  }
  .childrens-book .wrapper__intro .order-form .intro__media {
    padding-bottom: 69px;
    background: unset;
    border: none;
  }
}
.childrens-book .wrapper__intro .intro__image {
  cursor: pointer;
  max-width: 253px;
  margin-top: -25px;
  margin-right: auto;
  margin-left: auto;
}
.childrens-book .wrapper__intro .intro {
  position: relative;
}
.childrens-book .wrapper__intro .intro::after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 100%;
  width: 100vw;
  height: 1px;
  background-color: #989ece;
}
.childrens-book .wrapper__intro .intro .book-title {
  font-style: italic;
}
@media screen and (min-width: 1024px) and (max-width: 1299px) {
  .childrens-book .wrapper__intro .intro {
    max-width: 900px;
  }
}
@media screen and (min-width: 1300px) {
  .childrens-book .wrapper__intro .intro {
    max-width: 1234px;
    margin: auto;
  }
}
@media screen and (min-width: 1024px) {
  .childrens-book .wrapper__intro .intro {
    margin: auto;
    padding-bottom: 0;
    border-bottom: 1px solid #989ece;
  }
}
.childrens-book .wrapper__intro.thank-you {
  border: none;
}
@media screen and (max-width: 1023px) {
  .childrens-book .wrapper__intro .thank-you .intro__media {
    background: linear-gradient(-90deg, rgba(152, 158, 206, 0.2) 0%, rgba(152, 158, 206, 0) 102.72%);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 50% 100%;
    border-bottom: 1px solid #989ece;
  }
}
.childrens-book .wrapper__intro .thank-you .intro {
  margin-bottom: 8rem;
  border: none;
}
.childrens-book .wrapper__intro .thank-you .intro::after {
  display: none;
}
.childrens-book .wrapper__intro .thank-you .intro__content_text {
  max-width: 60ch;
}
@media screen and (min-width: 420px) {
  .childrens-book .wrapper__intro .thank-you .intro__content_text {
    min-width: 50ch;
  }
}
@media screen and (min-width: 768px) {
  .childrens-book .wrapper__intro .thank-you .intro__content_text {
    max-width: 80ch;
  }
}
@media screen and (min-width: 1024px) {
  .childrens-book .wrapper__intro {
    margin: auto;
  }
}
@media screen and (min-width: 1100px) {
  .childrens-book .wrapper__intro .intro__image {
    max-width: 340px;
    margin-top: -30px;
    margin-right: 1.5rem;
  }
}
.childrens-book .nice-select .current {
  color: #999;
}
.childrens-book .form__control[data-is-valid=true] .nice-select .current {
  color: #4d4a63;
}
.childrens-book--arrow {
  position: absolute;
  right: 35%;
  bottom: 4rem;
  width: 100px;
}
.childrens-book--arrow-thanks {
  right: unset;
  left: 22%;
}
@media screen and (max-width: 1300px) {
  .childrens-book--arrow {
    display: none;
  }
  .childrens-book--arrow-thanks {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .childrens-book--arrow-thanks {
    bottom: -5rem;
    left: 5%;
    width: 43px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1100px) {
  .childrens-book--arrow {
    right: 20%;
    bottom: 0;
    width: 55px;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1300px) {
  .childrens-book--arrow-thanks {
    bottom: 6rem;
    left: 20%;
    width: 50px;
  }
}
.childrens-book--thanks-secondary {
  position: absolute;
  right: 35%;
  bottom: 8.5rem;
  width: 130px;
}
@media screen and (max-width: 1024px) {
  .childrens-book--thanks-secondary {
    right: 10%;
    bottom: 0;
    width: 64px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1100px) {
  .childrens-book--thanks-secondary {
    right: 30%;
    bottom: 5rem;
    width: 100px;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1300px) {
  .childrens-book--thanks-secondary {
    right: 42%;
    bottom: 8rem;
    width: 100px;
  }
}
.childrens-book--look {
  cursor: pointer;
  position: absolute;
  top: 225px;
  left: calc((100vw - 10px) / 2);
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #52486e;
  text-wrap: nowrap;
}
@media screen and (min-width: 1023px) and (max-width: 1099px) {
  .childrens-book--look {
    top: unset;
    right: -25px;
    bottom: 30px;
    left: unset;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1300px) {
  .childrens-book--look {
    top: unset;
    right: 55px;
    bottom: 56px;
    left: unset;
  }
}
@media screen and (min-width: 1024px) {
  .childrens-book--look {
    font-size: 21.33px;
    line-height: 37.33px;
  }
}
@media screen and (min-width: 1301px) {
  .childrens-book--look {
    top: unset;
    right: 50px;
    bottom: 55px;
    left: unset;
  }
}
.childrens-book .form .form__control-required {
  margin-top: 0.1rem;
  margin-bottom: 24px;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .childrens-book .form .form__control-required {
    margin-bottom: 16px;
  }
}
.childrens-book .signup-form .form .form__control-terms .form__control-label {
  color: #322F3F;
}
@media screen and (max-width: 450px) {
  .childrens-book .signup-form .form .form__control-terms .form__control-label {
    max-width: 44ch;
  }
}
.childrens-book .signup-form .form .form__control .form__control-label .link {
  color: #52486e;
}
@media screen and (min-width: 1040px) {
  .childrens-book .signup-form .form .form__control {
    padding-left: 0;
  }
  .childrens-book .signup-form .form .form__control:nth-child(2), .childrens-book .signup-form .form .form__control:nth-child(5) {
    padding-left: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .childrens-book .signup-form {
    margin-right: 0;
  }
}
.childrens-book .signup-form__content {
  border: 0;
}
.childrens-book .signup-form__content .form {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .childrens-book .signup-form__content {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    padding-top: 0;
  }
  .childrens-book .signup-form__content .form__control {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .childrens-book .signup-form__content {
    justify-content: center;
  }
  .childrens-book .signup-form__content .form {
    max-width: 700px;
  }
}
.childrens-book .nice-select .nice-select-dropdown {
  z-index: 2 !important;
  width: 100%;
  max-width: 100%;
  max-height: 300px;
}
.childrens-book .nice-select .nice-select-dropdown .list {
  max-height: 300px;
}
.childrens-book .nice-select .nice-select-dropdown .list .option {
  text-wrap: wrap;
}
.childrens-book .form__arrow--left {
  margin-bottom: 25rem;
}
@media screen and (min-width: 1024px) {
  .childrens-book__thank-you .childrens-book--look {
    bottom: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .childrens-book__thank-you .childrens-book--thanks-secondary {
    bottom: 0;
  }
}
.childrens-book__thank-you .wrapper__intro .intro__content .intro__content_text p {
  margin-bottom: 10px;
}

.klaras-talent-modal__img {
  margin-top: 3rem;
}
.klaras-talent-modal .modal__close {
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  height: 30px;
  outline: none;
}
.klaras-talent-modal .modal__close img {
  width: 20px;
  height: 20px;
  margin-top: 0;
}
.klaras-talent-modal .modal__content {
  margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .one-source .heading__content {
    gap: 4px;
  }
  .one-source .heading__wrapper {
    padding-bottom: 65.5px;
  }
}
.one-source .wrapper__intro .intro__content_title {
  margin-bottom: 13px;
}
.one-source .pre__footer {
  padding-top: 77px;
  padding-bottom: 87px;
}
@media screen and (min-width: 1024px) {
  .one-source .pre__footer__title {
    line-height: normal;
  }
}
@media screen and (min-width: 1024px) {
  .one-source .pre__footer {
    padding-bottom: 115px;
  }
}
.one-source .pre__footer::before {
  top: 22px;
}

.one__source {
  position: relative;
  margin-top: 40px;
}
.one__source_arrow-white {
  position: absolute;
  top: 0;
  right: 6%;
  display: none;
  width: 40.991px;
}
@media screen and (max-width: 768px) {
  .one__source_arrow-white {
    right: 0;
    width: 51px;
  }
}
@media screen and (min-width: 400px) {
  .one__source_arrow-white {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .one__source_arrow-white {
    top: 121px;
    width: 98px;
  }
}
@media screen and (min-width: 1200px) {
  .one__source_arrow-white {
    right: 10%;
    width: 127px;
  }
}
.one__source_arrow-dark {
  position: absolute;
  right: 6%;
  bottom: -66px;
  display: none;
  width: 40.991px;
}
@media screen and (min-width: 400px) {
  .one__source_arrow-dark {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .one__source_arrow-dark {
    bottom: 2px;
    left: 0;
    width: 76px;
  }
}
@media screen and (min-width: 1200px) {
  .one__source_arrow-dark {
    left: 24px;
    width: 86px;
  }
}
.one__source_logo {
  width: 260.5px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .one__source_logo {
    width: 325.625px;
  }
}
.one__source_number {
  max-width: 384px;
  margin: auto;
  margin-top: 24px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  border-top: 1px solid #989ece;
  border-bottom: 1px solid #989ece;
}
.one__source_number h4 {
  font-family: "vista-sans", sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  line-height: 30px;
  color: #52486e;
}
.one__source_number h4 a {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
}
.one__source_number p {
  max-width: 357px;
  margin: auto;
  margin-top: 1.3rem;
  color: #52486e;
}
@media screen and (min-width: 768px) {
  .one__source_number p {
    margin-top: 0.8rem;
  }
}
@media screen and (min-width: 1000px) {
  .one__source_number {
    max-width: 564px;
  }
}
.one__source_list {
  max-width: 299px;
  margin: auto;
  margin-top: 33px;
}
@media screen and (min-width: 400px) {
  .one__source_list {
    max-width: 383.767px;
  }
}
@media screen and (min-width: 768px) {
  .one__source_list {
    width: 509px;
    max-width: unset;
  }
}
.one__source_item {
  display: flex;
  margin-bottom: 1rem;
}
.one__source_item .modifier {
  max-width: 292px;
}
@media screen and (min-width: 428px) {
  .one__source_item .modifier {
    max-width: 304px;
  }
}
@media screen and (min-width: 768px) {
  .one__source_item .modifier {
    width: 100%;
    max-width: unset;
  }
}
.one__source_item br {
  display: none;
}
@media screen and (min-width: 768px) {
  .one__source_item br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .one__source_item {
    align-items: center;
    margin-bottom: 23px;
  }
}
.one__source_icon {
  width: auto;
  height: 54px;
  margin-right: 15px;
}
.one__source_text {
  max-width: 325px;
  color: #4E4B66;
}
@media screen and (min-width: 768px) {
  .one__source_text {
    width: 100%;
    max-width: unset;
  }
}
.one__source .button {
  margin: auto;
  margin-top: 32px;
  margin-bottom: 116px;
}
@media screen and (min-width: 768px) {
  .one__source .button {
    margin-top: 24px;
    margin-bottom: 102px;
  }
}
@media screen and (min-width: 768px) {
  .one__source {
    margin-top: 52px;
  }
}

.one__source_pre .pre__footer__quote {
  margin-bottom: 1rem;
}
@media screen and (min-width: 428px) {
  .one__source_pre .pre__footer__quote {
    width: 29ch;
  }
}
@media screen and (min-width: 500px) {
  .one__source_pre .pre__footer__quote {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .one__source_pre .pre__footer__quote {
    width: 83ch;
  }
}

.advocacy__organizations {
  margin-top: 10px;
  margin-bottom: 38.14px;
}
@media screen and (min-width: 990px) {
  .advocacy__organizations_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
.advocacy__organizations_card {
  max-width: 390px;
  margin: auto;
  padding: 32px 24px;
  border-bottom: 1px solid #D9D9D9;
}
.advocacy__organizations_card_logo {
  max-width: 225px;
}
@media screen and (min-width: 990px) {
  .advocacy__organizations_card_logo {
    max-width: 231.53px;
  }
}
.advocacy__organizations_card_organization {
  max-width: 359px;
  margin-top: 36px;
  font-family: "hwt-artz", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  color: #52486e;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (min-width: 600px) {
  .advocacy__organizations_card_organization {
    width: 100%;
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) {
  .advocacy__organizations_card_organization {
    line-height: 32px;
  }
}
.advocacy__organizations_card_text {
  max-width: 342px;
  margin-top: 8px;
  margin-bottom: 26px;
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #322F3F;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (min-width: 600px) {
  .advocacy__organizations_card_text {
    width: 100%;
    max-width: unset;
  }
}
.advocacy__organizations_card.myasthenia br {
  display: none;
}
@media screen and (min-width: 1232px) {
  .advocacy__organizations_card.myasthenia br {
    display: block;
  }
}
@media screen and (min-width: 1236px) {
  .advocacy__organizations_card.myasthenia br {
    display: none;
  }
}
.advocacy__organizations_card.conquer {
  /* .advocacy__organizations_card_text{
      line-height: 32px;
  } */
}
.advocacy__organizations_card.conquer .advocacy__organizations_card_logo {
  max-width: 322px;
}
.advocacy__organizations_card.conquer .conquer-br {
  display: none;
}
@media screen and (min-width: 1232px) {
  .advocacy__organizations_card.conquer .conquer-br {
    display: block;
  }
}
@media screen and (min-width: 1236px) {
  .advocacy__organizations_card.conquer .conquer-br {
    display: none;
  }
}
.advocacy__organizations_card.conquer br {
  display: none;
}
@media screen and (min-width: 990px) {
  .advocacy__organizations_card.conquer br {
    display: block;
  }
}
@media screen and (min-width: 1076px) {
  .advocacy__organizations_card.conquer br {
    display: none;
  }
}
@media screen and (min-width: 990px) {
  .advocacy__organizations_card.conquer {
    margin: 0;
  }
}
.advocacy__organizations_card.mda .advocacy__organizations_card_logo {
  max-width: 307.05px;
}
@media screen and (min-width: 990px) {
  .advocacy__organizations_card.mda .advocacy__organizations_card_logo {
    max-width: 307.05px;
    height: 114px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.advocacy__organizations_card.holistic .advocacy__organizations_card_logo {
  max-width: 120px;
}
@media screen and (min-width: 1024px) {
  .advocacy__organizations_card.holistic {
    padding-left: 18px;
  }
}
.advocacy__organizations_card.mg-mi .advocacy__organizations_card_logo {
  max-width: 233px;
}
.advocacy__organizations_card.mg-mga .advocacy__organizations_card_logo {
  max-width: 114.9px;
}
.advocacy__organizations_card.mg-hol-logo .advocacy__organizations_card_logo {
  max-width: 250.594px;
}
@media screen and (min-width: 600px) {
  .advocacy__organizations_card {
    max-width: 604px;
  }
}
@media screen and (min-width: 990px) {
  .advocacy__organizations_card {
    margin: 0;
  }
}
@media screen and (min-width: 990px) {
  .advocacy__organizations {
    margin-top: 67px;
    margin-bottom: 108.6px;
  }
}

@media screen and (min-width: 1024px) {
  .advocacy-groups .intro__content_text {
    max-width: 75ch;
  }
}

@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .heading__wrapper {
    padding-top: 57px;
    padding-bottom: 59px;
  }
  .talk-to-your-doctor .heading__content {
    gap: 24px;
  }
  .talk-to-your-doctor .heading__keyword {
    line-height: 20px;
  }
}
.talk-to-your-doctor .intro {
  position: relative;
  padding-bottom: 36px;
}
.talk-to-your-doctor .intro::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 1px;
  margin-right: auto;
  margin-left: auto;
  background-color: #989ece;
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .intro__content_text p {
    max-width: 62ch;
  }
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .intro__content {
    position: relative;
    min-height: 400px;
  }
  .talk-to-your-doctor .intro__content::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 66px;
    height: 66.014px;
    opacity: 0.2;
    background-color: #989ece;
    -webkit-mask-image: url("/assets/images/single-arrow-solid.svg");
            mask-image: url("/assets/images/single-arrow-solid.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
}
@media screen and (min-width: 1100px) {
  .talk-to-your-doctor .intro__content::after {
    right: 15%;
  }
}
@media screen and (min-width: 1200px) {
  .talk-to-your-doctor .intro__content::after {
    right: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .intro {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .talk-to-your-doctor .intro::after {
    display: none;
  }
}
.talk-to-your-doctor .wrapper__intro .intro {
  gap: 40px;
}
.talk-to-your-doctor .wrapper__intro .intro .intro__media_text {
  position: absolute;
  bottom: 10px;
  left: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  line-height: 15px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .wrapper__intro .intro .intro__media_text {
    bottom: 86px;
    left: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .talk-to-your-doctor .wrapper__intro .intro .intro__media_text {
    bottom: 10px;
  }
}
.talk-to-your-doctor .wrapper__intro .intro__media {
  position: relative;
}
.talk-to-your-doctor .wrapper__intro .intro__media::after {
  content: "";
  position: absolute;
  bottom: 28px;
  left: 24px;
  width: 58.127px;
  height: 60.625px;
  background-color: white;
  stroke-width: 2.5px;
  -webkit-mask-image: url("/assets/images/talk-to-your-doctor/arrow.svg");
          mask-image: url("/assets/images/talk-to-your-doctor/arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .wrapper__intro .intro__media::after {
    bottom: 110px;
    left: 42px;
    width: 116.255px;
    height: 122.188px;
  }
}
@media screen and (min-width: 1200px) {
  .talk-to-your-doctor .wrapper__intro .intro__media::after {
    bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .talk-to-your-doctor .wrapper__intro .intro__content {
    min-height: unset;
  }
}
.talk-to-your-doctor .information__section .wrapper {
  gap: 36px;
  padding-top: 36px;
  padding-right: 0;
  padding-bottom: 46px;
  padding-left: 0;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .talk-to-your-doctor .information__section .wrapper > * {
    margin: calc(36px / 2);
  }
}
@media screen and (min-width: 768px) {
  .talk-to-your-doctor .information__section .wrapper {
    padding-bottom: 78px;
  }
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .information__section .wrapper {
    gap: 180px;
    padding-top: 27px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .talk-to-your-doctor .information__section .wrapper > * {
      margin: calc(180px / 2);
    }
  }
}
@media screen and (min-width: 1200px) {
  .talk-to-your-doctor .information__section .wrapper {
    gap: 210px;
    padding-top: 50px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .talk-to-your-doctor .information__section .wrapper > * {
      margin: calc(210px / 2);
    }
  }
}
.talk-to-your-doctor .information__section .information__list {
  padding-bottom: 0;
}
.talk-to-your-doctor .information__section .information__item {
  gap: 10px;
}
.talk-to-your-doctor .information__section .information__item:last-child {
  margin-bottom: 0;
}
.talk-to-your-doctor .information__section .information__item_text {
  width: 31ch;
  font-weight: 400;
  line-height: 32px;
  color: #322F3F;
}
@media screen and (min-width: 1200px) {
  .talk-to-your-doctor .information__section .information__item_text {
    width: 54ch;
  }
}
@media screen and (min-width: 1440px) {
  .talk-to-your-doctor .information__section .information__item_text {
    width: 54ch;
  }
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .information__section .information__card {
    position: relative;
  }
  .talk-to-your-doctor .information__section .information__card::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: -170px;
    width: 127px;
    height: 126px;
    opacity: 0.1;
    background-color: #df4f60;
    -webkit-mask-image: url("/assets/images/single-arrow.svg");
            mask-image: url("/assets/images/single-arrow.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
}
@media screen and (min-width: 1200px) {
  .talk-to-your-doctor .information__section .information__card::after {
    bottom: 30px;
    left: -220px;
  }
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .information__section .information__content {
    flex: 1;
  }
}
.talk-to-your-doctor .information__section .information__title {
  margin-bottom: 17px;
}
.talk-to-your-doctor .information__section .mg__card_text {
  margin-bottom: 10px;
  color: #322F3F;
}
.talk-to-your-doctor .pre__footer {
  padding-top: 82px;
  padding-bottom: 87px;
}
.talk-to-your-doctor .pre__footer__quote {
  max-width: 62ch;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .pre__footer {
    padding-bottom: 115px;
  }
}
.talk-to-your-doctor .pre__footer::before {
  top: 26px;
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .pre__footer::before {
    top: 22px;
  }
}
.talk-to-your-doctor .pre__footer__author {
  line-height: 40px;
}
@media screen and (min-width: 1024px) {
  .talk-to-your-doctor .pre__footer__author {
    font-weight: 700;
  }
}

.page__not_found .main > .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .page__not_found .main > .wrapper {
    min-height: calc(100vh - 334px);
  }
}
.page__not_found .not_found__title {
  font-size: 56px;
  font-style: italic;
  color: #52486e;
  text-align: center;
}
.page__not_found .not_found__text {
  color: #322F3F;
  text-align: center;
}
.page__not_found .not_found__section {
  gap: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 40ch;
  padding-top: 84px;
  padding-bottom: 60px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .page__not_found .not_found__section > * {
    margin: calc(32px / 2);
  }
}
@media screen and (min-width: 1024px) {
  .page__not_found .not_found__section {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .page__community .heading__title {
    max-width: 24ch;
    font-weight: 600;
  }
  .page__community .heading__title--small {
    font-size: 27px;
    line-height: 20px;
  }
  .page__community .heading__wrapper {
    padding-top: 38px;
    padding-bottom: 60px;
  }
  .page__community .heading__content {
    gap: 0;
  }
  .page__community .heading__arrow--secondary {
    bottom: 37px;
  }
}
.page__community .intro__content_title {
  padding-left: 11px;
}
@media screen and (min-width: 428px) {
  .page__community .intro__content_text p {
    width: 97%;
  }
}
@media screen and (min-width: 1024px) {
  .page__community .intro__content_text p {
    max-width: 599px;
  }
}
.page__community .social__links {
  margin-top: 40px;
  margin-bottom: 80px;
}
.page__community .social__links_title {
  margin-bottom: 13px;
  font-family: "hwt-artz", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: 108.5%;
  color: #52486e;
  letter-spacing: 0.56px;
}
@media screen and (min-width: 768px) {
  .page__community .social__links_title {
    font-family: "hwt-artz", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    color: #52486e;
    letter-spacing: 0.56px;
  }
}
.page__community .social__links_grid_list {
  display: flex;
  gap: 33px;
  list-style-type: none;
}
.page__community .social__links_grid_list li {
  width: 41.008px;
  height: 41.009px;
  list-style-type: none;
}
@media screen and (min-width: 1200px) {
  .page__community .social__links {
    margin-top: 60px;
  }
}
@media screen and (min-width: 428px) {
  .page__community .wrapper__intro.--type-image .intro__content {
    max-width: calc(100% - 2rem);
  }
}

.pems__content {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1234px;
  height: 100%;
  margin: -16px auto 100px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  box-shadow: 4px 4px 6px 1px rgba(0, 0, 0, 0.15);
}
.pems__content h3 {
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .pems__content {
    flex-direction: row;
    gap: 0;
    height: 100%;
    border: 1px solid #989ece;
  }
}
.pems__photo {
  position: relative;
  width: 100%;
  padding: 75px 0;
  background: linear-gradient(360deg, rgba(152, 158, 206, 0.2) 0%, #fff 102%);
}
.pems__photo .photo {
  width: 220px;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 758px) {
  .pems__photo .photo {
    width: 356px;
  }
}
@media screen and (min-width: 1024px) {
  .pems__photo {
    display: flex;
    height: 660px;
    padding: 40px;
  }
}
.pems__text {
  padding: 0 10px 40px;
}
@media screen and (min-width: 1024px) {
  .pems__text {
    padding: 65px;
  }
}
.pems__bold {
  font-weight: 700;
  color: #262338;
  text-decoration: none;
}
.pems h3 {
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  color: #4d4a63;
}
.pems__buttons {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  list-style-type: none;
}
.pems__button {
  list-style-type: none;
}
.pems__arrow--top {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
}
@media screen and (min-width: 1024px) {
  .pems__arrow--top {
    display: none;
  }
}
.pems__arrow--bottom {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 64px;
  height: 64px;
}
@media screen and (min-width: 1024px) {
  .pems__arrow--bottom {
    left: 50px;
    width: 98px;
    height: 98px;
  }
}
.pems .button.custom::after {
  content: "";
  width: 21.33px;
  height: 16px;
  background-color: transparent;
  background-image: url("/assets/images/pem/envelop.svg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: none;
          mask-image: none;
}

.page__patient_support .wrapper__intro {
  position: relative;
  width: 100%;
  max-width: 100% !important;
}
.page__patient_support .wrapper__intro .intro {
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .page__patient_support .wrapper__intro .intro .intro__content_text {
    max-width: 74ch;
  }
}
.page__patient_support .wrapper__intro .intro .intro__content .form__control-input.error {
  outline: 1px solid #ff0505;
}
@media screen and (min-width: 1024px) {
  .page__patient_support .wrapper__intro .intro .intro__content .form__control-input {
    max-width: 280px;
  }
}
@media screen and (max-width: 430px) {
  .page__patient_support .wrapper__intro .intro .intro__content {
    max-width: calc(100% - 2.3rem);
  }
}
@media screen and (min-width: 1300px) {
  .page__patient_support .wrapper__intro .intro {
    max-width: 1234px;
    margin: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1299px) {
  .page__patient_support .wrapper__intro .intro {
    max-width: 900px;
  }
}
.page__patient_support .wrapper__intro.pem-page .intro__media {
  background: linear-gradient(-90deg, rgba(152, 158, 206, 0.2) 0%, rgba(152, 158, 206, 0) 102.72%);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 50% 100%;
}
@media screen and (min-width: 1024px) {
  .page__patient_support .wrapper__intro.pem-page {
    background: linear-gradient(-90deg, rgba(152, 158, 206, 0.2) 0%, rgba(152, 158, 206, 0) 102.72%);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 50% 100%;
  }
  .page__patient_support .wrapper__intro.pem-page .intro__media {
    padding-bottom: 69px;
    background: unset;
    border: none;
  }
}
@media screen and (min-width: 1024px) {
  .page__patient_support .wrapper__intro {
    margin: auto;
  }
}
.page__patient_support .pre__footer__author {
  max-width: 390px;
  margin: 24px auto 0;
}
@media screen and (min-width: 1024px) {
  .page__patient_support .pre__footer__author {
    max-width: 1024px;
  }
}
.page__patient_support .pre__footer__quote {
  width: 100%;
  max-width: 30ch;
}
@media screen and (min-width: 450px) {
  .page__patient_support .pre__footer__quote {
    max-width: 83ch;
  }
}
.page__patient_support .form__control-label {
  padding-bottom: 19px;
}

.hear__pem {
  margin: 0;
  padding-top: 36px;
}
.hear__pem .wrapper {
  width: 100%;
  margin: auto;
  margin-bottom: 64px;
}
.hear__pem .wrapper__pem {
  padding-top: 48px;
  border-top: 1px solid #4d4a63;
}
@media screen and (min-width: 1024px) {
  .hear__pem .wrapper__pem {
    border-top: none;
  }
}
.hear__pem__content {
  position: relative;
}
.hear__pem__video {
  max-width: 800px;
  margin: auto;
}
.hear__pem .arrow-left {
  position: absolute;
  top: -24px;
  right: 0;
  bottom: 0;
  width: 54px;
  height: 54px;
}
@media screen and (min-width: 1080px) {
  .hear__pem .arrow-left {
    top: 440px;
    left: 0;
    width: 87px;
    height: 87px;
  }
}
.hear__pem .arrow-right {
  position: absolute;
  display: none;
}
@media screen and (min-width: 1080px) {
  .hear__pem .arrow-right {
    top: 220px;
    right: 0;
    display: block;
    width: 77px;
    height: 77px;
  }
}
.hear__pem__share {
  max-width: 800px;
  margin: 12px auto;
}
.hear__pem__title, .hear__pem__text {
  margin-bottom: 24px;
}

@media screen and (min-width: 1024px) {
  .lifestyle-videos .heading__arrow--secondary {
    display: none;
  }
  .lifestyle-videos .heading__wrapper {
    padding-top: 57px;
    padding-bottom: 61px;
  }
  .lifestyle-videos .heading__content {
    gap: 22px;
  }
  .lifestyle-videos .heading__keyword {
    line-height: 20px;
  }
}
@media screen and (min-width: 1366px) {
  .lifestyle-videos .wrapper {
    max-width: 1240px;
  }
}
.lifestyle-videos .wrapper__intro .intro__content_title {
  margin-bottom: 17px;
  line-height: 100%;
}
@media screen and (min-width: 1024px) {
  .lifestyle-videos .wrapper__intro .intro__content_title {
    margin-bottom: 24px;
  }
}
.lifestyle-videos .collection {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .lifestyle-videos .collection > * {
    margin: calc(16px / 2);
  }
}
.lifestyle-videos .collection__item {
  gap: 8px;
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 16px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .lifestyle-videos .collection__item > * {
    margin: calc(8px / 2);
  }
}
.lifestyle-videos .collection__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background-color: #989ece;
}
@media screen and (min-width: 768px) {
  .lifestyle-videos .collection__item::after {
    display: none;
  }
}
.lifestyle-videos .collection__item:last-child {
  padding-bottom: 0;
}
.lifestyle-videos .collection__item:last-child::after {
  display: none;
}
.lifestyle-videos .collection__item .item__image {
  width: 154px;
  height: 88px;
  border-radius: 4.85px;
}
@media screen and (min-width: 768px) {
  .lifestyle-videos .collection__item .item__image {
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 224px;
    border-radius: 10px;
  }
}
.lifestyle-videos .collection__item .item__text {
  max-width: 23ch;
  font-weight: 700;
  color: #52486e;
}
@media screen and (min-width: 450px) {
  .lifestyle-videos .collection__item .item__text {
    max-width: 55ch;
  }
}
@media screen and (min-width: 768px) {
  .lifestyle-videos .collection__item .item__text {
    max-width: 37ch;
  }
}
@media screen and (min-width: 768px) {
  .lifestyle-videos .collection__item {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .lifestyle-videos .collection__item {
    gap: 16px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .lifestyle-videos .collection__item > * {
      margin: calc(16px / 2);
    }
  }
}
.lifestyle-videos .collection__title {
  margin-bottom: 24px;
}
.lifestyle-videos .collection__description {
  margin-bottom: 24px;
  color: #322F3F;
}
@media screen and (min-width: 768px) {
  .lifestyle-videos .collection__description {
    max-width: 70ch;
  }
}
.lifestyle-videos .collection__section {
  padding-top: 31px;
  padding-bottom: 60px;
}
@media screen and (max-width: 350px) {
  .lifestyle-videos .collection__section .wrapper {
    max-width: calc(100% - 1rem);
  }
}
@media screen and (min-width: 420px) and (max-width: 429px) {
  .lifestyle-videos .collection__section .wrapper {
    max-width: calc(100% - 2.4rem);
  }
}
.lifestyle-videos .collection__section--move-for-mg .collection__item:nth-child(2) .item__text {
  max-width: 23ch;
}
@media screen and (min-width: 450px) {
  .lifestyle-videos .collection__section--move-for-mg .collection__item:nth-child(2) .item__text {
    max-width: 55ch;
  }
}
@media screen and (min-width: 768px) {
  .lifestyle-videos .collection__section--move-for-mg .collection__item:nth-child(2) .item__text {
    max-width: 37ch;
  }
}
@media screen and (min-width: 1024px) {
  .lifestyle-videos .collection__section--move-for-mg {
    padding-bottom: 31px;
  }
}
.lifestyle-videos .collection__section.collection__section--embrace-self-care .collection__description {
  max-width: 389px;
}
@media screen and (min-width: 450px) {
  .lifestyle-videos .collection__section.collection__section--embrace-self-care .collection__description br {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .lifestyle-videos .collection__section.collection__section--embrace-self-care .collection__description {
    max-width: 72ch;
  }
}
.lifestyle-videos .collection__section.collection__section--embrace-self-care .collection__item:nth-child(2) .item__text {
  max-width: 23ch;
}
@media screen and (min-width: 450px) {
  .lifestyle-videos .collection__section.collection__section--embrace-self-care .collection__item:nth-child(2) .item__text {
    max-width: 55ch;
  }
}
@media screen and (min-width: 768px) {
  .lifestyle-videos .collection__section.collection__section--embrace-self-care .collection__item:nth-child(2) .item__text {
    max-width: 37ch;
  }
}
@media screen and (min-width: 1024px) {
  .lifestyle-videos .collection__section.collection__section--embrace-self-care {
    padding-bottom: 174px;
  }
}
@media screen and (min-width: 768px) {
  .lifestyle-videos .collection {
    gap: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .lifestyle-videos .collection > * {
      margin: calc(32px / 2);
    }
  }
}
@media screen and (min-width: 1024px) {
  .lifestyle-videos .collection {
    grid-template-columns: repeat(3, 1fr);
  }
}
.lifestyle-videos .intro__image {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lifestyle-videos .intro__image {
    display: block;
  }
}
.lifestyle-videos .intro__content_text {
  color: #322F3F;
}
.lifestyle-videos .intro__content_text a {
  color: #52486e;
}
.lifestyle-videos .intro__content_text a:hover {
  color: #bc4250;
}
.lifestyle-videos .intro__content_text a:active {
  color: #df4f60;
}
.lifestyle-videos .intro__content_text p:last-child {
  margin-bottom: 25px;
}
@media screen and (max-width: 450px) {
  .lifestyle-videos .intro__content_text {
    max-width: 48ch;
  }
}
.lifestyle-videos .thumbnail-container {
  position: relative;
  min-width: 154px;
}
.lifestyle-videos .thumbnail-container .time-stamp {
  position: absolute;
  right: 6.79px;
  bottom: 6.23px;
  display: flex;
  justify-content: center;
  width: 35.53px;
  height: 17.77px;
  padding-top: 1.48px;
  padding-right: 4.44px;
  padding-bottom: 1.48px;
  padding-left: 3.7px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12.79px;
  color: #fff;
  opacity: 1;
  background-color: rgba(50, 47, 63, 0.8);
  border-radius: 2.96px;
}
@media screen and (min-width: 768px) {
  .lifestyle-videos .thumbnail-container .time-stamp {
    right: 16px;
    bottom: 14px;
    align-items: center;
    width: 48px;
    height: 24px;
    padding-top: 1px;
    padding-right: 6px;
    padding-bottom: 4px;
    padding-left: 5px;
    font-size: 16px;
    line-height: 24px;
    border-radius: 4px;
  }
}

/* Collection Page */
@media screen and (min-width: 1024px) {
  .collection__page--lifestyle .heading__arrow--secondary {
    display: none;
  }
  .collection__page--lifestyle .heading__wrapper {
    padding-top: 57px;
    padding-bottom: 61px;
  }
  .collection__page--lifestyle .heading__content {
    gap: 22px;
  }
  .collection__page--lifestyle .heading__keyword {
    line-height: 20px;
  }
}
.collection__page--lifestyle .collections__nav .nav__item_link {
  font-weight: 400;
  text-transform: capitalize;
}
.collection__page--lifestyle .collections__nav .nav {
  margin-bottom: 14px;
}
@media screen and (min-width: 1024px) {
  .collection__page--lifestyle .collections__nav .nav {
    margin-bottom: 9px;
  }
}
.collection__page--lifestyle .collection__title {
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .collection__page--lifestyle .collection__title {
    margin-bottom: 24px;
  }
}
.collection__page--lifestyle .collection__video_share {
  padding-top: 19.57px;
}
@media screen and (min-width: 1024px) {
  .collection__page--lifestyle .collection__video_share {
    padding-top: 15px;
  }
}
.collection__page--lifestyle .collection__video_excerpt {
  margin-top: 37px;
  margin-bottom: 24px;
  color: #322F3F;
}
@media screen and (min-width: 1024px) {
  .collection__page--lifestyle .collection__video_excerpt {
    margin-top: 46px;
    margin-bottom: 41px;
  }
}
.collection__page--lifestyle .collection__video_transcript {
  margin-bottom: 42px;
}
@media screen and (min-width: 1024px) {
  .collection__page--lifestyle .collection__video_transcript {
    margin-bottom: 119px;
  }
}
.collection__page--lifestyle .transcript__accordion[aria-expanded=true] .accordion__item_content {
  padding-top: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid #989ece;
}
.collection__page--lifestyle .transcript__accordion[aria-expanded=true] .accordion__item_content p {
  color: #322F3F;
}
@media screen and (min-width: 1024px) {
  .collection__page--lifestyle .transcript__accordion[aria-expanded=true] .accordion__item_content {
    padding-top: 18px;
    padding-bottom: 21px;
  }
}
.collection__page--lifestyle .accordion__item_title {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .collection__page--lifestyle .accordion__item_title {
    padding-top: 21.56px;
    padding-bottom: 21.56px;
  }
}

.stay-connected-page .signup-form .form__title {
  color: #4E4B66;
}
.stay-connected-page .signup-form .form__control > .form__control-label {
  line-height: 32px;
}
.stay-connected-page .signup-form .form__control-required {
  margin-bottom: 16px;
}
.stay-connected-page .intro__media {
  position: relative;
}
.stay-connected-page .intro__media .intro__media_text {
  display: none;
  line-height: 24px;
}
@media screen and (min-width: 1025px) {
  .stay-connected-page .intro__media .intro__media_text {
    bottom: 50px;
    display: block;
  }
}
.stay-connected-page .heading__title {
  max-width: 12ch;
}
@media screen and (min-width: 500px) {
  .stay-connected-page .heading__title {
    max-width: 100%;
  }
}

.stay-connected-thank-you-page .intro__media {
  position: relative;
}
.stay-connected-thank-you-page .intro__media .intro__media_text {
  display: none;
  line-height: 24px;
}
@media screen and (min-width: 1025px) {
  .stay-connected-thank-you-page .intro__media .intro__media_text {
    bottom: 180px;
    display: block;
  }
}
@media screen and (min-width: 1038px) {
  .stay-connected-thank-you-page .intro__media .intro__media_text {
    bottom: 145px;
  }
}
@media screen and (min-width: 1141px) {
  .stay-connected-thank-you-page .intro__media .intro__media_text {
    bottom: 115px;
  }
}

.pem-form__intro {
  max-width: 660px;
  margin: auto;
  margin-top: 46px;
  margin-bottom: 16px;
  font-family: "vista-sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
  color: #4E4B66;
}
@media screen and (min-width: 780px) {
  .pem-form__intro {
    margin-top: 57px;
  }
}
.pem-form .form {
  max-width: 660px;
}
.pem-form .form .pem-form-arrow {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pem-form .form .pem-form-arrow {
    content: "";
    position: absolute;
    display: block;
    width: 87px;
    height: 87px;
  }
  .pem-form .form .pem-form-arrow--left {
    bottom: 112px;
    left: 0;
    opacity: 0.2;
  }
  .pem-form .form .pem-form-arrow--right {
    top: 56px;
    right: 0;
    width: 127px;
    height: 126px;
    opacity: 0.1;
  }
}
.pem-form .form .form__control .form__control-label {
  margin-bottom: 4px;
}
.pem-form .form .form__control.term-box {
  margin-bottom: 0;
}
.pem-form .form .form__control.age-box {
  margin-top: 1rem;
}
.pem-form .form .form__control .form__control-input {
  padding: 8px 16px;
}
.pem-form .form .form__control.error .form__control-error.text {
  margin-left: 34px;
}
.pem-form .form__control-required {
  margin-top: 16px;
  padding-left: 0;
}
@media screen and (min-width: 780px) {
  .pem-form .form__control-required {
    margin-bottom: 1rem;
  }
}
.pem-form .form .form__control .form__control-error {
  margin-top: 4px;
  line-height: 24px;
}
.pem-form .form .form__control.error .form__control-select-wrapper {
  margin-bottom: 4px;
}
.pem-form .form .form__control .form__control-checkbox + .form__control-error {
  margin-top: 0;
}
.pem-form .form .form__control.error .form__control-select-wrapper + .form__control-error {
  margin-top: 0;
}
.pem-form .form__control-label.custom {
  line-height: 30px;
}
.pem-form .form .form__control .form__control-checkbox .form__control-label a {
  font-size: 16px;
}
@media screen and (min-width: 780px) {
  .pem-form .form .form__control .form__control-checkbox .form__control-label a {
    line-height: 22px;
  }
}
.pem-form .form .form__control .form__control-checkbox .form__control-label {
  cursor: pointer;
  margin-bottom: 2px;
  padding-right: 4px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #4d4a63;
}
.pem-form .form .form__control.field-required .form__control-label::after {
  font-family: "math", sans-serif;
}
.pem-form .extended-select-item {
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.pem-form .form .form__control .form__control-select-wrapper .nice-select .nice-select-dropdown .list {
  overflow-y: auto;
}
.pem-form .form .form__control .form__control-select-wrapper .nice-select .nice-select-dropdown .list li {
  width: 100%;
  padding-right: 0;
  padding-left: 20px;
}
.pem-form .submit-button {
  margin: auto;
  margin-bottom: 68px;
}
@media screen and (min-width: 780px) {
  .pem-form .submit-button {
    margin-bottom: 102px;
  }
}
.pem-form .only-mobile {
  display: none;
}
@media only screen and (min-width: 428px) {
  .pem-form .only-mobile {
    display: block;
  }
}
@media only screen and (min-width: 430px) {
  .pem-form .only-mobile {
    display: none;
  }
}
@media only screen and (min-width: 780px) {
  .pem-form .col-md-6 {
    flex-basis: 48.48%;
  }
  .pem-form .form__controls.row {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.pem__thank-you .heading__wrapper {
  padding-block: 28px;
}
@media screen and (min-width: 768px) {
  .pem__thank-you .heading__wrapper {
    padding-block: 65px 59px;
  }
}
.pem__thank-you .heading__content {
  gap: 8px;
}
@media screen and (min-width: 400px) {
  .pem__thank-you .heading__title:last-child {
    height: 91px;
  }
}
@media screen and (min-width: 719px) {
  .pem__thank-you .heading__title:last-child {
    height: auto;
  }
}
.pem__thank-you .wrapper__intro .intro {
  gap: 33.69px;
}
.pem__thank-you .wrapper__intro .intro__media .intro__image {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .pem__thank-you .wrapper__intro .intro__media {
    max-height: 388px;
  }
}
.pem__thank-you .wrapper__intro .intro__content {
  position: relative;
  padding-bottom: 59.5px;
}
.pem__thank-you .wrapper__intro .intro__content p a {
  color: #322F3F;
  text-decoration-thickness: 1px;
}
.pem__thank-you .wrapper__intro .intro__content p a + sup {
  top: -6px;
  font-size: 11px;
  font-weight: 700;
  color: #322F3F;
}
@media screen and (min-width: 1024px) {
  .pem__thank-you .wrapper__intro .intro__content h2.intro__content_title {
    margin-bottom: 15px;
  }
  .pem__thank-you .wrapper__intro .intro__content h2.intro__content_title::before {
    top: 2px;
    bottom: unset;
    height: 29px;
  }
}
@media screen and (min-width: 1024px) {
  .pem__thank-you .wrapper__intro .intro__content .button {
    max-width: 140px;
    padding: 17px 31.5px;
  }
}
.pem__thank-you .wrapper__intro .intro__content .pem-name {
  text-transform: capitalize;
}
@media screen and (min-width: 1024px) {
  .pem__thank-you .wrapper__intro .intro__content {
    margin-top: 47px;
    padding-bottom: 268px;
  }
}
.pem__thank-you .wrapper__intro .intro__content_text p:last-of-type {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .pem__thank-you .wrapper__intro .intro__content_text p:last-of-type {
    margin-bottom: 53.5px;
  }
}
@media screen and (min-width: 1024px) {
  .pem__thank-you .wrapper__intro .intro__content_text {
    max-width: 81ch;
  }
}
.pem__thank-you .pem-thank-you-arrow {
  max-width: 43.49px;
  max-height: 43.5px;
  margin-top: 11px;
  margin-left: 11.5px;
}
.pem__thank-you .pem-thank-you-arrow--secondary {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 152px;
  max-width: 63.5px;
  max-height: 63px;
  margin-top: 0;
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .pem__thank-you .pem-thank-you-arrow--secondary {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .pem__thank-you .pem-thank-you-arrow {
    position: absolute;
    bottom: 220px;
    left: 275px;
    max-width: 86.91px;
    max-height: 87px;
    margin-top: 0;
    margin-left: 0;
  }
}

/* {outputFileName:style} */