@media all, bookshop {

@charset "UTF-8";
.c-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
  border-radius: 9999px;
  white-space: nowrap;
  max-width: fit-content;
}
.c-badge--sm {
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
}
.c-badge--sm .c-badge__icon {
  width: 0.75rem;
  height: 0.75rem;
}
.c-badge--md {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
}
.c-badge--md .c-badge__icon {
  width: 0.875rem;
  height: 0.875rem;
}
.c-badge--lg {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.c-badge--lg .c-badge__icon {
  width: 1rem;
  height: 1rem;
}
.c-badge__icon {
  flex-shrink: 0;
}
.c-badge__icon svg {
  width: 100%;
  height: 100%;
}
.c-badge--filled.c-badge--gray {
  background-color: #6b7280;
  color: white;
}
.c-badge--filled.c-badge--red {
  background-color: #ef4444;
  color: white;
}
.c-badge--filled.c-badge--orange {
  background-color: #f97316;
  color: white;
}
.c-badge--filled.c-badge--yellow {
  background-color: #eab308;
  color: #1f2937;
}
.c-badge--filled.c-badge--green {
  background-color: #22c55e;
  color: white;
}
.c-badge--filled.c-badge--blue {
  background-color: #3b82f6;
  color: white;
}
.c-badge--filled.c-badge--indigo {
  background-color: #6366f1;
  color: white;
}
.c-badge--filled.c-badge--purple {
  background-color: #a855f7;
  color: white;
}
.c-badge--filled.c-badge--pink {
  background-color: #ec4899;
  color: white;
}
.c-badge--outline {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}
.c-badge--outline.c-badge--gray {
  border-color: #6b7280;
  color: #6b7280;
}
.c-badge--outline.c-badge--red {
  border-color: #ef4444;
  color: #ef4444;
}
.c-badge--outline.c-badge--orange {
  border-color: #f97316;
  color: #f97316;
}
.c-badge--outline.c-badge--yellow {
  border-color: #eab308;
  color: #ca8a04;
}
.c-badge--outline.c-badge--green {
  border-color: #22c55e;
  color: #16a34a;
}
.c-badge--outline.c-badge--blue {
  border-color: #3b82f6;
  color: #3b82f6;
}
.c-badge--outline.c-badge--indigo {
  border-color: #6366f1;
  color: #6366f1;
}
.c-badge--outline.c-badge--purple {
  border-color: #a855f7;
  color: #a855f7;
}
.c-badge--outline.c-badge--pink {
  border-color: #ec4899;
  color: #ec4899;
}
.c-badge--soft.c-badge--gray {
  background-color: #f3f4f6;
  color: #4b5563;
}
.c-badge--soft.c-badge--red {
  background-color: #fef2f2;
  color: #dc2626;
}
.c-badge--soft.c-badge--orange {
  background-color: #fff7ed;
  color: #ea580c;
}
.c-badge--soft.c-badge--yellow {
  background-color: #fefce8;
  color: #ca8a04;
}
.c-badge--soft.c-badge--green {
  background-color: #f0fdf4;
  color: #16a34a;
}
.c-badge--soft.c-badge--blue {
  background-color: #eff6ff;
  color: #2563eb;
}
.c-badge--soft.c-badge--indigo {
  background-color: #eef2ff;
  color: #4f46e5;
}
.c-badge--soft.c-badge--purple {
  background-color: #faf5ff;
  color: #9333ea;
}
.c-badge--soft.c-badge--pink {
  background-color: #fdf2f8;
  color: #db2777;
}

.c-button {
  cursor: pointer;
  text-decoration: none;
}
.c-button:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.c-button:active {
  transform: scale(0.98);
}

.c-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.125em;
}
.c-counter__prefix, .c-counter__suffix {
  opacity: 0.9;
}
.c-counter__number {
  font-variant-numeric: tabular-nums;
}

.c-definition-list {
  margin: 0;
}
.c-definition-list__item {
  margin-bottom: 1rem;
}
.c-definition-list__term {
  color: inherit;
}
.c-definition-list__definition {
  margin: 0;
  opacity: 0.8;
}
.c-definition-list--stacked .c-definition-list__term {
  margin-bottom: 0.25rem;
}
.c-definition-list--inline .c-definition-list__item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.c-definition-list--inline .c-definition-list__term::after {
  content: ":";
}
.c-definition-list--grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
}
.c-definition-list--grid .c-definition-list__item {
  display: contents;
  margin-bottom: 0;
}
.c-definition-list--grid .c-definition-list__term {
  text-align: right;
}
.c-definition-list--dividers .c-definition-list__item {
  padding-bottom: 1rem;
  border-bottom: 1px solid currentColor;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.c-definition-list--dividers .c-definition-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.c-definition-list--grid.c-definition-list--dividers .c-definition-list__item {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: subgrid;
}

.c-divider {
  border: none;
  border-top-color: currentColor;
  opacity: 0.2;
}
.c-divider--solid {
  border-top-style: solid;
}
.c-divider--dashed {
  border-top-style: dashed;
}
.c-divider--dotted {
  border-top-style: dotted;
}
.c-divider--thin {
  border-top-width: 1px;
}
.c-divider--medium {
  border-top-width: 2px;
}
.c-divider--thick {
  border-top-width: 4px;
}

.c-embed {
  position: relative;
}
.c-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.c-embed > * {
  max-width: 100%;
}

.c-heading {
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.c-icon__svg--fill {
  fill: var(--c-icon-color, currentColor);
}
.c-icon__svg--stroke {
  stroke: var(--c-icon-color, currentColor);
}

.c-image {
  position: relative;
  width: 100%;
}
.c-image img {
  width: 100%;
  height: 100%;
}

.c-list {
  margin: 0;
  padding: 0;
}
.c-list--unordered {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.c-list--unordered li {
  margin-bottom: 0.5rem;
}
.c-list--ordered {
  list-style-type: decimal;
  padding-left: 1.5rem;
}
.c-list--ordered li {
  margin-bottom: 0.5rem;
}
.c-list--none {
  list-style: none;
}
.c-list--none li {
  margin-bottom: 0.5rem;
}
.c-list--icon, .c-list--check {
  list-style: none;
}
.c-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.c-list__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}
.c-list__icon svg {
  width: 100%;
  height: 100%;
}
.c-list__text {
  flex: 1;
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.c-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.15s ease;
}
.c-pagination__btn:hover:not(.c-pagination__btn--disabled) {
  opacity: 0.8;
}
.c-pagination__btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.c-pagination__icon {
  flex-shrink: 0;
}
.c-pagination__info {
  font-weight: 500;
  opacity: 0.7;
}
.c-pagination--sm .c-pagination__btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}
.c-pagination--sm .c-pagination__icon {
  width: 1rem;
  height: 1rem;
}
.c-pagination--sm .c-pagination__info {
  font-size: 0.875rem;
}
.c-pagination--md .c-pagination__btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.c-pagination--md .c-pagination__icon {
  width: 1.25rem;
  height: 1.25rem;
}
.c-pagination--md .c-pagination__info {
  font-size: 0.875rem;
}
.c-pagination--lg .c-pagination__btn {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
}
.c-pagination--lg .c-pagination__icon {
  width: 1.5rem;
  height: 1.5rem;
}
.c-pagination--lg .c-pagination__info {
  font-size: 1rem;
}
.c-pagination--simple .c-pagination__btn {
  background-color: transparent;
  border: 1px solid currentColor;
  border-color: rgba(0, 0, 0, 0.2);
  color: inherit;
}
.c-pagination--simple .c-pagination__btn:hover:not(.c-pagination__btn--disabled) {
  background-color: rgba(0, 0, 0, 0.05);
}
.c-pagination--with-info .c-pagination__btn {
  background-color: transparent;
  border: 1px solid currentColor;
  border-color: rgba(0, 0, 0, 0.2);
  color: inherit;
}
.c-pagination--with-info .c-pagination__btn:hover:not(.c-pagination__btn--disabled) {
  background-color: rgba(0, 0, 0, 0.05);
}

.c-simple-text a {
  text-decoration: underline;
}
.c-simple-text a:hover {
  opacity: 0.8;
}

.c-testimonial {
  max-width: 42rem;
}
.c-testimonial__quote {
  line-height: 1.6;
}
.c-testimonial__quote-mark {
  font-size: 1.25em;
  opacity: 0.5;
}
.c-testimonial__author-info {
  display: flex;
  flex-direction: column;
}

.c-text h2, .c-text h3, .c-text h4, .c-text h5, .c-text h6 {
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.c-text h2 {
  font-size: 1.5rem;
}
.c-text h3 {
  font-size: 1.25rem;
}
.c-text h4 {
  font-size: 1.125rem;
}
.c-text h5 {
  font-size: 1rem;
}
.c-text h6 {
  font-size: 0.875rem;
}
.c-text p {
  margin-bottom: 1em;
}
.c-text ul, .c-text ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.c-text ul {
  list-style-type: disc;
}
.c-text ol {
  list-style-type: decimal;
}
.c-text li {
  margin-bottom: 0.25em;
}
.c-text a {
  text-decoration: underline;
}
.c-text a:hover {
  opacity: 0.8;
}
.c-text blockquote {
  border-left: 4px solid currentColor;
  padding-left: 1em;
  margin: 1em 0;
  opacity: 0.9;
}
.c-text code {
  font-family: monospace;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.125em 0.25em;
  border-radius: 0.25em;
}
.c-text pre {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 1em;
  border-radius: 0.5em;
  overflow-x: auto;
  margin-bottom: 1em;
}
.c-text pre code {
  background: none;
  padding: 0;
}

.c-video {
  position: relative;
}
.c-video__placeholder {
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}
.c-video lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
}
.c-video lite-youtube::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  top: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.54) 14%, rgba(0, 0, 0, 0.15) 54%, rgba(0, 0, 0, 0.05) 72%, rgba(0, 0, 0, 0) 94%);
  height: 99px;
  width: 100%;
  font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
  color: hsl(0, 0%, 93.33%);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  padding: 25px 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.c-video lite-youtube:hover::before {
  color: white;
}
.c-video lite-youtube::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.c-video lite-youtube > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}
.c-video lite-youtube > .lty-playbtn {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center/68px 48px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
  position: absolute;
  cursor: pointer;
  z-index: 1;
  filter: grayscale(100%);
  transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
  border: 0;
}
.c-video lite-youtube:hover > .lty-playbtn,
.c-video lite-youtube .lty-playbtn:focus {
  filter: none;
}
.c-video lite-youtube.lyt-activated {
  cursor: unset;
}
.c-video lite-youtube.lyt-activated::before,
.c-video lite-youtube.lyt-activated > .lty-playbtn {
  opacity: 0;
  pointer-events: none;
}
.c-video .lyt-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.c-video lite-vimeo {
  aspect-ratio: 16/9;
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
}
.c-video lite-vimeo > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}
.c-video lite-vimeo > .ltv-playbtn {
  font-size: 10px;
  padding: 0;
  width: 6.5em;
  height: 4em;
  background: rgba(23, 35, 34, 0.75);
  z-index: 1;
  opacity: 0.8;
  border-radius: 0.5em;
  transition: opacity 0.2s ease-out, background 0.2s ease-out;
  outline: 0;
  border: 0;
  cursor: pointer;
}
.c-video lite-vimeo:hover > .ltv-playbtn {
  background-color: rgb(0, 173, 239);
  opacity: 1;
}
.c-video lite-vimeo > .ltv-playbtn::before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
}
.c-video lite-vimeo > .ltv-playbtn,
.c-video lite-vimeo > .ltv-playbtn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.c-video lite-vimeo.ltv-activated {
  cursor: unset;
}
.c-video lite-vimeo.ltv-activated::before,
.c-video lite-vimeo.ltv-activated > .ltv-playbtn {
  opacity: 0;
  pointer-events: none;
}
.c-video video {
  border-radius: 0.5rem;
}

.c-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.c-accordion--default .c-accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.c-accordion--default .c-accordion__item:last-child {
  border-bottom: none;
}
.c-accordion--bordered .c-accordion__item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.c-accordion--separated .c-accordion__item {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 0.5rem;
}
.c-accordion__item {
  overflow: hidden;
}
.c-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
  transition: background-color 0.15s ease;
}
.c-accordion__trigger:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.c-accordion__trigger:focus {
  outline: 2px solid var(--color-focus, #3b82f6);
  outline-offset: -2px;
}
.c-accordion__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}
.is-open .c-accordion__icon {
  transform: rotate(180deg);
}
.c-accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.is-open .c-accordion__content {
  grid-template-rows: 1fr;
}
.c-accordion__content-inner {
  overflow: hidden;
  padding: 0 1rem;
}
.is-open .c-accordion__content-inner {
  padding-bottom: 1rem;
}

.c-button-group--stretch > * {
  flex: 1;
}
.c-button-group--stretch.flex-col > * {
  width: 100%;
}
.c-button-group.flex-col {
  align-items: stretch;
}
.c-button-group.flex-col:not(.c-button-group--stretch) {
  align-items: flex-start;
}
.c-button-group.flex-col.justify-center:not(.c-button-group--stretch) {
  align-items: center;
}
.c-button-group.flex-col.justify-end:not(.c-button-group--stretch) {
  align-items: flex-end;
}

.c-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.c-card--bordered {
  border: 1px solid var(--color-border, rgba(0, 0, 0, 0.1));
}
.c-card--clickable {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.c-card--clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.c-card--clickable:focus {
  outline: 2px solid var(--color-focus, #3b82f6);
  outline-offset: 2px;
}
.c-card__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.c-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
}
.c-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-card__content > *:first-child {
  margin-top: 0;
}
.c-card__content > *:last-child {
  margin-bottom: 0;
}
.c-card__before img {
  display: block;
  width: 100%;
  height: auto;
}
.c-card__after {
  margin-top: auto;
}

.c-carousel {
  --slide-width: 100%;
  --slide-min-width: 280px;
  --slide-gap: 1rem;
  position: relative;
  width: 100%;
}
.c-carousel__viewport {
  overflow: hidden;
  width: 100%;
}
.c-carousel__track {
  display: flex;
  gap: var(--slide-gap);
  transition: transform 0.3s ease-out;
}
.c-carousel__slide {
  flex: 0 0 calc(var(--slide-width) - var(--slide-gap));
  min-width: var(--slide-min-width);
  max-width: 100%;
}
.c-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.c-carousel__nav svg {
  width: 1.25rem;
  height: 1.25rem;
}
.c-carousel__nav:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.c-carousel__nav:focus {
  outline: 2px solid var(--color-focus, #3b82f6);
  outline-offset: 2px;
}
.c-carousel__nav--prev {
  left: 0.5rem;
}
.c-carousel__nav--next {
  right: 0.5rem;
}
.c-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.c-carousel__dot {
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
}
.c-carousel__dot:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.c-carousel__dot:focus {
  outline: 2px solid var(--color-focus, #3b82f6);
  outline-offset: 2px;
}
.c-carousel__dot.is-active {
  background-color: currentColor;
  transform: scale(1.2);
}

.c-content-selector {
  width: 100%;
}
.c-content-selector--top {
  display: flex;
  flex-direction: column;
}
.c-content-selector--top .c-content-selector__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.c-content-selector--start {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.c-content-selector--start .c-content-selector__nav {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.25rem;
  min-width: 150px;
}
.c-content-selector--start .c-content-selector__panels {
  flex: 1;
  min-width: 0;
}
@media (max-width: 640px) {
  .c-content-selector--start {
    flex-direction: column;
  }
  .c-content-selector--start .c-content-selector__nav {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
}
.c-content-selector__nav--stretch .c-content-selector__tab {
  flex: 1;
}
.c-content-selector__tab {
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.7;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.c-content-selector__tab:hover {
  opacity: 1;
}
.c-content-selector__tab:focus {
  outline: 2px solid var(--color-focus, #3b82f6);
  outline-offset: 2px;
}
.c-content-selector__tab.is-active {
  opacity: 1;
}
.c-content-selector--underline .c-content-selector__nav {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.c-content-selector--underline .c-content-selector__tab {
  position: relative;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
}
.c-content-selector--underline .c-content-selector__tab.is-active {
  border-bottom-color: currentColor;
}
.c-content-selector--underline.c-content-selector--start .c-content-selector__nav {
  border-bottom: none;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 1rem;
}
.c-content-selector--underline.c-content-selector--start .c-content-selector__tab {
  margin-bottom: 0;
  margin-right: -1px;
  border-bottom: none;
  border-right: 2px solid transparent;
}
.c-content-selector--underline.c-content-selector--start .c-content-selector__tab.is-active {
  border-right-color: currentColor;
}
.c-content-selector--pills .c-content-selector__tab {
  border-radius: 9999px;
  background-color: transparent;
}
.c-content-selector--pills .c-content-selector__tab:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.c-content-selector--pills .c-content-selector__tab.is-active {
  background-color: rgba(0, 0, 0, 0.1);
}
.c-content-selector--boxed .c-content-selector__nav {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.25rem;
  border-radius: 0.5rem;
}
.c-content-selector--boxed .c-content-selector__tab {
  border-radius: 0.375rem;
}
.c-content-selector--boxed .c-content-selector__tab.is-active {
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.c-content-selector__panels {
  width: 100%;
}
.c-content-selector__panel {
  display: none;
}
.c-content-selector__panel.is-active {
  display: block;
}

.c-grid {
  --grid-min-width: 280px;
  --grid-max-width: 400px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--grid-min-width)), var(--grid-max-width)));
  width: 100%;
}
.c-grid--start {
  justify-content: start;
}
.c-grid--center {
  justify-content: center;
}
.c-grid__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.2s, opacity 0.2s ease;
}
.c-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s ease;
}
.c-modal--center {
  align-items: center;
}
.c-modal--top {
  align-items: flex-start;
  padding-top: 3rem;
}
.c-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.c-modal__dialog {
  position: relative;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  transform: scale(0.95) translateY(-10px);
  transition: transform 0.2s ease;
}
.is-open .c-modal__dialog {
  transform: scale(1) translateY(0);
}
.c-modal__dialog--sm {
  width: 100%;
  max-width: 400px;
}
.c-modal__dialog--md {
  width: 100%;
  max-width: 500px;
}
.c-modal__dialog--lg {
  width: 100%;
  max-width: 640px;
}
.c-modal__dialog--xl {
  width: 100%;
  max-width: 768px;
}
.c-modal__dialog--full {
  width: 100%;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem);
}
.c-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  color: inherit;
  opacity: 0.5;
  transition: opacity 0.15s ease, background-color 0.15s ease;
  z-index: 1;
}
.c-modal__close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.c-modal__close:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.05);
}
.c-modal__close:focus {
  outline: 2px solid var(--color-focus, #3b82f6);
  outline-offset: 2px;
  opacity: 1;
}
.c-modal__content {
  padding: 1.5rem;
  padding-top: 2.5rem;
}
.c-modal__content > *:first-child {
  margin-top: 0;
}
.c-modal__content > *:last-child {
  margin-bottom: 0;
}
.c-split {
  --split-min-width: 768px;
  --split-fixed-width: 300px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.c-split__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-split__column > *:first-child {
  margin-top: 0;
}
.c-split__column > *:last-child {
  margin-bottom: 0;
}
.c-split--half .c-split__column {
  flex: 1 1 calc((var(--split-min-width) - 100%) * 999);
  min-width: 0;
}
.c-split--quarter-three-quarters .c-split__column--first {
  flex: 1 1 25%;
  min-width: min(100%, (var(--split-min-width) - 100%) * 999);
}
.c-split--quarter-three-quarters .c-split__column--second {
  flex: 3 1 75%;
  min-width: min(100%, (var(--split-min-width) - 100%) * 999);
}
.c-split--third-two-thirds .c-split__column--first {
  flex: 1 1 33.333%;
  min-width: min(100%, (var(--split-min-width) - 100%) * 999);
}
.c-split--third-two-thirds .c-split__column--second {
  flex: 2 1 66.666%;
  min-width: min(100%, (var(--split-min-width) - 100%) * 999);
}
.c-split--two-thirds-third .c-split__column--first {
  flex: 2 1 66.666%;
  min-width: min(100%, (var(--split-min-width) - 100%) * 999);
}
.c-split--two-thirds-third .c-split__column--second {
  flex: 1 1 33.333%;
  min-width: min(100%, (var(--split-min-width) - 100%) * 999);
}
.c-split--three-quarters-quarter .c-split__column--first {
  flex: 3 1 75%;
  min-width: min(100%, (var(--split-min-width) - 100%) * 999);
}
.c-split--three-quarters-quarter .c-split__column--second {
  flex: 1 1 25%;
  min-width: min(100%, (var(--split-min-width) - 100%) * 999);
}
.c-split--fixed-flexible .c-split__column--first {
  flex: 0 0 var(--split-fixed-width);
  min-width: min(100%, var(--split-fixed-width));
}
.c-split--fixed-flexible .c-split__column--second {
  flex: 1 1 0%;
  min-width: min(100%, (var(--split-min-width) - 100%) * 999);
}
.c-split--flexible-fixed .c-split__column--first {
  flex: 1 1 0%;
  min-width: min(100%, (var(--split-min-width) - 100%) * 999);
}
.c-split--flexible-fixed .c-split__column--second {
  flex: 0 0 var(--split-fixed-width);
  min-width: min(100%, var(--split-fixed-width));
}
.c-split--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .c-split--reverse-mobile {
    flex-direction: column-reverse;
  }
}
@container (max-width: 768px) {
  .c-split {
    flex-direction: column;
  }
  .c-split--reverse-mobile {
    flex-direction: column-reverse;
  }
  .c-split .c-split__column {
    flex-basis: 100% !important;
    min-width: 100% !important;
  }
}
@supports not (container-type: inline-size) {
  @media (max-width: 768px) {
    .c-split {
      flex-direction: column;
    }
    .c-split--reverse-mobile {
      flex-direction: column-reverse;
    }
    .c-split .c-split__column {
      flex-basis: 100% !important;
      min-width: 100% !important;
    }
  }
}

.c-dateInput input[type=date]::-webkit-inner-spin-button,
.c-dateInput input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.c-helperText a {
  color: #5FB6E0;
}

.c-heading .cs-visualInterest {
  position: relative;
}
.c-heading .cs-visualInterest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-heading .cs-visualInterest-sideLine::before {
  border-left: 2px solid;
  border-color: var(--c-visualColor, rgba(0, 0, 0, 0));
  top: 0.5rem;
  left: -0.5rem;
  height: 50%;
}
.c-heading .cs-visualInterest-dash::before {
  border-top: 2px solid;
  border-color: var(--c-visualColor, rgba(0, 0, 0, 0));
  top: 50%;
  left: -1rem;
  width: 0.625rem;
}
.c-heading .cs-visualInterest-underline::before {
  border-bottom: 2px solid;
  border-color: var(--c-visualColor, rgba(0, 0, 0, 0));
  top: -0.5rem;
  width: 2rem;
}
.c-heading p {
  margin-top: 12px;
}
.c-heading ol,
.c-heading ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 32px;
}
.c-heading .cs-headingLink a {
  color: #5FB6E0;
}
.c-heading ul > li {
  list-style-type: circle;
}
.c-heading ol > li {
  list-style-type: decimal;
}

.c-headingHorizontal .cs-visualInterest {
  position: relative;
}
.c-headingHorizontal .cs-visualInterest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-headingHorizontal .cs-visualInterest-sideLine::before {
  border-left: 2px solid;
  border-color: var(--c-visualColor, rgba(0, 0, 0, 0));
  top: 0.5rem;
  left: -0.5rem;
  height: 50%;
}
.c-headingHorizontal .cs-visualInterest-dash::before {
  border-top: 2px solid;
  border-color: var(--c-visualColor, rgba(0, 0, 0, 0));
  top: 50%;
  left: -1rem;
  width: 0.625rem;
}
.c-headingHorizontal .cs-visualInterest-underline::before {
  border-bottom: 2px solid;
  border-color: var(--c-visualColor, rgba(0, 0, 0, 0));
  top: -0.5rem;
  width: 2rem;
}
.c-headingHorizontal p {
  margin-top: 12px;
}
.c-headingHorizontal ol,
.c-headingHorizontal ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 32px;
}
.c-headingHorizontal .cs-headingLink a {
  color: #5FB6E0;
}
.c-headingHorizontal ul > li {
  list-style-type: circle;
}
.c-headingHorizontal ol > li {
  list-style-type: decimal;
}

.c-headingImage .cs-visualInterest {
  position: relative;
}
.c-headingImage .cs-visualInterest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-headingImage .cs-visualInterest-sideLine::before {
  border-left: 2px solid;
  border-color: var(--c-visualColor, rgba(0, 0, 0, 0));
  top: 0.5rem;
  left: -0.5rem;
  height: 50%;
}
.c-headingImage .cs-visualInterest-dash::before {
  border-top: 2px solid;
  border-color: var(--c-visualColor, rgba(0, 0, 0, 0));
  top: 50%;
  left: -1rem;
  width: 0.625rem;
}
.c-headingImage .cs-visualInterest-underline::before {
  border-bottom: 2px solid;
  border-color: var(--c-visualColor, rgba(0, 0, 0, 0));
  top: -0.5rem;
  width: 2rem;
}
.c-headingImage p {
  margin-top: 12px;
}
.c-headingImage ol,
.c-headingImage ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 32px;
}
.c-headingImage .cs-headingLink a {
  color: #5FB6E0;
}
.c-headingImage ul > li {
  list-style-type: circle;
}
.c-headingImage ol > li {
  list-style-type: decimal;
}

.c-heroLibraryIcon--outline .c-heroLibraryIcon__svg, .c-heroLibraryIcon--outline * {
  stroke: var(--c-heroLibraryIconColor, #F9F9FB);
}
.c-heroLibraryIcon--solid .c-heroLibraryIcon__svg, .c-heroLibraryIcon--solid * {
  fill: var(--c-heroLibraryIconColor, #F9F9FB);
}

.c-imageModal picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-lightBox picture {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-lightBox .thumbnails picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-defaultListingCard picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-horizontalListingCard picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-pricingCard h2 {
  margin-top: 48px;
  font-size: 36px;
}
.c-pricingCard h3 {
  margin-top: 32px;
  font-size: 32px;
}
.c-pricingCard h4 {
  margin-top: 32px;
  font-size: 28px;
}
.c-pricingCard h5 {
  margin-top: 28px;
  font-size: 24px;
}
.c-pricingCard h6 {
  margin-top: 24px;
  font-size: 20px;
}
.c-pricingCard p {
  margin-top: 12px;
}
.c-pricingCard ol,
.c-pricingCard ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 32px;
}
.c-pricingCard a {
  color: #5FB6E0;
  text-decoration: underline;
}
.c-pricingCard ul > li {
  list-style-type: circle;
}
.c-pricingCard ol > li {
  list-style-type: decimal;
}

.c-textBlock p {
  margin-top: 12px;
}
.c-textBlock ol,
.c-textBlock ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 32px;
}
.c-textBlock .cs-headingLink a {
  color: #5FB6E0;
}
.c-textBlock ul > li {
  list-style-type: circle;
}
.c-textBlock ol > li {
  list-style-type: decimal;
}

.c-videoEmbed {
  /* gradient */
  /* responsive iframe with a 16:9 aspect ratio
      thanks https://css-tricks.com/responsive-iframes/
  */
  /* play button */
  /* Post-click styles */
  /* play button triangle */
  /* Post-click styles */
}
.c-videoEmbed lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
}
.c-videoEmbed lite-youtube::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  top: 0;
  /* Pixel-perfect port of YT's gradient PNG, using https://github.com/bluesmoon/pngtocss plus optimizations */
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0.54) 14%, rgba(0, 0, 0, 0.15) 54%, rgba(0, 0, 0, 0.05) 72%, rgba(0, 0, 0, 0) 94%);
  height: 99px;
  width: 100%;
  font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
  color: hsl(0, 0%, 93.33%);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  padding: 25px 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.c-videoEmbed lite-youtube:hover::before {
  color: white;
}
.c-videoEmbed lite-youtube::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.c-videoEmbed lite-youtube > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}
.c-videoEmbed lite-youtube > .lty-playbtn {
  display: block;
  /* Make the button element cover the whole area for a large hover/click target… */
  width: 100%;
  height: 100%;
  /* …but visually it's still the same size */
  background: no-repeat center/68px 48px;
  /* YT's actual play button svg */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
  position: absolute;
  cursor: pointer;
  z-index: 1;
  filter: grayscale(100%);
  transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
  border: 0;
}
.c-videoEmbed lite-youtube:hover > .lty-playbtn,
.c-videoEmbed lite-youtube .lty-playbtn:focus {
  filter: none;
}
.c-videoEmbed lite-youtube.lyt-activated {
  cursor: unset;
}
.c-videoEmbed lite-youtube.lyt-activated::before,
.c-videoEmbed lite-youtube.lyt-activated > .lty-playbtn {
  opacity: 0;
  pointer-events: none;
}
.c-videoEmbed .lyt-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.c-videoEmbed lite-vimeo {
  aspect-ratio: 16/9;
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
}
.c-videoEmbed lite-vimeo > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}
.c-videoEmbed lite-vimeo > .ltv-playbtn {
  font-size: 10px;
  padding: 0;
  width: 6.5em;
  height: 4em;
  background: rgba(23, 35, 34, 0.75);
  z-index: 1;
  opacity: 0.8;
  border-radius: 0.5em;
  transition: opacity 0.2s ease-out, background 0.2s ease-out;
  outline: 0;
  border: 0;
  cursor: pointer;
}
.c-videoEmbed lite-vimeo:hover > .ltv-playbtn {
  background-color: rgb(0, 173, 239);
  opacity: 1;
}
.c-videoEmbed lite-vimeo > .ltv-playbtn::before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
}
.c-videoEmbed lite-vimeo > .ltv-playbtn,
.c-videoEmbed lite-vimeo > .ltv-playbtn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.c-videoEmbed lite-vimeo.ltv-activated {
  cursor: unset;
}
.c-videoEmbed lite-vimeo.ltv-activated::before,
.c-videoEmbed lite-vimeo.ltv-activated > .ltv-playbtn {
  opacity: 0;
  pointer-events: none;
}

.c-base-section {
  position: relative;
  width: 100%;
}
.c-base-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-base-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-base-section__partial {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}
.c-base-section__partial--top {
  top: 0;
}
.c-base-section__partial--bottom {
  bottom: 0;
}
.c-base-section__container {
  position: relative;
  z-index: 10;
}
.c-base-section__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-base-section__content > *:first-child {
  margin-top: 0;
}
.c-base-section__content > *:last-child {
  margin-bottom: 0;
}
.c-base-section[class*=color-group-] {
  color: var(--text-color, inherit);
}

.c-5050ImageForm picture {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
}

.c-bannerHero picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-fullImageTextBottomHero picture {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
}

.c-imageCarousel picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-reviewCards picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-scatterGallery {
  /* --- Loader --- */
  /* --- Gallery Container --- */
  /* --- Photos Wrappers --- */
  /* The frame around the content */
  /* Reset button styles inside the gallery */
  /* Selected State (Centered) */
  /* Info Styles */
  /* Style 1: Simple caption bottom */
  /* Style 2: Box below */
  /* Style 3: Overlay on hover */
  /* --- Navigation Controls --- */
}
.c-scatterGallery .ffka-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}
.c-scatterGallery .ffka-loader.loaded {
  opacity: 0;
  pointer-events: none;
}
.c-scatterGallery .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.c-scatterGallery [id^=ffka_sc_wrap] {
  position: relative;
  display: block !important; /* Override 'flex' class from framework */
  width: 100%;
  height: 80vh;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s;
  perspective: 1000px;
}
.c-scatterGallery .photo-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  z-index: 10;
  will-change: transform, left, top;
}
.c-scatterGallery .photo-inner {
  position: relative;
  background: #fff;
  padding: 0; /* Padding is set dynamically by JS based on borderSize */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
}
.c-scatterGallery .photo-inner button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.c-scatterGallery .photo-inner img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.c-scatterGallery .photo-container.selected {
  z-index: 100 !important;
  transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
  left: 50% !important;
  top: 50% !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.c-scatterGallery .photo-info {
  position: absolute;
  transition: opacity 0.4s;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}
.c-scatterGallery .photo-container.selected .photo-info {
  opacity: 1;
  pointer-events: auto;
}
.c-scatterGallery .info-style-1 {
  bottom: -30px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 1px 2px #000;
}
.c-scatterGallery .info-style-2 {
  left: 0;
  background: rgb(255, 255, 255);
  color: #000000;
  padding: 10px;
  width: 100%;
  bottom: 0;
  transform: translateY(100%);
}
.c-scatterGallery .info-style-3 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
  padding: 15px;
  color: white;
}
.c-scatterGallery .sc-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(59, 58, 58, 0.15);
  border-radius: 50%;
  cursor: pointer;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, transform 0.2s;
  backdrop-filter: blur(2px);
}
.c-scatterGallery .sc-nav-arrow:hover {
  background: rgba(24, 23, 23, 0.15);
  transform: translateY(-50%) scale(1.1);
}
.c-scatterGallery .sc-nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.c-scatterGallery .sc-prev {
  left: 20px;
}
.c-scatterGallery .sc-next {
  right: 20px;
}
.c-scatterGallery .arrow-icon {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 6px;
}
.c-scatterGallery .sc-next .arrow-icon {
  transform: rotate(-45deg);
  margin-left: -4px;
}
.c-scatterGallery .sc-prev .arrow-icon {
  transform: rotate(135deg);
  margin-left: 4px;
}

.c-servingMagicValley picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-sideBySideStandard picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-simpleTextBlock h2 {
  margin-top: 48px;
  font-size: 36px;
}
.c-simpleTextBlock h3 {
  margin-top: 32px;
  font-size: 32px;
}
.c-simpleTextBlock h4 {
  margin-top: 32px;
  font-size: 28px;
}
.c-simpleTextBlock h5 {
  margin-top: 28px;
  font-size: 24px;
}
.c-simpleTextBlock h6 {
  margin-top: 24px;
  font-size: 20px;
}
.c-simpleTextBlock p {
  margin-top: 12px;
}
.c-simpleTextBlock ol,
.c-simpleTextBlock ul {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 32px;
}
.c-simpleTextBlock a {
  color: #5FB6E0;
  text-decoration: underline;
}
.c-simpleTextBlock ul > li {
  list-style-type: circle;
}
.c-simpleTextBlock ol > li {
  list-style-type: decimal;
}

.c-textBreakReview picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-upcomingHappening picture {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
}

}