: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-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-outline-width: 1px;
  --f-button-outline-color: rgba(0, 0, 0, .7);
  --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-opacity: 1;
  --f-button-svg-disabled-opacity: .5;
  --f-button-svg-transition: opacity .15s ease;
  --f-button-svg-transform: none
}

.f-button {
  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);
  transform: var(--f-button-transform);
  transition: var(--f-button-transition);
  backdrop-filter: var(--f-button-backdrop-filter);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  pointer-events: all;
  cursor: pointer;
  overflow: hidden
}

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

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

.f-button:focus {
  outline: none
}

.f-button:focus-visible {
  outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
  outline-offset: var(--f-button-outline-offset);
  position: relative;
  z-index: 1
}

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

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

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

[data-panzoom-action=toggleFS] g:first-child {
  display: flex
}

[data-panzoom-action=toggleFS] g:last-child {
  display: none
}

.in-fullscreen [data-panzoom-action=toggleFS] g:first-child {
  display: none
}

.in-fullscreen [data-panzoom-action=toggleFS] g:last-child {
  display: flex
}

[data-autoplay-action=toggle] svg g:first-child {
  display: flex
}

[data-autoplay-action=toggle] svg g:last-child {
  display: none
}

.has-autoplay [data-autoplay-action=toggle] svg g:first-child {
  display: none
}

.has-autoplay [data-autoplay-action=toggle] svg g:last-child {
  display: flex
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
  display: none
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
  display: flex
}

:root {
  --f-spinner-color-1: rgba(0, 0, 0, .1);
  --f-spinner-color-2: rgba(17, 24, 28, .8);
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px
}

.f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: calc(var(--f-spinner-width) * -.5) 0 0 calc(var(--f-spinner-height) * -.5);
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  border-radius: var(--f-spinner-border-radius);
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  animation: f-spinner .75s linear infinite, f-fadeIn .2s ease .2s both
}

@keyframes f-spinner {
  to {
    transform: rotate(360deg)
  }
}

.f-panzoom,
.f-zoomable {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column
}

.f-panzoom:before,
.f-panzoom:after,
.f-zoomable:before,
.f-zoomable:after {
  display: block;
  content: ""
}

.f-panzoom:not(.has-controls):before,
.f-zoomable:not(.has-controls):before {
  margin-bottom: auto
}

.f-panzoom:after,
.f-zoomable:after {
  margin-top: auto
}

.f-panzoom.in-fullscreen,
.f-zoomable.in-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: unset !important;
  z-index: 9999
}

.f-panzoom__wrapper {
  position: relative;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%
}

.f-panzoom__wrapper.will-zoom-out {
  cursor: zoom-out
}

.f-panzoom__wrapper.can-drag {
  cursor: move;
  cursor: grab
}

.f-panzoom__wrapper.will-zoom-in {
  cursor: zoom-in
}

.f-panzoom__wrapper.is-dragging {
  cursor: move;
  cursor: grabbing
}

.f-panzoom__wrapper.has-error {
  display: none
}

.f-panzoom__content {
  display: block;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%
}

.f-panzoom__content.is-lazyloading,
.f-panzoom__content.has-lazyerror {
  visibility: hidden
}

img.f-panzoom__content {
  width: auto;
  height: auto;
  vertical-align: top;
  object-fit: contain;
  transition: none;
  user-select: none
}

.f-panzoom__wrapper>.f-panzoom__content {
  visibility: hidden
}

.f-panzoom__viewport {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.f-panzoom__viewport>.f-panzoom__content {
  width: 100%;
  height: 100%;
  object-fit: fill
}

picture.f-panzoom__content img {
  vertical-align: top;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: none;
  user-select: none
}

.f-panzoom__protected {
  position: absolute;
  inset: 0;
  z-index: 1;
  user-select: none
}

html.with-panzoom-in-fullscreen {
  overflow: hidden
}

.f-fadeIn {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2
}

.f-fadeOut {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1
}

@keyframes f-fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes f-fadeOut {
  to {
    opacity: 0
  }
}

.f-crossfadeIn {
  animation: var(--f-transition-duration, .2s) ease both f-crossfadeIn;
  z-index: 2
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, .2s) * .2) ease calc(var(--f-transition-duration, .2s) * .8) both f-crossfadeOut;
  z-index: 1
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes f-crossfadeOut {
  to {
    opacity: 0
  }
}

.is-horizontal .f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextX
}

.is-horizontal .f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevX
}

.is-horizontal .f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextX
}

.is-horizontal .f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevX
}

@keyframes f-slideInPrevX {
  0% {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)))
  }

  to {
    transform: translateZ(0)
  }
}

@keyframes f-slideInNextX {
  0% {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)))
  }

  to {
    transform: translateZ(0)
  }
}

@keyframes f-slideOutNextX {
  to {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)))
  }
}

@keyframes f-slideOutPrevX {
  to {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)))
  }
}

.is-vertical .f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextY
}

.is-vertical .f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevY
}

.is-vertical .f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextY
}

.is-vertical .f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevY
}

@keyframes f-slideInPrevY {
  0% {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)))
  }

  to {
    transform: translateZ(0)
  }
}

@keyframes f-slideInNextY {
  0% {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)))
  }

  to {
    transform: translateZ(0)
  }
}

@keyframes f-slideOutNextY {
  to {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)))
  }
}

@keyframes f-slideOutPrevY {
  to {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)))
  }
}

.f-zoomInUp {
  animation: var(--f-transition-duration, .3s) ease both f-zoomInUp
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, .3s) ease both f-zoomOutDown
}

@keyframes f-zoomInUp {
  0% {
    transform: scale(var(--f-zoomInUp-scale, .975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
    opacity: var(--f-zoomInUp-opacity, 0)
  }

  to {
    transform: scale(1) translateZ(0);
    opacity: 1
  }
}

@keyframes f-zoomOutDown {
  to {
    transform: scale(var(--f-zoomOutDown-scale, .975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
    opacity: 0
  }
}

.f-throwOutUp {
  animation: var(--f-throwOutUp-duration, .2s) ease-out both f-throwOutUp
}

.f-throwOutDown {
  animation: var(--f-throwOutDown-duration, .2s) ease-out both f-throwOutDown
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px) * -1), 0);
    opacity: 0
  }
}

@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
    opacity: 0
  }
}

.has-iframe .f-html,
.has-pdf .f-html,
.has-gmap .f-html {
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible
}

.has-pdf .f-html,
.has-gmap .f-html {
  padding: 0
}

.f-html {
  position: relative;
  box-sizing: border-box;
  margin: var(--f-html-margin, 0);
  padding: var(--f-html-padding, 2rem);
  color: var(--f-html-color, currentColor);
  background: var(--f-html-bg)
}

.f-html.is-error {
  text-align: center
}

.f-iframe {
  display: block;
  margin: 0;
  border: 0;
  height: 100%;
  width: 100%
}

.f-caption {
  align-self: center;
  flex-shrink: 0;
  margin: var(--f-caption-margin);
  padding: var(--f-caption-padding, 16px 8px);
  max-width: 100%;
  max-height: calc(80vh - 100px);
  overflow: auto;
  overflow-wrap: anywhere;
  line-height: var(--f-caption-line-height);
  color: var(--f-caption-color);
  background: var(--f-caption-bg);
  font: var(--f-caption-font)
}

.has-html5video .f-html,
.has-youtube .f-html,
.has-vimeo .f-html {
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
  max-width: var(--f-video-width, 960px);
  max-height: var(--f-video-height, 540px);
  aspect-ratio: var(--f-video-aspect-ratio);
  background: var(--f-video-bg, rgba(0, 0, 0, .9))
}

.f-html5video {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent
}

.f-button.is-arrow {
  --f-button-width: var(--f-arrow-width, 46px);
  --f-button-height: var(--f-arrow-height, 46px);
  --f-button-svg-width: var(--f-arrow-svg-width, 24px);
  --f-button-svg-height: var(--f-arrow-svg-height, 24px);
  --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
  --f-button-border-radius: var(--f-arrow-border-radius, unset);
  --f-button-bg: var(--f-arrow-bg, transparent);
  --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
  --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
  --f-button-shadow: var(--f-arrow-shadow);
  --f-button-color: var(--f-arrow-color);
  --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
  --f-button-active-color: var(--f-arrow-active-color, var(--f-arrow-hover-color));
  overflow: visible
}

.f-button.is-arrow.is-prev,
.f-button.is-arrow.is-next {
  position: absolute;
  transform: translate(0);
  z-index: 20
}

.is-horizontal .f-button.is-arrow.is-prev,
.is-horizontal .f-button.is-arrow.is-next {
  inset: 50% auto auto;
  transform: translateY(-50%)
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: var(--f-arrow-pos, 0)
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: var(--f-arrow-pos, 0)
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
  right: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg)
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
  left: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg)
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev,
.is-vertical.is-rtl .f-button.is-arrow.is-prev {
  top: var(--f-arrow-pos, 0);
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%)
}

.is-vertical.is-ltr .f-button.is-arrow.is-next,
.is-vertical.is-rtl .f-button.is-arrow.is-next {
  top: auto;
  right: auto;
  bottom: var(--f-arrow-pos, 0);
  left: 50%;
  transform: translate(-50%)
}

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

.f-carousel__toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin: var(--f-toolbar-margin, 0);
  padding: var(--f-toolbar-padding, 8px);
  line-height: var(--f-toolbar-line-height);
  background: var(--f-toolbar-bg, none);
  box-shadow: var(--f-toolbar-shadow, none);
  backdrop-filter: var(--f-toolbar-backdrop-filter);
  position: relative;
  z-index: 20;
  color: var(--f-toolbar-color, currentColor);
  font-size: var(--f-toolbar-font-size, 17px);
  font-weight: var(--f-toolbar-font-weight, inherit);
  font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
  text-shadow: var(--f-toolbar-text-shadow);
  text-align: center;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  white-space: nowrap;
  pointer-events: none
}

.f-carousel__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.f-carousel__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: var(--f-toolbar-gap, 0);
  pointer-events: none
}

.f-carousel__toolbar__column.is-left {
  justify-self: flex-start;
  justify-content: flex-start
}

.f-carousel__toolbar__column.is-middle {
  justify-content: center
}

.f-carousel__toolbar__column.is-right {
  justify-self: flex-end;
  justify-content: flex-end;
  flex-flow: nowrap
}

.f-carousel__toolbar__column>* {
  pointer-events: all
}

.f-counter {
  position: relative;
  display: flex;
  flex-direction: row;
  cursor: default;
  user-select: none;
  margin: var(--f-counter-margin, 0);
  padding: var(--f-counter-padding, 4px);
  line-height: var(--f-counter-line-height);
  background: var(--f-counter-bg);
  border-radius: var(--f-counter-border-radius)
}

.f-counter span {
  padding: 0 var(--f-counter-gap, 4px)
}

:root {
  --f-thumbs-gap: 8px;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-z-index: 1;
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-clip-width: 46px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-fit: cover;
  --f-thumb-opacity: 1;
  --f-thumb-transition: opacity .3s ease, transform .15s ease;
  --f-thumb-border: none;
  --f-thumb-border-radius: 4px;
  --f-thumb-transfors: none;
  --f-thumb-shadow: none;
  --f-thumb-bg: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .05));
  --f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
  --f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff
}

.f-thumbs {
  flex-shrink: 0;
  margin: var(--f-thumbs-margin);
  padding: 0;
  background: var(--f-thumbs-bg);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: max-height .3s ease, max-width .3s ease;
  position: relative;
  overflow: hidden;
  z-index: var(--f-thumbs-z-index)
}

.f-thumbs.is-horizontal {
  max-height: calc(var(--f-carousel-slide-height) + var(--f-thumbs-padding-y) * 2 + var(--f-thumbs-gap) * 2)
}

.f-thumbs.is-vertical {
  max-width: calc(var(--f-carousel-slide-width) + var(--f-thumbs-padding-x) * 2 + var(--f-thumbs-gap) * 2)
}

.f-thumbs.is-ltr {
  direction: ltr
}

.f-thumbs.is-rtl {
  direction: rtl
}

.f-thumbs__viewport {
  margin: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
  overflow: visible;
  display: grid
}

.f-thumbs.is-vertical .f-thumbs__viewport {
  height: calc(100% - var(--f-thumbs-padding-y) * 2)
}

.f-thumbs__slide {
  position: relative;
  box-sizing: border-box;
  grid-area: 1/1;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  overflow: visible
}

.f-thumbs__slide:hover button {
  opacity: var(--f-thumb-hover-opacity, 1);
  transform: var(--f-thumb-hover-transform, none)
}

.f-thumbs__slide:hover button:after {
  border: var(--f-thumb-hover-border, none);
  box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow))
}

.f-thumbs__slide button {
  all: unset;
  margin: auto;
  padding: 0;
  position: relative;
  overflow: visible;
  width: 100%;
  height: 100%;
  outline: none;
  transition: var(--f-thumb-transition);
  border-radius: var(--f-thumb-border-radius);
  opacity: var(--f-thumb-opacity);
  transform: var(--f-thumb-transform);
  background: var(--f-thumb-bg)
}

.f-thumbs__slide button:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: none;
  border-radius: inherit;
  border: var(--f-thumb-border);
  box-shadow: var(--f-thumb-shadow)
}

.f-thumbs__slide button:focus-within {
  opacity: var(--f-thumb-focus-opacity, 1);
  transform: var(--f-thumb-focus-transform, none)
}

.f-thumbs__slide button:focus-within:after {
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow))
}

.f-thumbs__slide:active {
  opacity: var(--f-thumb-active-opacity, 1);
  transform: var(--f-thumb-active-transform, none)
}

.f-thumbs__slide:active:after {
  border: var(--f-thumb-active-border, none);
  box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow))
}

.f-thumbs__slide.is-selected {
  z-index: 2
}

.f-thumbs__slide.is-selected button {
  opacity: var(--f-thumb-selected-opacity, 1);
  transform: var(--f-thumb-selected-transform, none)
}

.f-thumbs__slide.is-selected button:after {
  border: var(--f-thumb-selected-border, none);
  box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow))
}

.f-thumbs__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--f-thumb-fit);
  border-radius: inherit;
  pointer-events: none
}

.f-thumbs__slide img.has-lazyerror {
  display: none
}

.f-thumbs.is-classic {
  --f-carousel-slide-width: var(--f-thumb-width);
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: var(--f-thumbs-gap)
}

.f-thumbs.is-modern {
  --f-carousel-slide-width: calc(var(--f-thumb-clip-width) + var(--f-thumbs-gap));
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: 0;
  --width-diff: calc((var(--f-thumb-width) - var(--f-thumb-clip-width)))
}

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--f-carousel-slide-width) * 2);
  margin-inline: calc(var(--f-carousel-slide-width) * -1)
}

.f-thumbs.is-modern .f-thumbs__slide {
  --clip-shift: calc((var(--width-diff) * .5) * var(--progress));
  --clip-path: inset(0 var(--clip-shift) round var(--f-thumb-border-radius, 0));
  padding: 0;
  overflow: visible;
  left: var(--shift, 0);
  will-change: left;
  transition: left var(--f-transition-duration) var(--f-transition-easing)
}

.f-thumbs.is-modern .f-thumbs__slide button {
  display: block;
  margin-inline: 50%;
  width: var(--f-thumb-width);
  clip-path: var(--clip-path);
  border: none;
  box-shadow: none;
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, .2s) var(--f-thumb-transition-easing, ease)
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
  display: none
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
  outline: none
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: var(--clip-shift);
  bottom: 0;
  right: var(--clip-shift);
  transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
  border-radius: inherit;
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, none)
}

.f-thumbs.is-modern {
  --f-transition-duration: .25s;
  --f-transition-easing: ease-out
}

.f-thumbs.is-modern.is-syncing {
  --f-transition-duration: 0s
}

:root {
  --f-progressbar-height: 3px;
  --f-progressbar-color: var(--f-carousel-theme-color, #575ad6);
  --f-progressbar-opacity: 1;
  --f-progressbar-z-index: 30
}

.f-progressbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--f-progressbar-z-index);
  height: var(--f-progressbar-height);
  transform: scaleX(0);
  transform-origin: 0;
  opacity: var(--f-progressbar-opacity);
  background: var(--f-progressbar-color);
  user-select: none;
  pointer-events: none;
  animation-name: f-progressbar;
  animation-play-state: running;
  animation-timing-function: linear
}

button>.f-progressbar {
  --f-progressbar-height: 100%;
  --f-progressbar-opacity: .2
}

@keyframes f-progressbar {
  0% {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

[data-fullscreen-action=toggle] svg g:first-child {
  display: flex
}

[data-fullscreen-action=toggle] svg g:last-child {
  display: none
}

:fullscreen [data-fullscreen-action=toggle] svg g:first-child {
  display: none
}

:fullscreen [data-fullscreen-action=toggle] svg g:last-child {
  display: flex
}

.in-fullscreen-mode>.f-carousel {
  flex: 1;
  min-width: 0 !important;
  min-height: 0 !important
}

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

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

.fancybox__dialog {
  width: 100%;
  height: 100vh;
  max-height: unset;
  max-width: unset;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  touch-action: none
}

.fancybox__dialog:focus {
  outline: none
}

.fancybox__dialog::backdrop {
  opacity: 0
}

@supports (height: 100dvh) {
  .fancybox__dialog {
    height: 100dvh
  }
}

div.fancybox__dialog {
  position: fixed;
  inset: 0;
  z-index: 1050
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-backdrop-bg: rgba(24, 24, 27, .95);
  --f-toolbar-margin: 0;
  --f-toolbar-padding: 8px;
  --f-toolbar-gap: 0;
  --f-toolbar-color: #ddd;
  --f-toolbar-font-size: 16px;
  --f-toolbar-font-weight: 500;
  --f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  --f-toolbar-line-height: var(--f-button-height);
  --f-toolbar-text-shadow: 1px 1px 1px rgba(0, 0, 0, .75);
  --f-toolbar-shadow: none;
  --f-toolbar-bg: none;
  --f-counter-margin: 0;
  --f-counter-padding: 0px 10px;
  --f-counter-gap: 4px;
  --f-counter-line-height: var(--f-button-height);
  --f-carousel-gap: 17px;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: 100%;
  --f-carousel-slide-padding: 0;
  --f-carousel-slide-bg: unset;
  --f-html-color: #222;
  --f-html-bg: #fff;
  --f-error-color: #fff;
  --f-error-bg: #333;
  --f-caption-margin: 0;
  --f-caption-padding: 16px 8px;
  --f-caption-color: var(--fancybox-color, #dbdbdb);
  --f-caption-bg: transparent;
  --f-caption-font: inherit;
  --f-caption-line-height: 1.375;
  --f-spinner-color-1: rgba(255, 255, 255, .2);
  --f-spinner-color-2: rgba(255, 255, 255, .8);
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
  --f-progressbar-color: rgba(255, 255, 255);
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: #ddd;
  --f-button-hover-color: #fff;
  --f-button-outline-width: 1px;
  --f-button-outline-color: rgba(255, 255, 255, .75);
  --f-button-outline-offset: 0px;
  --f-button-bg: rgba(54, 54, 54, .75);
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-shadow: none;
  --f-button-transition: all .2s ease;
  --f-button-transform: none;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.75;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .01)), drop-shadow(1px 2px 1px rgba(24, 24, 27, .05));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .5;
  --f-arrow-pos: 32px;
  --f-arrow-width: 50px;
  --f-arrow-height: 50px;
  --f-arrow-svg-width: 24px;
  --f-arrow-svg-height: 24px;
  --f-arrow-svg-stroke-width: 2;
  --f-arrow-border-radius: 50%;
  --f-arrow-bg: rgba(54, 54, 54, .65);
  --f-arrow-color: #ddd;
  --f-arrow-hover-color: #fff;
  --f-close-button-width: 34px;
  --f-close-button-height: 34px;
  --f-close-border-radius: 4px;
  --f-close-button-color: #fff;
  --f-close-button-hover-color: #fff;
  --f-close-button-bg: transparent;
  --f-close-button-hover-bg: transparent;
  --f-close-button-active-bg: transparent;
  --f-close-button-svg-width: 22px;
  --f-close-button-svg-height: 22px;
  --f-thumbs-margin: 0px;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-bg: none;
  --f-thumb-transition: all .2s ease;
  --f-thumb-width: 94px;
  --f-thumb-height: 76px;
  --f-thumb-opacity: 1;
  --f-thumb-border: none;
  --f-thumb-shadow: none;
  --f-thumb-transform: none;
  --f-thumb-focus-opacity: 1;
  --f-thumb-focus-border: none;
  --f-thumb-focus-shadow: inset 0 0 0 2px rgba(255, 255, 255, .65);
  --f-thumb-focus-transform: none;
  --f-thumb-hover-opacity: 1;
  --f-thumb-hover-border: none;
  --f-thumb-hover-transform: none;
  --f-thumb-active-opacity: var(--f-thumb-hover-opacity);
  --f-thumb-active-border: var(--f-thumb-hover-border);
  --f-thumb-active-transform: var(--f-thumb-hover-transform);
  --f-thumb-selected-opacity: 1;
  --f-thumb-selected-border: none;
  --f-thumb-selected-shadow: inset 0 0 0 2px #fff;
  --f-thumb-selected-transform: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  outline: none;
  display: flex;
  flex-direction: column
}

.fancybox__container[theme=light] {
  --fancybox-color: #222;
  --fancybox-backdrop-bg: rgba(255, 255, 255, .97);
  --f-toolbar-color: var(--fancybox-color, #222);
  --f-toolbar-text-shadow: none;
  --f-toolbar-font-weight: 400;
  --f-html-color: var(--fancybox-color, #222);
  --f-html-bg: #fff;
  --f-error-color: #555;
  --f-error-bg: #fff;
  --f-video-bg: #fff;
  --f-caption-color: #333;
  --f-spinner-color-1: rgba(0, 0, 0, .2);
  --f-spinner-color-2: rgba(0, 0, 0, .8);
  --f-spinner-border-width: 3.5px;
  --f-progressbar-color: rgba(111, 111, 116);
  --f-button-color: #333;
  --f-button-hover-color: #000;
  --f-button-outline-color: rgba(0, 0, 0, .85);
  --f-button-bg: rgba(255, 255, 255, .85);
  --f-button-svg-stroke-width: 1.3;
  --f-button-svg-filter: none;
  --f-arrow-bg: rgba(255, 255, 255, .85);
  --f-arrow-color: #333;
  --f-arrow-hover-color: #000;
  --f-arrow-svg-stroke-width: 1.3;
  --f-close-button-color: #555;
  --f-close-button-hover-color: #000;
  --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
  --f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;
  --f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000
}

.fancybox__container::backdrop {
  background-color: transparent
}

.fancybox__container.has-vertical-thumbs {
  flex-direction: row-reverse
}

.fancybox__container.has-vertical-thumbs:not(.is-closing) .fancybox__viewport {
  overflow-x: clip;
  overflow-y: visible
}

.fancybox__container>*:not(.fancybox__carousel),
.fancybox__container .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container .fancybox__carousel>.fancybox__viewport>.fancybox__slide:not(.is-selected),
.fancybox__container .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>*:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  opacity: var(--f-drag-opacity, 1)
}

.fancybox__container:not(.is-ready, .is-hiding) {
  visibility: hidden
}

.fancybox__container.is-revealing>*:not(.fancybox__carousel),
.fancybox__container.is-revealing .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-revealing .fancybox__carousel>.fancybox__viewport>.fancybox__slide:not(.is-selected),
.fancybox__container.is-revealing .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>*:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  animation: var(--f-interface-enter-duration, .35s) ease none f-fadeIn
}

.fancybox__container.is-hiding>*:not(.fancybox__carousel),
.fancybox__container.is-hiding .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-hiding .fancybox__carousel>.fancybox__viewport>.fancybox__slide:not(.is-selected),
.fancybox__container.is-hiding .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>*:not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-exit-duration, .35s) ease forwards f-fadeOut
}

.fancybox__container.is-idle .f-carousel__toolbar {
  pointer-events: none;
  opacity: 0
}

.fancybox__container.is-idle .f-button.is-arrow {
  opacity: 0
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow {
  animation: .15s ease-out both f-fadeOut
}

.fancybox__backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--fancybox-backdrop-bg)
}

.fancybox__carousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  position: relative;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip
}

.fancybox__carousel.is-vertical {
  --f-carousel-slide-height: 100%
}

.fancybox__carousel.is-ltr {
  direction: ltr
}

.fancybox__carousel.is-rtl {
  direction: rtl
}

.fancybox__carousel>.f-button.is-arrow:before {
  position: absolute;
  content: "";
  inset: -30px;
  z-index: 1
}

.fancybox__viewport {
  display: grid;
  flex: 1;
  min-height: 0;
  min-width: 0;
  position: relative;
  overflow: visible;
  transform: translate3d(0, var(--f-drag-offset, 0), 0)
}

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

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

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

.fancybox__slide {
  box-sizing: border-box;
  position: relative;
  grid-area: 1/1;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  margin: 0;
  padding: var(--f-carousel-slide-padding);
  background: var(--f-carousel-slide-bg);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform
}

.fancybox__slide:before,
.fancybox__slide:after {
  display: block;
  content: ""
}

.fancybox__slide:before {
  margin-bottom: auto
}

.fancybox__slide:after {
  margin-top: auto
}

.fancybox__slide.is-selected {
  z-index: 1
}

.fancybox__slide.f-zoomable {
  overflow: visible
}

.fancybox__slide.has-error {
  --f-html-color: var(--f-error-color, --f-html-color);
  --f-html-bg: var(--f-error-bg, --f-html-bg)
}

.fancybox__slide.has-html {
  overflow: auto;
  padding: 8px
}

.fancybox__slide.has-close-btn {
  padding-top: 34px
}

.fancybox__slide.has-controls:before {
  margin: 0
}

.fancybox__slide .f-spinner {
  cursor: pointer
}

.fancybox__container.is-closing .f-caption,
.fancybox__slide.is-loading .f-caption {
  visibility: hidden
}

.fancybox__container.is-closing .fancybox__carousel {
  overflow: visible
}

.f-button.is-close-button {
  --f-button-width: var(--f-close-button-width);
  --f-button-height: var(--f-close-button-height);
  --f-button-border-radius: var(--f-close-border-radius);
  --f-button-color: var(--f-close-button-color);
  --f-button-hover-color: var(--f-close-button-hover-color);
  --f-button-bg: var(--f-close-button-bg);
  --f-button-hover-bg: var(--f-close-button-hover-bg);
  --f-button-active-bg: var(--f-close-button-active-bg);
  --f-button-svg-width: var(--f-close-button-svg-width);
  --f-button-svg-height: var(--f-close-button-svg-height);
  position: absolute;
  top: calc(var(--f-button-height) * -1);
  right: 0;
  z-index: 40
}

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

.nice-select:hover {
  border-color: hsl(0, 0%, 85.9803921569%)
}

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

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

.nice-select.open {
  border-color: #999
}

.nice-select.open:after {
  transform: rotate(-135deg)
}

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

.nice-select.disabled {
  border-color: rgb(237.1, 237.1, 237.1);
  color: #999;
  pointer-events: none
}

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

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

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

.nice-select.right {
  float: right
}

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

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

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

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

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

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

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

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

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

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

.nice-select .list {
  border-radius: 5px;
  box-sizing: border-box;
  padding: 0
}

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

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

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

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

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

.nice-select .extra {
  float: right
}

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

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

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

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

.hidden-select {
  opacity: 0;
  width: 0;
  padding: 0;
  height: 0;
  font-size: 0;
  min-height: auto
}

.select-selection-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.select-selection-list .select-selection {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 2px 5px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap
}

.select-selection-list button.remove-select-selection {
  height: 15px;
  width: 15px;
  line-height: 15px;
  padding: 0px;
  background-color: #bd2919;
  border-radius: 20%
}

/*!
  Theme Name: markup
  Author: Anonymous
  Author URI:
  Version: 1
  Description: markup theme
  License: GNU General Public License v2 or later
  License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  Text Domain: markup
  Tags: one-column, two-columns
  Theme URI:
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

main {
  display: block
}

h1 {
  font-size: 2em;
  margin: .67em 0
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

pre {
  font-family: monospace, monospace;
  font-size: 1em
}

a {
  background-color: transparent
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}

b,
strong {
  font-weight: bolder
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

small {
  font-size: 80%
}

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

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

img {
  border-style: none
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

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

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

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

fieldset {
  padding: .35em .75em .625em
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

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

details {
  display: block
}

summary {
  display: list-item
}

[hidden],
template {
  display: none
}

@font-face {
  font-display: block;
  font-family: icomoon;
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/icomoon.woff?yuzzw2) format("woff")
}

[class*=" icon-"],
[class^=icon-] {
  font-family: icomoon !important;
  speak: none;
  font-feature-settings: normal;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.icon-chevron-down:before {
  content: "\e908"
}

.icon-cross:before {
  content: "\e90d"
}

.icon-chevron-up:before {
  content: "\e911"
}

.icon-chevron-left:before {
  content: "\e912"
}

.icon-chevron-right:before {
  content: "\e913"
}

@font-face {
  font-family: swiper-icons;
  font-style: normal;
  font-weight: 400;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
}

:root {
  --swiper-theme-color: #007aff
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column
}

.swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: ease;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0)
}

.swiper-horizontal {
  touch-action: pan-y
}

.swiper-vertical {
  touch-action: pan-x
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%
}

.swiper-slide-invisible-blank {
  visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0)
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d
}

.swiper-3d {
  perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
  scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
  scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
  scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-left: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  margin-top: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-lazy-preloader {
  border: 4px solid #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid transparent;
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s linear infinite
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(1turn)
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  height: var(--swiper-virtual-size);
  width: 1px
}

:root {
  --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: #007aff;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: 44px;
  height: var(--swiper-navigation-size);
  justify-content: center;
  margin-top: -22px;
  margin-top: calc(0px - var(--swiper-navigation-size)/2);
  position: absolute;
  top: 50%;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 27px;
  width: calc(var(--swiper-navigation-size)/44*27);
  z-index: 10
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important
}

.swiper-button-next svg,
.swiper-button-prev svg {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform-origin: center;
  width: 100%
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto
}

.swiper-button-lock {
  display: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 44px;
  font-size: var(--swiper-navigation-size);
  font-variant: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none !important
}

/*
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev"
}
*/
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  left: auto;
  right: 10px;
  right: var(--swiper-navigation-sides-offset, 10px)
}
/*
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next"
}
*/
.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity .3s;
  z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 8px;
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: auto;
  top: var(--swiper-pagination-top, auto);
  width: 100%
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33)
}

.swiper-pagination-bullet {
  background: #000;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: 50%;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: 8px;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: .2;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
  width: 8px;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px))
}

button.swiper-pagination-bullet {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}

.swiper-pagination-bullet:only-child {
  display: none !important
}

.swiper-pagination-bullet-active {
  background: #007aff;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: 1;
  opacity: var(--swiper-pagination-bullet-opacity, 1)
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  left: auto;
  left: var(--swiper-pagination-left, auto);
  right: 8px;
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: transform .2s, top .2s
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, left .2s
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, right .2s
}

.swiper-pagination-fraction {
  color: inherit;
  color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
  position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
  width: 100%
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: 4px;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
  width: 100%
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  height: 100%;
  left: 0;
  top: 0;
  width: 4px;
  width: var(--swiper-pagination-progressbar-size, 4px)
}

.swiper-pagination-lock {
  display: none
}

.swiper-scrollbar {
  background: rgba(0, 0, 0, .1);
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, .1));
  border-radius: 10px;
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  bottom: 4px;
  bottom: var(--swiper-scrollbar-bottom, 4px);
  height: 4px;
  height: var(--swiper-scrollbar-size, 4px);
  left: 1%;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  position: absolute;
  top: auto;
  top: var(--swiper-scrollbar-top, auto);
  width: 98%;
  width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);
  z-index: 50
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
  height: 98%;
  height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);
  left: auto;
  left: var(--swiper-scrollbar-left, auto);
  position: absolute;
  right: 4px;
  right: var(--swiper-scrollbar-right, 4px);
  top: 1%;
  top: var(--swiper-scrollbar-sides-offset, 1%);
  width: 4px;
  width: var(--swiper-scrollbar-size, 4px);
  z-index: 50
}

.swiper-scrollbar-drag {
  background: rgba(0, 0, 0, .5);
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, .5));
  border-radius: 10px;
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%
}

.swiper-scrollbar-cursor-drag {
  cursor: move
}

.swiper-scrollbar-lock {
  display: none
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out
}

.swiper-grid>.swiper-wrapper {
  flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper.swiper-cube {
  overflow: visible
}

.swiper-cube .swiper-slide {
  backface-visibility: hidden;
  height: 100%;
  pointer-events: none;
  transform-origin: 0 0;
  visibility: hidden;
  width: 100%;
  z-index: 1
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible
}

.swiper-cube .swiper-cube-shadow {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: .6;
  position: absolute;
  width: 100%;
  z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
  background: #000;
  bottom: 0;
  content: "";
  filter: blur(50px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

.swiper-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0
}

.swiper.swiper-flip {
  overflow: visible
}

.swiper-flip .swiper-slide {
  backface-visibility: hidden;
  pointer-events: none;
  z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height
}

.swiper.swiper-cards {
  overflow: visible
}

.swiper-cards .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transform-origin: center bottom
}

html {
  box-sizing: border-box
}

*,
:after,
:before {
  box-sizing: inherit
}

.box ol,
.breadcrumbs ol,
.contact-form .radio-list,
.content-blocks,
.custom-select .nice-select .nice-select-dropdown .list,
.faqs-accordion,
.filter-by-letter .filter-letter,
.footer-nav ul,
.links,
.loaction-contact-detail,
.location-card-list,
.logo-list,
.modal-content .text-info ul,
.nav>ul,
.nav>ul>li .oc-slide ul,
.pagination-list,
.profile-info ul,
.profile-single .area-of-interest ul,
.profile-single .profile-contacts,
.result-single .cont-list,
.selected-terms,
.sidebar-accordion,
.sidebar-accordion .slide ul,
.social,
.sort-form .radio-list,
.table-holder .list-dot,
.table-of-content ol,
.terms-content .section-content ol,
.terms-content .section-content ol>li>ol {
  list-style: none;
  margin: 0;
  padding: 0
}

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto
}

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on August 17, 2025 */
@font-face {
  font-family: Circular Std;
  font-style: normal;
  font-weight: 700;
  src: url(/fonts/circularstd-bold-webfont.woff2) format("woff2"), url(/fonts/circularstd-bold-webfont.woff) format("woff")
}

@font-face {
  font-family: Circular Std;
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/circularstd-book-webfont.woff2) format("woff2"), url(/fonts/circularstd-book-webfont.woff) format("woff")
}

@font-face {
  font-family: Circular Std;
  font-style: normal;
  font-weight: 500;
  src: url(/fonts/circularstd-medium-webfont.woff2) format("woff2"), url(/fonts/circularstd-medium-webfont.woff) format("woff")
}

@font-face {
  font-family: Galaxie Copernicus;
  font-style: italic;
  font-weight: 700;
  src: url(/fonts/galaxie_copernicus_bold_italic-webfont.woff2) format("woff2"), url(/fonts/galaxie_copernicus_bold_italic-webfont.woff) format("woff")
}

@font-face {
  font-family: Galaxie Copernicus;
  font-style: italic;
  font-weight: 400;
  src: url(/fonts/galaxie_copernicus_book_italic-webfont.woff2) format("woff2"), url(/fonts/galaxie_copernicus_book_italic-webfont.woff) format("woff")
}

blockquote {
  margin-bottom: 1rem;
  padding-left: 1rem
}

blockquote p {
  margin-bottom: .5rem
}

.wp-block-pullquote,
.wp-block-quote {
  box-sizing: border-box;
  word-wrap: break-word;
  border-style: solid;
  border-width: 0 0 0 2px;
  margin-bottom: 1rem;
  padding-left: 1rem
}

.wp-block-pullquote p,
.wp-block-quote p {
  margin-bottom: .5rem
}

.wp-block-pullquote blockquote {
  margin: 0;
  padding: 0
}

.comment-form label {
  display: block;
  padding-bottom: 4px
}

.comment-form textarea {
  height: 120px;
  margin: 0;
  min-height: 120px;
  overflow: auto
}

.comment-form input[type=text],
.comment-form textarea {
  margin: 0 4px 0 0;
  max-width: 300px;
  width: 100%
}

.comment-form input[type=submit] {
  display: block;
  float: none
}

.post-password-form label {
  display: block;
  margin-bottom: 4px
}

.post-password-form input[type=password] {
  margin: 0 4px 0 0;
  max-width: 300px;
  width: 100%
}

.search-form {
  margin-bottom: 15px
}

.search-form input {
  display: inline-flex;
  height: 32px
}

.search-form input[type=search] {
  margin: 0 4px 0 0;
  width: 150px
}

.search-form input[type=submit] {
  flex-shrink: 0
}

.post-password-form input {
  display: inline-flex;
  height: 32px
}

.post-password-form input[type=password] {
  width: 150px
}

.comment-form fieldset,
.post-password-form fieldset,
.search-form fieldset {
  border: 0;
  padding: 0
}

.comment-form input[type=submit],
.post-password-form input[type=submit],
.search-form input[type=submit] {
  background: #000;
  border: 0;
  color: #fff;
  height: 32px;
  padding: 0 8px
}

.comment-form input[type=submit]:hover,
.post-password-form input[type=submit]:hover,
.search-form input[type=submit]:hover {
  opacity: .8
}

.wp-block-post-comments-form .comment-form-cookies-consent {
  display: flex;
  gap: .5em
}

.wp-block-post-comments-form .comment-form-cookies-consent label {
  padding: 0
}

.wp-block-comment-template {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0
}

.wp-block-comment-template .wp-block-comment-edit-link p {
  margin: 0
}

.wp-block-comment-template .wp-block-columns {
  margin-bottom: 2rem
}

.wp-block-comment-template .wp-block-comment-content p {
  margin: 1rem 0
}

.wp-block-comment-template ol {
  list-style: none;
  margin-bottom: 0;
  max-width: 100%;
  padding-left: 2rem
}

.wpcf7-form input[type=email].wpcf7-not-valid,
.wpcf7-form input[type=tel].wpcf7-not-valid,
.wpcf7-form input[type=text].wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
  border-color: red
}

.wpcf7-form input[type=checkbox] {
  opacity: 0;
  position: absolute
}

.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label {
  cursor: pointer;
  display: block;
  padding: 0 0 0 30px;
  position: relative
}

.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:before {
  background: #fff;
  border: 1px solid #000;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px
}

.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:after {
  border-color: #000;
  border-style: solid;
  border-width: 0 2px 2px 0;
  content: "";
  height: 14px;
  left: 6px;
  opacity: 0;
  position: absolute;
  top: 1px;
  transform: rotate(45deg) skewX(10deg);
  width: 8px
}

.wpcf7-form input[type=checkbox]:checked+.wpcf7-list-item-label:after {
  opacity: 1
}

.wpcf7-form input[type=checkbox]:disabled+.wpcf7-list-item-label {
  color: #ccc;
  cursor: auto
}

.wpcf7-form input[type=checkbox]:disabled+.wpcf7-list-item-label:before {
  background: #ccc;
  box-shadow: none
}

.wpcf7-form input[type=file]::file-selector-button {
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
  padding: 1em 1.5em;
  transition: 1s
}

.wpcf7-form input[type=file]::file-selector-button:hover {
  opacity: .5
}

.form-flex {
  flex-wrap: wrap;
  margin-bottom: 2rem
}

.form-flex,
.is-layout-flex {
  display: flex;
  gap: 1.5rem
}

.form-area {
  width: 100%
}

.form-row {
  margin-bottom: 2rem
}

.label-name {
  display: block;
  margin-bottom: 1rem
}

.select-area .wpcf7-form-control-wrap {
  display: block;
  position: relative
}

.select-area .wpcf7-form-control-wrap:after {
  background-color: #000;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  height: .8em;
  margin-top: -.4em;
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 1em;
  z-index: 1
}

.wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid;
  color: #000;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  padding: .625rem 2.4rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  width: 100%;
  z-index: 1
}

.wpcf7-submit {
  background: #000;
  border: 1px solid #000;
  color: #fff;
  margin-bottom: 2rem;
  padding: 10px;
  width: 150px
}

.widget_calendar #next {
  text-align: right
}

.gallery-item dt {
  float: none;
  padding: 0
}

.navigation,
.navigation-comments {
  margin-bottom: 1rem;
  position: relative;
  vertical-align: middle
}

.navigation .screen-reader-text,
.navigation-comments .screen-reader-text {
  left: -99999px;
  position: absolute
}

.navigation .page-numbers,
.navigation-comments .page-numbers {
  display: inline-block;
  padding: 0 6px;
  vertical-align: middle
}

.navigation .next,
.navigation .prev,
.navigation-comments .next,
.navigation-comments .prev {
  background: #000;
  color: #fff;
  display: inline-block;
  max-width: 48%;
  padding: 10px;
  -webkit-text-decoration: none;
  text-decoration: none;
  vertical-align: middle
}

.navigation .next:hover,
.navigation .prev:hover,
.navigation-comments .next:hover,
.navigation-comments .prev:hover {
  opacity: .8
}

.navigation-single {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem
}

.navigation-single .next,
.navigation-single .prev {
  align-items: center;
  background: #000;
  color: #fff;
  display: inline-flex;
  max-width: 48%;
  -webkit-text-decoration: none;
  text-decoration: none
}

.navigation-single .next:hover,
.navigation-single .prev:hover {
  opacity: .8
}

.navigation-single .next a,
.navigation-single .prev a {
  color: inherit;
  display: block;
  padding: 10px;
  -webkit-text-decoration: none;
  text-decoration: none
}

.navigation-single .next a {
  margin-left: auto
}

.wp-caption {
  border: 1px solid #ccc;
  clear: both;
  margin-bottom: 1rem;
  max-width: 100%;
  padding: 10px
}

.wp-caption img {
  margin: 0;
  max-width: 100%;
  vertical-align: top
}

.wp-caption p {
  margin: 10px 0 0
}

div.aligncenter {
  margin: 0 auto 1rem
}

img.aligncenter {
  display: block;
  margin: 0 auto
}

.alignleft {
  float: left;
  margin: 0 1rem 4px 0
}

.alignright {
  float: right;
  margin: 0 0 4px 1rem
}

.mejs-container {
  margin-bottom: 1rem
}

.alignnone,
.bypostauthor,
.gallery,
.gallery-caption,
.sticky,
.wp-caption-text {
  height: auto
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%
}

.wp-block-table table td,
.wp-block-table table th {
  border: 1px solid;
  padding: .5em
}

.wp-block-table table thead {
  border-bottom: 3px solid
}

.wp-block-table table tfoot {
  border-top: 3px solid
}

#wp-calendar tbody td {
  text-align: center
}

#wp-calendar td,
#wp-calendar th {
  border: 1px solid #ccc
}

.share-this .st-btn {
  background: #999;
  border-radius: 50%;
  font-size: 2em;
  height: 3em;
  line-height: 3em;
  text-align: center;
  width: 3em
}

.share-this .st-btn img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  width: 2em
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #180228;
  font-family: Circular Std, Helvetica Neue, Arial, Noto Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6
}

a {
  color: #0366d6;
  transition: color .35s cubic-bezier(.3, .86, .36, .95)
}

a,
a:hover {
  -webkit-text-decoration: none;
  text-decoration: none
}

a:hover {
  color: #035abd
}

dl,
ol,
p,
ul {
  margin: 0 0 1.5em
}

.content-area .card .number,
.h1,
h1 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 20px
}

.h2,
h2 {
  font-size: 32px
}

.h2,
.h3,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 0 0 20px
}

.h3,
h3 {
  font-size: 28px
}

.content-area .card .meta,
.h3,
.h4,
.terms-content .section h3:before,
.terms-content .section h4:before,
h3,
h4 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0 0 20px
}

input[type=email],
input[type=tel],
input[type=text],
textarea {
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid;
  border-radius: 0;
  min-width: 0;
  padding: 1.2rem 2.4rem;
  transition: border-color .35s cubic-bezier(.3, .86, .36, .95);
  width: 100%
}

input[type=email]:focus,
input[type=email]:hover,
input[type=tel]:focus,
input[type=tel]:hover,
input[type=text]:focus,
input[type=text]:hover,
textarea:focus,
textarea:hover {
  box-shadow: none;
  outline: none
}

.header {
  position: relative;
  z-index: 999
}

.header .container {
  max-width: 1440px;
  padding: 14px 16px;
  position: relative
}

.header .logo {
  width: 170px
}

.header .logo a {
  display: block
}

.header .logo img {
  max-width: 100%;
  width: auto
}

.nav-drop {
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 100%;
  transition: opacity .35s cubic-bezier(.3, .86, .36, .95), visibility .35s cubic-bezier(.3, .86, .36, .95);
  visibility: hidden
}

.nav-active .nav-drop {
  opacity: 1;
  visibility: visible
}

.nav-opener {
  font-size: 0;
  height: 40px;
  line-height: 0;
  right: 12px;
  width: 40px
}

.nav-opener,
.nav-opener:after,
.nav-opener:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%)
}

.nav-opener:after,
.nav-opener:before {
  background: #180228;
  content: "";
  height: 2px;
  left: 10px;
  margin-top: -5px;
  right: 10px;
  transition: transform .35s cubic-bezier(.3, .86, .36, .95)
}

.nav-active .nav-opener:after,
.nav-active .nav-opener:before {
  margin-top: 0;
  transform: translateY(-50%) rotate(45deg)
}

.nav-opener:after {
  margin-top: 5px
}

.nav-active .nav-opener:after {
  margin-top: 0;
  transform: translateY(-50%) rotate(-45deg)
}

.nav-drop .holder {
  background: #fff;
  border-top: 1px solid rgba(24, 2, 40, .1);
  display: flex;
  flex-direction: column-reverse;
  padding: 8px 0
}

.nav-drop .top {
  padding: 16px
}

.nav-drop .right {
  align-items: center;
  display: flex;
  flex-direction: row
}

.nav-drop .right .search-holder {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  padding-right: 8px
}

.nav-drop .right .print {
  flex-shrink: 0;
  padding: 8px 20px;
  cursor: pointer;
}

.nav-drop .btn-holder {
  padding: 12px 16px
}

.nav-drop .btn-holder .btn {
  display: flex
}

.nav-drop .search-opener {
  display: none
}

.nav-drop .drop {
  width: 100%
}

.nav-drop .search-form {
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%
}

.nav-drop .search-form:before {
  background: url(/images/icon-search.svg);
  content: "";
  height: 20px;
  left: 16px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px
}

.nav-drop .search-form input[type=search] {
  background: transparent;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 62px;
  color: #180228;
  font-size: 16px;
  font-weight: 400;
  height: auto;
  line-height: 1.6;
  margin: 0;
  padding: 9px 16px 9px 44px;
  width: 100%
}

.nav-drop .bottom {
  position: relative
}

.nav {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6
}

.nav>ul>li {
  margin-bottom: 6px
}

.nav>ul>li.active .nav-link,
.nav>ul>li.active>a {
  background: rgba(122, 42, 181, .1);
  color: #7a2ab5
}

.nav>ul>li>a {
  color: #1d0331;
  display: block;
  padding: 12px 16px;
  position: relative
}

.nav>ul>li.acc-active>.nav-item-wrapper,
.nav>ul>li>a:hover {
  background: rgba(122, 42, 181, .1);
  color: #7a2ab5
}

.nav>ul>li.acc-active>.nav-item-wrapper>a.nav-link{
  color: #7a2ab5
}

.nav>ul>li .nav-item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.nav>ul>li a.nav-link {
  color: #1d0331;
  display: block;
  padding: 12px 16px;
  flex-shrink: 0;
  width: auto;
}

.nav>ul>li a.nav-link:not(.has-submenu) {
  flex: 1;
  width: 100%;
}

/*
.nav>ul>li a.nav-link.has-link {
  text-decoration: underline;
}*/

.nav>ul>li.acc-active>.nav-item-wrapper {
  background: rgba(122, 42, 181, .1);
}

.nav>ul>li:hover a.nav-link,
.nav>ul>li.acc-active a.nav-link {
  color: #7a2ab5;
}

.nav>ul>li button.opener {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav>ul>li button.opener:before {
  background-image: url(/images/icon-arrow-right.svg);
  content: "";
  height: 12px;
  width: 8px;
  transition: transform 0.3s ease;
}

.nav>ul>li.active button.opener:before {
  transform: rotate(90deg);
}

.nav>ul>li.active .nav-item-wrapper:after {
  background: #e6dfef;
  bottom: -4px;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
}

/* Legacy support for old structure with a.opener */
.nav>ul>li>a.opener:before {
  background-image: url(/images/icon-arrow-right.svg);
  content: "";
  height: 12px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px
}

.nav>ul>li>.nav-item-wrapper>a.nav-link:after,
.nav>ul>li>a.opener:after {
  background: #e6dfef;
  bottom: -4px;
  content: "";
  height: 8px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 8px
}

.nav>ul>li .slide {
  background: #fff;
  border: 1px solid #7a2ab5;
  border-radius: 16px;
  box-shadow: 0 12px 16px -4px rgba(16, 24, 40, .8), 0 4px 6px -2px rgba(24, 2, 40, .03);
  padding: 10px
}

.nav>ul>li .oc-item-wrapper {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav>ul>li .oc-link {
  color: #7a2ab5;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  padding: 10px;
  text-transform: uppercase;
  flex-shrink: 0;
  width: auto;
}

.nav>ul>li .oc-link:not(.has-submenu) {
  flex: 1;
  width: 100%;
}

.nav>ul>li .oc-link.has-link {
  text-decoration: underline;
}

.nav>ul>li .oc-item-wrapper:hover {
  background: rgba(122, 42, 181, .1);
  border-radius: 8px;
}

.nav>ul>li button.oc-opener {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav>ul>li button.oc-opener:before {
  background-image: url(/images/icon-arrow-right.svg);
  content: "";
  height: 12px;
  width: 8px;
  transition: transform 0.3s ease;
}

.nav>ul>li .open-close.active button.oc-opener:before {
  transform: rotate(90deg);
}

.nav>ul>li .oc-opener {
  border-radius: 8px;
  color: #7a2ab5;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  padding: 10px;
  position: relative;
  text-transform: uppercase
}

.nav>ul>li a.oc-opener:before {
  background-image: url(/images/icon-arrow-right.svg);
  content: "";
  height: 12px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px
}

/* Utility Classes */
.desktop-only {
  display: none !important;
}

.mobile-only {
  display: block;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: block !important;
  }
  
  .mobile-only {
    display: none !important;
  }
}

.nav>ul>li .oc-slide a {
  border-radius: 8px;
  color: #180228;
  display: block;
  padding: 6px 12px 6px 28px;
  position: relative
}

.nav>ul>li .oc-slide a:hover {
  background: rgba(122, 42, 181, .1);
  color: #7a2ab5
}

.nav>ul>li .oc-slide a:hover:before {
  background: #7a2ab5
}

.nav>ul>li .oc-slide a:before {
  background: rgba(24, 2, 40, .2);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px
}

html {
  scroll-behavior: smooth
}

body {
  background-color: #f2f3f5;
  color: #858997;
  min-width: 360px
}

.wrapper {
  min-height: 100vh;
  overflow: clip;
  position: relative;
  width: 100%
}

.container {
  margin: 0 auto;
  max-width: 1316px;
  padding: 0 12px;
  width: 100%
}

.bg-white {
  background: #fff
}

.hidden {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden
}

.footer {
  background: #180228;
  padding-top: 64px
}

.footer .footer-logo {
  margin-bottom: 32px
}

.footer-top {
  color: hsla(0, 0%, 100%, .6);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.4
}

.footer-top .left {
  margin-bottom: 40px
}

.footer-top .btn {
  font-size: 16px;
  font-weight: 500
}

.footer-top .right {
  display: flex;
  flex-wrap: wrap
}

.footer-top .btn-holder {
  margin-bottom: 32px
}

.footer-nav {
  padding-bottom: 36px;
  padding-right: 10px;
  width: 50%
}

.footer-nav .title {
  color: hsla(0, 0%, 100%, .8);
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 24px;
  text-transform: uppercase
}

.footer-nav ul {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6
}

.footer-nav ul li {
  margin-bottom: 12px
}

.footer-nav ul a {
  color: #fff;
  -webkit-text-decoration: none;
  text-decoration: none
}

.footer-nav ul a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid hsla(0, 0%, 100%, .1);
  color: hsla(0, 0%, 100%, .5);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  justify-content: space-between;
  line-height: 1.4;
  margin-top: -32px;
  padding: 24px 0;
  text-align: center
}

.footer-bottom .left {
  width: 100%
}

.footer-bottom p {
  margin-bottom: 0
}

.footer-bottom a {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none
}

.footer-bottom a:hover {
  color: #fff;
  -webkit-text-decoration: underline;
  text-decoration: underline
}

.footer-bottom .social {
  display: none
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.social a {
  align-items: center;
  border: 2px solid hsla(0, 0%, 100%, .2);
  border-radius: 50%;
  display: flex;
  font-size: 0;
  height: 48px;
  justify-content: center;
  line-height: 0;
  width: 48px
}

.social a:hover {
  background: hsla(0, 0%, 100%, .2)
}

.btn {
  align-items: center;
  background: #ff7624;
  border: 0;
  border-radius: 62px;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.4;
  margin: 2px;
  padding: 11px 20px;
  position: relative;
  transition: background .35s cubic-bezier(.3, .86, .36, .95)
}

.btn:hover {
  background: rgba(255, 118, 36, .8);
  color: #fff
}

.btn .icon,
.btn.print .icon {
  margin-left: 6px
}

.btn .icon.icon-left {
  margin-left: 0;
  margin-right: 6px
}

.btn .icon img {
  display: block
}

.btn:before {
  background: linear-gradient(180deg, hsla(0, 0%, 100%, .12), hsla(0, 0%, 100%, 0));
  border-radius: 64px;
  bottom: -2px;
  content: "";
  left: -2px;
  position: absolute;
  right: -2px;
  top: -2px
}

.btn.outline {
  background: transparent;
  border: 1px solid rgba(24, 2, 40, .1);
  color: #180228;
  margin: 0;
  padding: 10px 20px
}

.btn.outline:hover {
  background: rgba(24, 2, 40, .1)
}

.btn.outline:before {
  content: none
}

.btn.purple {
  background: #7a2ab5;
  font-weight: 500;
  justify-content: center;
  text-align: center
}

.btn.purple:hover {
  background: rgba(122, 42, 181, .8);
  color: #fff
}

.btn.purple .icon {
  margin-left: 0;
  margin-right: 6px
}

.btn.white {
  background: #fff;
  color: #180228
}

.btn.white:hover {
  background: hsla(0, 0%, 100%, .8)
}

.btn.white .icon {
  margin: -2px 6px -2px 0
}

.notification-block {
  backdrop-filter: blur(4px);
  background-image: linear-gradient(180deg, #fff, hsla(0, 0%, 100%, 0));
  left: 0;
  padding: 12px 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999
}

.notification-block .container {
  max-width: 1440px;
  padding: 14px 16px;
  position: relative
}

.noti-popup {
  background-color: #ffdcc8;
  border: 1px solid #ffc18d;
  border-radius: 16px;
  display: flex;
  padding: 12px 36px 12px 12px;
  position: relative
}

.noti-popup.info-banner {
  background-color: #ecd2ff;
  border: 1px solid #d8aafa
}

.noti-popup.info-banner .info {
  display: block
}

.noti-popup.info-banner .icon-holder {
  border: 1px solid #d8aafa
}

.noti-popup.warning-banner {
  background-color: #ffdcc8;
  border: 1px solid #ffc18d
}

.noti-popup.warning-banner .warning {
  display: block
}

.noti-popup.warning-banner .icon-holder {
  border: 1px solid rgba(255, 118, 36, .4)
}

.noti-popup.urgent-banner {
  background-color: #ffcbc9;
  border: 1px solid #ff8d88
}

.noti-popup.urgent-banner .urgent {
  display: block
}

.noti-popup.urgent-banner .icon-holder {
  border: 1px solid #ff8d88
}

.noti-popup .close {
  font-size: 0;
  line-height: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity .35s cubic-bezier(.3, .86, .36, .95)
}

.noti-popup .close:hover {
  opacity: .8
}

.noti-popup .icon-holder {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255, 118, 36, .4);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  width: 40px
}

.noti-popup .icon-holder img {
  display: none
}

.noti-popup .text-holder {
  color: #333b52;
  flex-grow: 1;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  padding-left: 8px
}

.noti-popup .title {
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 6px
}

.noti-popup p {
  margin-bottom: 0
}

.noti-popup .meta .btn {
  display: none
}

.home-slider {
  position: relative
}

.home-slider .swiper-button-next,
.home-slider .swiper-button-prev {
  align-items: center;
  background: hsla(0, 0%, 100%, .2);
  border: 1px solid hsla(0, 0%, 100%, .1);
  border-radius: 50%;
  bottom: 42px;
  cursor: pointer;
  display: flex;
  font-size: 0;
  height: 48px;
  justify-content: center;
  left: auto;
  line-height: 0;
  position: absolute;
  right: 28px;
  top: auto;
  transition: border-color .35s cubic-bezier(.3, .86, .36, .95), background .35s cubic-bezier(.3, .86, .36, .95);
  width: 48px;
  z-index: 9
}

.home-slider .swiper-button-next:after,
.home-slider .swiper-button-prev:after {
  display: none
}

.home-slider .swiper-button-next:hover,
.home-slider .swiper-button-prev:hover {
  background: hsla(0, 0%, 100%, .1);
  border-color: #fff
}

.home-slider .swiper-button-prev {
  left: auto;
  right: 84px;
  top: auto
}

.home-slider .swiper-button-prev img {
  transform: scaleX(-1)
}

.home-banner {
  box-sizing: border-box;
  margin-bottom: 16px;
  padding: 0 12px;
  z-index: 1
}

.home-banner .wrap {
  align-items: flex-end;
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  color: #fff;
  display: flex;
  margin: 0 auto;
  max-width: 1408px;
  min-height: 510px;
  padding: 48px 0 23px;
  position: relative;
  z-index: 1
}

.home-banner .container {
  padding: 0 16px
}

.home-banner .bg {
  border-radius: 16px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1
}

.home-banner .bg:before {
  background-image: linear-gradient(270deg, transparent, #000);
  opacity: .4
}

.home-banner .bg:after,
.home-banner .bg:before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

.home-banner .bg:after {
  background: rgba(0, 0, 0, .4)
}

.home-banner .bg img {
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%
}

.home-banner .text-holder {
  font-weight: 400;
  width: 100%
}

.home-banner h1 {
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1428571429;
  margin-bottom: 16px
}

.home-banner h1 i {
  font-family: Galaxie Copernicus, Times New Roman, Georgia, times, serif;
  font-weight: 400
}

.inner-banner {
  margin-bottom: 16px;
  padding: 0 12px;
  width: 100%;
  z-index: 1
}

.inner-banner .wrap {
  align-items: flex-end;
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(24, 2, 40, .25);
  display: flex;
  margin: 0 auto;
  max-width: 1408px;
  min-height: 282px;
  padding: 24px 0;
  position: relative;
  z-index: 1
}

.inner-banner .wrap:has(.search-form) {
  padding-bottom: 24px
}

.inner-banner .container {
  padding: 0 16px
}

.inner-banner .bg {
  border-radius: 16px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1
}

.inner-banner .bg:before {
  background-image: linear-gradient(270deg, transparent, #000);
  opacity: .4
}

.inner-banner .bg:after,
.inner-banner .bg:before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

.inner-banner .bg:after {
  background: rgba(0, 0, 0, .4)
}

.inner-banner .bg img {
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%
}

.inner-banner h1 {
  color: #fff;
  font-size: 40px;
  letter-spacing: -.02em;
  line-height: 1.1428571429;
  margin-bottom: 0
}

.inner-banner h1 i {
  display: block;
  font-family: Galaxie Copernicus, Times New Roman, Georgia, times, serif;
  font-weight: 400;
  display: inline;
}

.inner-banner h1 i.inline {
  display: inline
}

.search-form {
  background-color: #fff;
  background-image: url(/images/decor-form.svg);
  background-position: -50% 50%;
  background-repeat: no-repeat;
  border: 1px solid rgba(24, 2, 40, .2);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-top: 16px;
  padding: 16px
}

.search-form input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .15);
  border-radius: 68px;
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 400;
  height: auto;
  line-height: 1.5;
  margin: 0 0 12px;
  padding: 12px 16px;
  width: 100%
}

.search-form input[type=search]::-moz-placeholder {
  color: rgba(24, 2, 40, .5);
  opacity: 1
}

.search-form input[type=search]::placeholder {
  color: rgba(24, 2, 40, .5);
  opacity: 1
}

.search-form .btn {
  justify-content: center;
  width: 100%
}

.quick-links {
  padding: 64px 0 48px;
  position: relative
}

.quick-links.with-image {
  padding-bottom: 40px
}

.quick-links.with-image .link-single .links-wrap {
  padding: 24px 24px 15px
}

.quick-links.with-image .link-single .text-holder {
  margin-bottom: 22px;
  margin-left: -12px;
  margin-right: -12px;
  padding-left: 0;
  width: 100%
}

.quick-links.with-image .link-single .btn {
  align-self: start;
  margin-left: -12px;
  width: auto
}

.quick-links.contact-details {
  padding-bottom: 40px
}

.quick-links.contact-details .link-single .links-wrap {
  padding: 24px 24px 15px
}

.quick-links.contact-details .link-single .text-holder {
  margin-bottom: 22px;
  padding-left: 0;
  width: 100%
}

.quick-links.contact-details .link-single .btn {
  align-self: start;
  margin-left: -12px;
  width: auto
}

.quick-links.team-list .heading {
  margin-bottom: 32px
}

.quick-links.contact-details {
  padding: 1px 0 31px
}

.quick-links+.quick-links:before {
  border-top: 1px solid rgba(24, 2, 40, .1);
  content: "";
  height: 1px;
  left: 16px;
  margin: 0 auto;
  max-width: 1284px;
  position: absolute;
  right: 16px;
  top: 0
}

.quick-links .heading {
  margin-bottom: 26px
}

.quick-links .heading .sub-title {
  color: #858997;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  text-transform: uppercase
}

.quick-links .heading h2 {
  color: #101428;
  margin-bottom: 0
}

.quick-links .heading h2 i {
  font-family: Galaxie Copernicus, Times New Roman, Georgia, times, serif;
  font-weight: 400
}

.quick-links .heading-block {
  color: #180228;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 14px
}

.quick-links .heading-block h2 {
  color: #180228
}

.heading h2 {
  font-size: 32px;
  letter-spacing: -.03em
}

.links-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px
}

.links-list.three-cols .link-single {
  padding-bottom: 24px
}

.links-list.three-cols .link-single .text-holder {
  margin: 0 0 24px !important
}

.links-list.three-cols .link-single .links-wrap p:last-of-type {
  margin-bottom: 0
}

.links-list.three-cols .link-single .img-holder {
  height: 264px
}

.links-list.two-cols .link-single {
  padding-bottom: 32px
}

.links-list.two-cols .link-single .text-holder {
  margin: 0 !important
}

.links-list.two-cols .link-single .links-wrap p:last-of-type {
  margin-bottom: 0
}

.links-list.two-cols .link-single .img-holder {
  height: 264px
}

.links-list.text-alt {
  color: #475467
}

.link-single {
  padding: 0 12px 16px;
  width: 100%
}

.link-single .links-wrap {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  color: #656464;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding: 24px
}

.link-single .img-holder {
  border-radius: 8px;
  height: 214px;
  margin: -12px -12px 36px;
  overflow: hidden;
  width: calc(100% + 24px)
}

.link-single .img-holder img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%
}

.link-single .icon-holder {
  align-items: center;
  background: rgba(122, 42, 181, .1);
  border: 1px solid rgba(129, 55, 193, .1);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 52px;
  justify-content: center;
  margin-bottom: 24px;
  width: 52px
}

.link-single .icon-holder.alt {
  background: rgba(255, 118, 36, .1);
  border-color: rgba(255, 118, 36, .1)
}

.link-single .text-holder {
  margin-bottom: 16px;
  padding-left: 24px;
  width: calc(100% - 52px)
}

.link-single .text-holder p:last-child {
  margin-bottom: 0
}

.link-single .block {
  display: block;
  margin-bottom: 12px
}

.link-single .block a {
  color: #ff7624;
  -webkit-text-decoration: underline;
  text-decoration: underline
}

.link-single .block a:hover {
  -webkit-text-decoration: none;
  text-decoration: none
}

.link-single strong.block {
  color: #180228;
  font-weight: 400
}

.link-single h3,
.link-single h4 {
  color: #180228;
  letter-spacing: -.02em;
  margin-bottom: 12px
}

.link-single p {
  margin-bottom: 24px
}

.link-single p a {
  color: #ff7624;
  -webkit-text-decoration: underline;
  text-decoration: underline
}

.link-single p a:hover {
  -webkit-text-decoration: none;
  text-decoration: none
}

.link-single p+h3,
.link-single p+h4 {
  border-top: 1px solid #858997;
  padding-top: 16px
}

.link-single .btn {
  justify-content: center;
  width: 100%
}

.feature-block {
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative
}

.feature-block .bg {
  z-index: -1
}

.feature-block .bg,
.feature-block .bg:before {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

.feature-block .bg:before {
  background: linear-gradient(90deg, rgba(0, 0, 0, .4), transparent);
  content: "";
  z-index: 1
}

.feature-block .bg img {
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%
}

.feature-block .link-single {
  margin-bottom: 0;
  padding: 0;
  width: 100%
}

.feature-block .link-single .text-holder {
  margin: 0 !important
}

.feature-block .link-single .links-wrap {
  border-radius: 8px
}

.feature-block .link-single .links-wrap p:last-of-type {
  margin-bottom: 11px
}

.latest-updates {
  padding: 64px 0 37px
}

.latest-updates .heading {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  width: 100%
}

.latest-updates .heading .left {
  margin-bottom: 24px
}

.latest-updates .heading .right {
  width: 100%
}

.latest-updates .heading .sub-title {
  color: #858997;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  text-transform: uppercase
}

.latest-updates .heading h2 {
  color: #101428;
  margin-bottom: 0
}

.latest-updates .heading h2 i {
  font-family: Galaxie Copernicus, Times New Roman, Georgia, times, serif;
  font-weight: 400
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px
}

.news-single {
  padding: 0 12px 4px;
  width: 100%
}

.news-single a {
  display: block;
  transition: transform .35s cubic-bezier(.3, .86, .36, .95)
}

.news-single a:hover {
  transform: scale(.98)
}

.news-single .img-holder {
  border-radius: 12px;
  height: 238px;
  margin-bottom: 32px;
  overflow: hidden
}

.news-single .img-holder img {
  display: block;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%
}

.news-single .text-holder .meta {
  color: #7a2ab5;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 8px
}

.news-single .text-holder .author {
  display: inline-block;
  font-weight: 500;
}

.news-single .text-holder .date {
  display: inline-block;
  font-weight: 400;
  position: relative
}

.news-single .text-holder .author + .date {
  padding-left: 14px
}

.news-single .text-holder .author + .date:before {
  background: #7a2ab5;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px
}

.news-single .text-holder h3,
.news-single .text-holder h4 {
  color: #333b52;
  font-size: 24px
}

.marquee-section {
  display: none;
  padding: 64px 0 80px
}

.logo-block {
  padding: 64px 0 44px
}

.marquee {
  overflow: hidden;
  padding: 0 0 16px;
  white-space: nowrap;
  width: 100%
}

.marquee__inner {
  animation: marquee-left 15s linear infinite;
  display: inline-flex
}

.marquee.reverse .marquee__inner {
  animation: marquee-right 15s linear infinite
}

.marquee:hover .marquee__inner {
  animation-play-state: paused
}

.marquee__item {
  align-items: center;
  display: inline-flex;
  font-size: 1.5rem;
  margin: 0 10px;
  white-space: nowrap
}

.marquee__item img {
  border-radius: 10px;
  height: 92px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  overflow: hidden;
  width: 195px
}

.marquee__item .text {
  border: 1px solid rgba(24, 2, 40, .12);
  border-radius: 10px;
  color: #180228;
  font-family: Galaxie Copernicus, Times New Roman, Georgia, times, serif;
  font-size: 48px;
  font-style: italic;
  letter-spacing: -.03em;
  line-height: 1.2;
  overflow: hidden;
  padding: 18px 20px
}

.marquee__item .logo-holder {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  display: flex;
  height: 56px;
  justify-content: center;
  overflow: hidden;
  padding: 10px 20px;
  width: 145px
}

.marquee__item .logo-holder img {
  border-radius: 0;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  overflow: hidden;
  width: auto
}

@keyframes marquee-left {
  0% {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.logo-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -5px
}

.logo-list>li {
  margin: 0 0 10px;
  padding: 0 5px;
  width: 33.33%
}

.logo-list .logo-holder {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  display: flex;
  height: 60px;
  justify-content: center;
  overflow: hidden;
  padding: 5px 10px
}

.logo-list .logo-holder img {
  border-radius: 0;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  overflow: hidden;
  width: auto
}

.breadcrumbs-block {
  display: none;
  padding: 0 12px;
  width: 100%
}

.breadcrumbs-block .container {
  margin: 0 auto;
  max-width: 1408px;
  padding: 0
}

.breadcrumbs {
  background: #fff;
  border: 1px solid hsla(227, 8%, 56%, .2);
  border-radius: 8px;
  display: none;
  padding: 13px 48px
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap
}

.breadcrumbs ol li {
  align-items: center;
  display: inline-flex;
  position: relative
}

.breadcrumbs ol li+li:before {
  background-image: url(/images/chevron-right.svg);
  content: "";
  display: block;
  height: 16px;
  margin-left: 8px;
  margin-right: 6px;
  width: 16px
}

.breadcrumbs a,
.breadcrumbs span {
  background: transparent;
  border-radius: 6px;
  color: #858997;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
  padding: 4px 8px;
  transition: color .35s cubic-bezier(.3, .86, .36, .95), background .35s cubic-bezier(.3, .86, .36, .95)
}

.breadcrumbs a:hover,
.breadcrumbs span,
.breadcrumbs span:hover {
  background: rgba(122, 42, 181, .1);
  color: #7a2ab5
}

.breadcrumbs span {
  font-family: Inter, Circular Std, Helvetica Neue, Arial, Noto Sans, sans-serif;
  font-weight: 600
}

.content-block {
  padding: 0 0 64px
}

.content-block .container {
  display: flex;
  flex-direction: column-reverse
}

.content-area {
  width: 100%
}

.content-area h2 {
  color: #101428
}

.content-area .top-block {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.6
}

.content-area .card {
  background: #7a2ab5 url(/images/decor-c.svg);
  background-position: 95% 50%;
  background-repeat: no-repeat;
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 24px;
  width: 100%
}

.content-area .card .title {
  color: hsla(0, 0%, 100%, .8);
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 2px;
  text-transform: uppercase
}

.content-area .card .number {
  color: #fff;
  display: block;
  margin-bottom: 2px
}

.content-area .card .meta {
  color: #fff;
  display: block;
  margin-bottom: 0
}

.sidebar {
  margin-bottom: 50px;
  width: 100%
}

.sidebar .heading {
  align-items: center;
  background: #180228;
  border-radius: 8px;
  color: #fff;
  display: flex;
  margin-bottom: 10px;
  padding: 8px 16px
}

.sidebar .heading .icon-holder {
  flex-shrink: 0;
  padding-right: 10px
}

.sidebar .heading .title {
  flex-grow: 1;
  font-size: 18px;
  line-height: 1.4
}

.buttons {
  background: #fff;
  border: 1px solid #ff7624;
  border-radius: 8px;
  margin-bottom: 32px;
  padding: 16px
}

.acc-block {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 12px
}

.acc-block .title {
  color: #180228;
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 12px
}

.sidebar-accordion>li {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  margin-bottom: 6px;
  overflow: hidden
}

.sidebar-accordion>li.active>a {
  background: #7a2ab5;
  color: #fff
}

.sidebar-accordion>li.active>a.opener {
  background: transparent;
  color: #7a2ab5
}

.sidebar-accordion>li.active>a.opener:before {
  transform: translateY(-50%) rotate(180deg)
}

.sidebar-accordion a {
  color: #180228;
  display: block;
  font-weight: 500;
  padding: 11px 14px;
  position: relative
}

.sidebar-accordion a:hover {
  color: #7a2ab5;
  -webkit-text-decoration: none;
  text-decoration: none
}

.sidebar-accordion a.opener:before {
  background: url(/images/chevron-down.svg);
  content: "";
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .35s cubic-bezier(.3, .86, .36, .95);
  width: 12px
}

.sidebar-accordion .slide {
  padding: 0 6px 6px
}

.sidebar-accordion .slide ul {
  background: #f2eaf8;
  border: rgba(24, 2, 40, .1);
  border-radius: 12px;
  padding: 7px 6px
}

.sidebar-accordion .slide ul li {
  margin-bottom: 4px
}

.sidebar-accordion .slide ul li.active a {
  background: #7a2ab5;
  color: #fff
}

.sidebar-accordion .slide ul a {
  border-radius: 8px;
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding: 8px 12px;
  transition: color .35s cubic-bezier(.3, .86, .36, .95), background .35s cubic-bezier(.3, .86, .36, .95)
}

.sidebar-accordion .slide ul a:hover {
  background: #7a2ab5;
  color: #fff
}

.links li {
  border-top: 1px solid rgba(24, 2, 40, .1);
  padding-bottom: 12px;
  padding-top: 12px
}

.links a {
  align-items: center;
  display: flex
}

.links a .icon-holder {
  flex-shrink: 0;
  padding-right: 10px
}

.links a .title {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0 !important;
  transition: color .3s linear
}

.links a:hover .title {
  color: #7a2ab5
}

.content-blocks>li {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  margin-bottom: 6px;
  overflow: hidden
}

.content-blocks>li.active .oc-opener:after {
  transform: rotate(180deg)
}

.content-blocks>li>.oc-opener {
  color: #656464;
  display: block;
  font-size: 16px;
  font-weight: 500;
  font-weight: 400;
  line-height: 1.6;
  padding: 24px 75px 24px 24px;
  position: relative
}

.content-blocks>li>.oc-opener:hover {
  -webkit-text-decoration: none;
  text-decoration: none
}

.content-blocks>li>.oc-opener:before {
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  content: "";
  height: 36px;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 36px
}

.content-blocks>li>.oc-opener:after {
  background: url(/images/chevron-down.svg);
  content: "";
  height: 8px;
  position: absolute;
  right: 36px;
  top: 38px;
  transition: transform .35s cubic-bezier(.3, .86, .36, .95);
  width: 12px
}

.content-blocks>li>.oc-opener h3,
.content-blocks>li>.oc-opener h4 {
  color: #180228;
  margin-bottom: 8px
}

.content-blocks>li>.oc-opener h3:last-of-type,
.content-blocks>li>.oc-opener h4:last-of-type {
  margin-bottom: 0
}

.content-blocks>li>.oc-opener p {
  max-width: 510px
}

.content-blocks>li>.oc-opener p:last-of-type {
  margin-bottom: 0
}

.content-blocks>li .profile-single {
  border: 0;
  border-radius: 0
}

.content-blocks .oc-slide {
  padding: 0 24px
}

.content-blocks .holder {
  border-top: 1px solid rgba(24, 2, 40, .1);
  padding-bottom: 24px;
  padding-top: 24px
}

.content-blocks .holder p a {
  color: #ff7624
}

.content-blocks .holder p a.btn {
  color: #fff
}

.content-blocks .img {
  margin-bottom: 32px
}

.content-blocks .img img {
  max-width: none;
  width: 100%
}

.content-blocks .row {
  display: flex;
  flex-direction: column
}

.content-blocks .row .img-holder {
  text-align: center
}

.content-blocks .img-block {
  margin-bottom: 24px;
  overflow-x: auto
}

.content-blocks .img-block img {
  max-width: none;
  width: 909px
}

.list-check {
  list-style: disc;
  color: #180228;
  font-size: 16px;
  line-height: 1.6;
}

.list-check .list-check {
  margin-bottom: 0;
  margin-top: 16px;
}

.list-check li {
  margin-bottom: 16px;
  position: relative
}

.testing-block .list-check {
  list-style: none;
  padding: initial;
}

.testing-block .list-check li {
  padding-left: 36px;
}

.testing-block .list-check li:before {
  background-image: url(/images/icon-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 24px;
  left: 0;
  position: absolute;
  top: 0;
  width: 24px;
}

.testing-block .list-check .list-check li {
  padding-left: 14px;
}

.testing-block .list-check .list-check li:before {
  background: #079455;
  background-image: none;
  border-radius: 50%;
  content: "";
  height: 8px;
  top: 5px;
  width: 8px;
}

.faqs-section {
  display: block;
  overflow: hidden;
  padding: 9px 0 64px;
  color: #180228;
}

.faqs-section h2 {
  margin-bottom: 14px
}

.faqs-block {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  color: #180228;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow: hidden;
  padding: 24px 24px 0;
  margin: 0 0 24px 0;
}

.faqs-accordion>li {
  border-top: 1px solid rgba(24, 2, 40, .1);
  margin-bottom: 6px
}

.faqs-accordion>li.active .opener {
  color: #7a2ab5
}

.faqs-accordion>li.active .opener:after {
  background: url(/images/icon-minus.svg)
}

.faqs-accordion .opener {
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding: 24px 48px 20px 0;
  position: relative
}

.faqs-accordion .opener:hover {
  color: #7a2ab5;
  -webkit-text-decoration: none;
  text-decoration: none
}

.faqs-accordion .opener:after {
  background: url(/images/icon-plus.svg);
  content: "";
  height: 25px;
  position: absolute;
  right: 0;
  top: 24px;
  transition: transform .35s cubic-bezier(.3, .86, .36, .95);
  width: 25px
}

.faqs-accordion .opener h3,
.faqs-accordion .opener h4 {
  color: #180228;
  margin-bottom: 8px
}

.faqs-accordion .opener h3:last-of-type,
.faqs-accordion .opener h4:last-of-type {
  margin-bottom: 0
}

.faqs-accordion .opener p {
  max-width: 510px
}

.faqs-accordion .opener p:last-of-type {
  margin-bottom: 0
}

.faqs-accordion .slide {
  padding: 0 48px 1px 0
}

.table-holder {
  border-radius: 8px;
  margin-bottom: 24px;
  overflow-x: auto
}

.table-holder table {
  border: 1px solid hsla(227, 8%, 56%, .2);
  border-collapse: collapse;
  border-radius: 8px;
}

.table-holder table th {
  background: #180228;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  padding: 12px 24px;
  text-align: center
}

.table-holder table th:first-child {
  text-align: left
}

.table-holder table td {
  background: #fff;
  border-bottom: 1px solid hsla(227, 8%, 56%, .2);
  color: #180228;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  padding: 12px 24px;
  text-align: center
}

.table-holder table td:first-child {
  text-align: left
}

.table-holder table .square {
  display: inline-block;
  height: 10px;
  margin-right: 8px;
  width: 10px
}

.table-holder table .square.light-blue {
  background: #24b6ff
}

.table-holder table .square.purple {
  background: #7a2ab5
}

.table-holder table .square.orange {
  background: #ff7624
}

.table-holder table .square.blue {
  background: #9e77ed
}

.table-holder table .square.green {
  background: #0bb644
}

.table-holder table .percent {
  color: #858997
}

.table-holder table.has-borders {
  border: 1px solid hsla(227, 8%, 56%, .2);
  border-collapse: collapse;
  border-radius: 8px;
  min-width: 0;
  width: auto;
  max-width: 100%;
}

/* Mobile: revert to full width for tables that would overflow */
@media (max-width: 768px) {
  .table-holder table.has-borders.responsive-table {
    min-width: 909px;
    width: 100%;
  }
}

.table-holder table.has-borders th {
  background: #180228;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  padding: 12px 16px;
  text-align: left
}

.table-holder table.has-borders td {
  background: #fff;
  border: 1px solid hsla(227, 8%, 56%, .2);
  color: #180228;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 16px;
  text-align: left;
  vertical-align: top
}

.table-holder table.has-borders td:first-child {
  text-align: left
}

.table-holder table.has-borders td.bg-lightblue {
  background: rgba(122, 42, 181, .1);
  color: #7a2ab5;
  font-weight: 500;
  text-align: center
}

.table-holder table.has-borders .uppercase {
  text-transform: uppercase
}

.table-holder .list-dot {
  font-weight: 500;
  margin-top: 10px
}

.table-holder .list-dot:first-child {
  margin-top: 0
}

.table-holder .list-dot li {
  margin-bottom: 10px;
  padding-left: 14px;
  position: relative
}

.table-holder .list-dot li:before {
  background: #079455;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 8px
}

.scroll {
  display: flex;
  justify-content: center;
  margin-bottom: 24px
}

.it-text {
  color: #656464;
  display: block;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  padding: 16px 0 0
}

.it-text h2{
  font-style: normal;
}

.box {
  background: rgba(122, 42, 181, .05);
  border: 1px solid rgba(122, 42, 181, .1);
  border-radius: 8px;
  display: block;
  margin-bottom: 32px;
  padding: 16px
}

.box ol {
  counter-reset: ordered
}

.box ol li {
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative
}

.box ol li:last-child {
  margin-bottom: 0
}

.box ol li:before {
  color: #7a2ab5;
  content: counter(ordered) ".";
  counter-increment: ordered;
  left: 0;
  position: absolute;
  top: 0
}

.box ol li:before {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6
}

.box ol a {
  color: #ff7624;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.box ol a:hover {
  -webkit-text-decoration: none;
  text-decoration: none
}

.text-black {
  color: #180228
}

.ordered {
  counter-reset: ordered
}

.text-image {
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 16px
}

.text-image .text-block {
  margin-bottom: 18px
}

.text-image .text-block p:last-child {
  margin-bottom: 0
}

.text-image .img-diag img {
  height: auto;
  max-width: 100%
}

.text-image .title {
  color: #180228;
  display: block;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative
}

.text-image .title,
.text-image .title:before {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4
}

.text-image .title:before {
  color: #7a2ab5;
  content: counter(ordered) ".";
  counter-increment: ordered;
  left: 0;
  position: absolute;
  top: 0
}

.blockquote-holder {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  padding: 82px 24px 24px;
  position: relative
}

.blockquote-holder:before {
  background: url(/images/icon-quote.png);
  background-size: 100% 100%;
  content: "";
  height: 42px;
  left: 24px;
  position: absolute;
  top: 24px;
  width: 59px
}

.blockquote-holder blockquote {
  margin: 0;
  padding: 0
}

.blockquote-holder blockquote q {
  border-bottom: 1px solid rgba(24, 2, 40, .1);
  color: #101428;
  display: block;
  font-family: Galaxie Copernicus, Times New Roman, Georgia, times, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  quotes: none
}

.blockquote-holder blockquote cite {
  align-items: flex-start;
  display: flex;
  font-style: normal
}

.blockquote-holder blockquote .author {
  flex-shrink: 0;
  width: 48px
}

.blockquote-holder blockquote .author img {
  width: 100%
}

.blockquote-holder blockquote .details {
  display: block;
  flex-grow: 1;
  padding-left: 16px
}

.blockquote-holder blockquote .name {
  color: #180228;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 6px
}

.blockquote-holder blockquote .position {
  color: rgba(24, 2, 40, .5);
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase
}

.testing-block {
  background: #fff;
  border: 2px solid #ff7624;
  border-radius: 12px;
  padding: 24px
}

.testing-block h3,
.testing-block h4 {
  font-weight: 400;
  margin-bottom: 16px
}

.testing-block .t-block {
  background: #f2f3f5;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 16px
}

.testing-block .t-block:last-child {
  margin-bottom: 0
}

.testing-block .title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px
}

.testing-block p:last-of-type {
  margin: 0
}

.testing-block a {
  color: #ff7624;
  -webkit-text-decoration: underline;
  text-decoration: underline
}

.testing-block a:hover {
  -webkit-text-decoration: none;
  text-decoration: none
}

.desktop-img {
  display: none
}

img {
  height: auto;
  max-width: 100%
}

.terms-section {
  display: block;
  padding: 0 0 64px
}

.terms-section .container {
  display: flex;
  flex-direction: column
}

.table-of-content {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  margin-bottom: 64px;
  padding: 12px;
  width: 100%
}

.table-of-content h2 {
  color: #180228;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 12px
}

.table-of-content ol {
  counter-reset: ordered
}

.table-of-content ol li {
  margin-bottom: 6px;
  position: relative
}

.table-of-content ol li:before {
  color: #7a2ab5;
  content: counter(ordered) ".";
  counter-increment: ordered;
  font-size: 16px;
  font-weight: 500;
  left: 0;
  left: 14px;
  line-height: 1.6;
  position: absolute;
  top: 0;
  top: 11px
}

.table-of-content ol a {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding: 10px 14px 10px 35px
}

.table-of-content ol a:hover {
  background: #f2eaf8
}

.terms-content {
  counter-reset: ordered;
  width: 100%
}

.terms-content .section {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  color: #180228;
  margin-bottom: 16px;
  padding: 24px;
  width: 100%
}

.terms-content .section h3,
.terms-content .section h4 {
  font-size: 24px;
  position: relative
}

.terms-content .section h3:before,
.terms-content .section h4:before {
  color: #7a2ab5;
  content: counter(ordered) ".";
  counter-increment: ordered;
  font-size: 24px;
  margin-right: 8px
}

.terms-content .section-content {
  border-top: 1px solid rgba(24, 2, 40, .1);
  padding-top: 24px
}

.terms-content .section-content a {
  color: #ff7624;
  -webkit-text-decoration: underline;
  text-decoration: underline
}

.terms-content .section-content a:hover {
  -webkit-text-decoration: none;
  text-decoration: none
}

.terms-content .section-content ol {
  counter-reset: ordered
}

.terms-content .section-content ol>li {
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative
}

.terms-content .section-content ol>li:last-child {
  margin-bottom: 0
}

.terms-content .section-content ol>li:before {
  color: #7a2ab5;
  content: counter(ordered, lower-alpha) ".";
  counter-increment: ordered;
  font-size: 16px;
  font-weight: 400;
  left: 0;
  line-height: 1.6;
  position: absolute;
  top: 0
}

.terms-content .section-content ol>li>ol {
  counter-reset: ordered;
  padding-top: 12px
}

.terms-content .section-content ol>li>ol>li {
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative
}

.terms-content .section-content ol>li>ol>li:before {
  color: #7a2ab5;
  content: counter(ordered, lower-roman) ".";
  counter-increment: ordered;
  font-size: 16px;
  font-weight: 400;
  left: 0;
  line-height: 1.6;
  position: absolute;
  top: 0
}

.terms-content .section-content p+ol {
  padding-left: 30px
}

.contact-section {
  display: block;
  padding: 64px 0
}

.contact-block {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  color: #180228;
  padding: 24px;
  width: 100%
}

.contact-block .right .bg {
  display: none
}

.contact-block .col-center {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .2);
  border-radius: 8px;
  color: #656464;
  padding: 24px;
  width: 100%
}

.contact-block .col-center h3,
.contact-block .col-center h4 {
  color: #180228;
  letter-spacing: -.02em;
  margin-bottom: 8px
}

.contact-block .col-center p {
  margin-bottom: 16px
}

.contact-form {
  margin-bottom: 24px
}

.contact-form .title {
  color: #656464;
  display: inline-block;
  font-family: Inter, Circular Std, Helvetica Neue, Arial, Noto Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
  margin-bottom: 6px
}

.contact-form .row .col {
  padding: 0 0 16px;
  width: 100%
}

.contact-form .custom-select,
.contact-form .row .col.full {
  width: 100%
}

.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=text],
.contact-form select,
.contact-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .15);
  border-radius: 68px;
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  padding: 12px 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%
}

.contact-form input[type=email]::-moz-placeholder,
.contact-form input[type=tel]::-moz-placeholder,
.contact-form input[type=text]::-moz-placeholder,
.contact-form select::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  color: rgba(24, 2, 40, .5);
  opacity: 1
}

.contact-form input[type=email]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form input[type=text]::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: rgba(24, 2, 40, .5);
  opacity: 1
}

.contact-form select {
  background-image: url(/images/chevron-down.svg);
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
  font-weight: 500
}

.contact-form textarea {
  border-radius: 24px;
  height: 120px;
  resize: none;
  white-space: normal
}

.contact-form .radio-list {
  display: flex;
  margin: 0 -8px
}

.contact-form .radio-list li {
  padding: 0 8px;
  width: 50%
}

.contact-form .radio-list label {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .15);
  border-radius: 68px;
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 12px 16px 12px 40px;
  position: relative;
  width: 100%
}

.contact-form .radio-list label input[type=radio] {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden
}

.contact-form .radio-list label input[type=radio]:checked+.fake-input {
  border: 5px solid #7a2ab5
}

.contact-form .radio-list label .fake-input {
  border: 1px solid #858997;
  border-radius: 50%;
  height: 16px;
  left: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: border-width .35s cubic-bezier(.3, .86, .36, .95), border-color .35s cubic-bezier(.3, .86, .36, .95);
  width: 16px
}

.contact-form .btn {
  font-weight: 500
}

.filter-block {
  background-color: #fff;
  background-image: url(/images/decor-form.svg);
  background-position: -50% 50%;
  background-repeat: no-repeat;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  color: #180228;
  margin-bottom: 26px;
  padding: 24px 16px;
  position: relative;
  width: 100%;
  z-index: 5
}

.filter-block .col {
  margin-bottom: 12px
}

.filter-block .custom-select,
.filter-block .search {
  width: 100%
}

.filter-block input[type=search],
.filter-block select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .15);
  border-radius: 68px;
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  padding: 12px 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%
}

.filter-block input[type=search]::-moz-placeholder,
.filter-block select::-moz-placeholder {
  color: rgba(24, 2, 40, .5);
  opacity: 1
}

.filter-block input[type=search]::placeholder,
.filter-block select::placeholder {
  color: rgba(24, 2, 40, .5);
  opacity: 1
}

.filter-block select {
  background-image: url(/images/chevron-down.svg);
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
  font-weight: 500
}

.filter-block textarea {
  border-radius: 24px;
  height: 120px;
  resize: none
}

.filter-block .btn {
  justify-content: center;
  width: 100%
}

.filter-by-letter {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px
}

.filter-by-letter .title {
  color: #180228;
  display: block;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-right: 24px
}

.filter-by-letter .filter-letter {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start
}

.filter-by-letter .filter-letter .active a {
  background: #7a2ab5;
  color: #fff
}

.filter-by-letter .filter-letter a {
  align-items: center;
  border-radius: 4px;
  color: #ff7624;
  display: flex;
  height: 32px;
  justify-content: center;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-transform: uppercase;
  transition: background .35s cubic-bezier(.3, .86, .36, .95);
  width: 24px
}

.filter-by-letter .filter-letter a:hover {
  background: hsla(227, 8%, 56%, .15)
}

.filter-terms {
  align-items: flex-start;
  display: flex
}

.filter-terms input[type=reset] {
  background: transparent;
  border: 0;
  color: #7a2ab5;
  display: block;
  flex-shrink: 0;
  margin-left: 16px;
  padding: 12px 0 0;
  -webkit-text-decoration: underline;
  text-decoration: underline
}

.filter-terms input[type=reset]:hover {
  -webkit-text-decoration: none;
  text-decoration: none
}

.selected-terms {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3px
}

.selected-terms li {
  margin: 0 3px 6px
}

.selected-terms a {
  background: #f2eaf8;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 999px;
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding: 7px 36px 7px 12px;
  position: relative
}

.selected-terms a:hover {
  background: rgba(24, 2, 40, .1)
}

.selected-terms a:after {
  background: url(/images/icon-close-dark.svg);
  content: "";
  height: 16px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px
}

.filter-results {
  display: block;
  padding: 18px 0 0
}

.result-single {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  padding: 24px
}

.result-single .mobile-hidden {
  display: none
}

.result-single .img-holder {
  display: flex;
  flex-direction: column;
  margin-bottom: 4px
}

.result-single .img-holder img {
  align-self: center;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden
}

.result-single .img-holder .dept {
  color: #7a2ab5;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 10px;
  position: relative;
  text-transform: uppercase
}

.result-single .img-holder .dept:before {
  background: #7a2ab5;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px
}

.result-single .details {
  text-align: center
}

.result-single .name {
  color: #180228;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4
}

.result-single .edu {
  text-transform: uppercase
}

.result-single .edu,
.result-single .location {
  color: #858997;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4
}

.result-single .location {
  margin-bottom: 16px
}

.result-single .location .title {
  text-transform: uppercase
}

.result-single .town {
  color: #180228;
  font-size: 14px
}

.result-single .department,
.result-single .speciality {
  flex-shrink: 0;
  width: 130px
}

.result-single .contact,
.result-single .department,
.result-single .speciality {
  background: rgba(24, 2, 40, .02);
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  padding: 12px
}

.result-single .contact {
  min-width: 280px;
  width: 280px
}

.container:has(aside.sidebar) .result-single .contact {
  max-width: 280px;
  width: 100%;
  min-width: 0;
  flex-shrink: 1
}

.result-single .cont-list {
  color: #180228;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4
}

.result-single .cont-list li {
  margin-bottom: 4px
}

.result-single .cont-list a {
  color: #180228;
  display: block;
  padding-left: 26px;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.result-single .cont-list a:hover {
  color: #7a2ab5
}

.result-single .cont-list a.tel:before {
  background: url(/images/icon-phone.svg)
}

.result-single .cont-list a.mail:before,
.result-single .cont-list a.tel:before {
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px
}

.result-single .cont-list a.mail:before {
  background: url(/images/icon-mail.svg)
}

.result-single .dept {
  color: #180228;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
  padding-left: 10px;
  position: relative
}

.result-single .dept:before {
  background: #7a2ab5;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px
}

.result-single .btn:not(.article-btn) {
  justify-content: center;
  text-align: center;
  width: 100%
}

.result-single .icon-holder {
  align-items: center;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  display: flex;
  height: 96px;
  justify-content: center;
  margin-bottom: 16px;
  width: 96px
}

.result-single .description-text {
  color: #858997;
  font-size: 16px;
  line-height: 1.6;
  text-align: center
}

.result-single .description-text .title {
  color: #180228;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px
}

.result-single .description-text p {
  display: none
}

.result-single .article-btn {
  justify-content: center;
  width: 100%
}

.pagination-block {
  padding: 20px 0 64px
}

.pagination-list {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center
}

.pagination-list li a,
.pagination-list li span {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 24px;
  color: #180228;
  display: flex;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 1.6;
  transition: background .35s cubic-bezier(.3, .86, .36, .95);
  width: 48px
}

.pagination-list li a:hover,
.pagination-list li span:hover {
  background: #fff
}

.pagination-list li.active a {
  background: #7a2ab5;
  color: #fff;
  pointer-events: none
}

.pagination-list li.pagination-next.disabled a,
.pagination-list li.pagination-next.disabled span,
.pagination-list li.pagination-prev.disabled a,
.pagination-list li.pagination-prev.disabled span {
  background: #f2f3f5
}

.pagination-list li.pagination-next.disabled a:before,
.pagination-list li.pagination-next.disabled span:before,
.pagination-list li.pagination-prev.disabled a:before,
.pagination-list li.pagination-prev.disabled span:before {
  opacity: .5
}

.pagination-list li.pagination-prev {
  padding-right: 16px
}

.pagination-list li.pagination-prev a,
.pagination-list li.pagination-prev span {
  font-size: 0;
  line-height: 0;
  position: relative
}

.pagination-list li.pagination-prev a:before,
.pagination-list li.pagination-prev span:before {
  background-image: url(/images/icon-arrow-dark.svg);
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 20px
}

.pagination-list li.pagination-next {
  padding-left: 16px
}

.pagination-list li.pagination-next a,
.pagination-list li.pagination-next span {
  font-size: 0;
  line-height: 0;
  position: relative
}

.pagination-list li.pagination-next a:before,
.pagination-list li.pagination-next span:before {
  background-image: url(/images/icon-arrow-dark.svg);
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px
}

.profile-block {
  display: block;
  padding: 10px 0 67px
}

.profile-block .back-holder,
.profile-single {
  margin-bottom: 24px
}

.profile-single {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  padding: 24px
}

.profile-single .left-block .details {
  margin-bottom: 24px
}

.profile-single .left-block .img-block {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  height: 230px;
  margin-bottom: 24px;
  max-width: 350px;
  overflow: hidden
}

.profile-single .left-block .img-block img {
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%
}

.profile-single .right-block .details {
  display: none;
  margin-bottom: 24px
}

.profile-single h3 {
  color: #180228;
  margin-bottom: 8px
}

.profile-single .desc {
  color: #858997;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 460px;
  text-transform: uppercase
}

.profile-single .profile-contacts {
  color: #180228;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 16px
}

.profile-single .profile-contacts li {
  margin-bottom: 8px
}

.profile-single .profile-contacts a {
  background: rgba(24, 2, 40, .02);
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  display: block;
  padding: 12px
}

.profile-single .profile-contacts .title {
  color: #858997;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  text-transform: uppercase
}

.profile-single .profile-contacts span {
  color: #180228;
  display: block;
  padding-left: 26px;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.profile-single .profile-contacts span:hover {
  color: #7a2ab5
}

.profile-single .profile-contacts span.tel:before {
  background: url(/images/icon-phone.svg);
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px
}

.profile-single .profile-contacts span.mail:before {
  background: url(/images/icon-mail.svg);
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px
}

.profile-single .area-of-interest,
.profile-single .department,
.profile-single .speciality {
  background: rgba(24, 2, 40, .02);
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  flex-shrink: 0;
  margin-bottom: 8px;
  padding: 12px;
  width: 100%
}

.profile-single .area-of-interest {
  margin-bottom: 24px
}

.profile-single .area-of-interest ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.profile-single .area-of-interest ul li {
  background: #180228;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  padding: 6px 16px;
  text-transform: uppercase;
  transition: background .35s cubic-bezier(.3, .86, .36, .95)
}

.profile-single .title {
  color: #858997;
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: uppercase
}

.profile-single .dept,
.profile-single .title {
  display: block;
  font-weight: 500;
  line-height: 1.4
}

.profile-single .dept {
  color: #180228;
  font-size: 14px;
  padding-left: 10px;
  position: relative
}

.profile-single .dept:before {
  background: #7a2ab5;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px
}

.profile-single .description {
  color: #656464;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6
}

.profile-single .description .sub-title {
  color: #180228;
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 3px
}

.profile-single .description p:last-child {
  margin-bottom: 0
}

.btn-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.btn-navigation .btn {
  justify-content: center;
  width: 100%
}

.sort-form .search-term {
  color: #858997;
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px
}

.sort-form .search-term span {
  color: #180228;
  font-weight: 500
}

.sort-form .radio-holder {
  color: #180228;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px
}

.sort-form .radio-holder .title {
  display: block;
  margin-bottom: 12px;
  width: 100%
}

.sort-form .radio-list {
  background: hsla(227, 8%, 56%, .05);
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 24px;
  display: flex;
  gap: 4px;
  overflow: hidden;
  padding: 4px;
  width: 100%
}

.sort-form .radio-list li {
  flex: 1
}

.sort-form .radio-list input[type=radio] {
  left: -9999px;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden
}

.sort-form .radio-list input[type=radio]:checked+label {
  background: #f2eaf8
}

.sort-form .radio-list label {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 20px;
  cursor: pointer;
  display: block;
  font-weight: 500;
  padding: 7px;
  text-align: center;
  text-transform: capitalize;
  width: 100%
}

.sort-form .select {
  align-items: center;
  color: #180228;
  display: flex;
  gap: 12px
}

.sort-form .select label {
  flex-shrink: 0
}

.sort-form .custom-select {
  flex-grow: 1;
  width: 100%
}

.sort-form input[type=search],
.sort-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .15);
  border-radius: 68px;
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 12px 16px;
  width: 100%
}

.sort-form input[type=search]::-moz-placeholder,
.sort-form select::-moz-placeholder {
  color: rgba(24, 2, 40, .5);
  opacity: 1
}

.sort-form input[type=search]::placeholder,
.sort-form select::placeholder {
  color: rgba(24, 2, 40, .5);
  opacity: 1
}

.sort-form select {
  background-image: url(/images/chevron-down.svg);
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
  font-weight: 500
}

.loadmore a {
  justify-content: center;
  width: 100%
}

.related-pages {
  padding: 64px 0;
  position: relative
}

.related-pages .heading {
  margin-bottom: 40px
}

.related-pages .heading .sub-title {
  color: #858997;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  text-transform: uppercase
}

.related-pages .heading h2 {
  color: #101428;
  margin-bottom: 0
}

.related-pages .heading h2 i {
  font-family: Galaxie Copernicus, Times New Roman, Georgia, times, serif;
  font-weight: 400
}

.related-pages .heading-block {
  color: #180228;
  font-size: 18px;
  line-height: 1.6;
  padding-bottom: 40px
}

.related-pages .heading-block h2 {
  color: #180228
}

.related-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px
}

.related-list.text-alt {
  color: #475467
}

.related-single {
  padding: 0 12px 16px;
  width: 100%
}

.related-single .related-wrap {
  display: flex;
  flex-wrap: wrap;
  height: 100%
}

.related-single .img-holder {
  border-radius: 8px;
  height: 264px;
  margin-bottom: 24px;
  overflow: hidden;
  width: 100%
}

.related-single .img-holder img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%
}

.related-single .icon-holder {
  align-items: center;
  background: rgba(122, 42, 181, .1);
  border: 1px solid rgba(129, 55, 193, .1);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 52px;
  justify-content: center;
  margin-bottom: 48px;
  width: 52px
}

.related-single .icon-holder.alt {
  background: rgba(255, 118, 36, .1);
  border-color: rgba(255, 118, 36, .1)
}

.related-single .text-holder {
  color: #475467;
  width: calc(100% - 52px)
}

.related-single .block {
  display: block;
  margin-bottom: 12px
}

.related-single .block a {
  color: #ff7624;
  -webkit-text-decoration: underline;
  text-decoration: underline
}

.related-single .block a:hover {
  -webkit-text-decoration: none;
  text-decoration: none
}

.related-single strong.block {
  color: #180228;
  font-weight: 400
}

.related-single h3,
.related-single h4 {
  color: #180228;
  margin-bottom: 12px
}

.related-single p {
  margin-bottom: 24px
}

.related-single p a {
  color: #ff7624;
  margin-right: 12px;
  -webkit-text-decoration: underline;
  text-decoration: underline
}

.related-single p a:hover {
  -webkit-text-decoration: none;
  text-decoration: none
}

.related-single p+h3,
.related-single p+h4 {
  border-top: 1px solid #858997;
  padding-top: 16px
}

.related-single .btn {
  justify-content: center;
  width: 100%
}

.location-form-section {
  margin: 0 0 9px;
  padding: 0 12px
}

.location-form-banner {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .2);
  border-radius: 16px;
  margin: 0 auto;
  max-width: 1408px;
  padding: 15px 3px;
  position: relative;
  z-index: 1
}

.location-form-banner .bubbles {
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1
}

.location-form-banner .bubbles img {
  height: 100%;
  max-height: none;
  max-width: none;
  width: auto
}

.location-form-banner .container {
  max-width: 1334px
}

.location-form-banner .text-wrap {
  margin: 0 0 16px
}

.location-form-banner .h2,
.location-form-banner h2 {
  color: #180228;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0
}

.location-form-bar .input-holder .col {
  margin: 0 0 12px
}

.location-form-bar .btn-holder .btn {
  margin: 0;
  padding: 14px 21px
}

.location-form-bar input[type=email],
.location-form-bar input[type=tel],
.location-form-bar input[type=text],
.location-form-bar textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .15);
  border-radius: 68px;
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  padding: 12px 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%
}

.location-form-bar input[type=email]::-moz-placeholder,
.location-form-bar input[type=tel]::-moz-placeholder,
.location-form-bar input[type=text]::-moz-placeholder,
.location-form-bar textarea::-moz-placeholder {
  color: rgba(24, 2, 40, .5);
  opacity: 1
}

.location-form-bar input[type=email]::placeholder,
.location-form-bar input[type=tel]::placeholder,
.location-form-bar input[type=text]::placeholder,
.location-form-bar textarea::placeholder {
  color: rgba(24, 2, 40, .5);
  opacity: 1
}

.location-form-bar textarea {
  border-radius: 24px;
  height: 120px;
  resize: none
}

.custom-select {
  width: 100%
}

.custom-select select {
  display: none
}

.custom-select .nice-select {
  align-items: center;
  border: 1px solid rgba(24, 2, 40, .15);
  border-radius: 68px;
  color: #180228;
  display: flex;
  float: none;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  line-height: 1.5;
  margin: 0;
  padding: 12px 36px 12px 16px;
  position: relative;
  transition: color .3s linear, border .3s linear;
  width: 100%
}

.custom-select .nice-select.open,
.custom-select .nice-select:focus {
  border-color: rgba(24, 2, 40, .15);
  z-index: 2
}

.custom-select .nice-select.open:before,
.custom-select .nice-select:focus:before {
  transform: translateY(-50%) rotate(-180deg)
}

.custom-select .nice-select:after {
  display: none
}

.custom-select .nice-select:before {
  background-image: url(/images/chevron-down.svg);
  background-repeat: no-repeat;
  content: "";
  height: 9px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .3s linear;
  width: 12px
}

.custom-select .nice-select .current {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%
}

.custom-select .nice-select .nice-select-dropdown {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .15);
  border-radius: 24px;
  box-shadow: none;
  left: 0;
  margin: 4px 0 0;
  overflow: hidden;
  overflow-y: auto;
  padding: 3px;
  right: 0;
  top: 100%;
  transition: all .3s linear;
  white-space: normal;
  z-index: 99
}

.custom-select .nice-select .nice-select-dropdown .nice-select-search-box {
  display: none !important
}

.custom-select .nice-select .nice-select-dropdown .list {
  border-radius: 0;
  margin: 0
}

.custom-select .nice-select .nice-select-dropdown .list .option {
  border-radius: 64px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 16px;
  transition: all .3s linear
}

.custom-select .nice-select .nice-select-dropdown .list .option:hover {
  background: #f2f3f5
}

.custom-select .nice-select .nice-select-dropdown .list .option.selected {
  background: #f2f3f5;
  font-weight: 400
}

.team-slider-holder {
  padding-bottom: 79px;
  position: relative
}

.team-slider .img-holder {
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  margin: 0 0 24px;
  overflow: hidden;
  padding-top: 98.4%;
  position: relative
}

.team-slider .img-holder img {
  height: 100%;
  left: 0;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%
}

.team-slider .department {
  color: #7a2ab5;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 12px;
  padding: 0 0 0 10px;
  position: relative;
  text-transform: uppercase
}

.team-slider .department:before {
  background: #7a2ab5;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 4px
}

.team-slider .name {
  color: #333b52;
  display: block;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0 0 8px
}

.team-slider .designation {
  color: rgba(24, 2, 40, .5);
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase
}

.team-slider .btn {
  font-family: Inter, Circular Std, Helvetica Neue, Arial, Noto Sans, sans-serif;
  padding: 10px 20px
}

.team-slider .swiper-button-next,
.team-slider .swiper-button-prev {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 50%;
  bottom: 0;
  cursor: pointer;
  display: flex;
  font-size: 0;
  height: 48px;
  justify-content: center;
  left: 50%;
  line-height: 0;
  margin: 0 0 0 5px;
  position: absolute;
  transition: border-color .35s cubic-bezier(.3, .86, .36, .95), background .35s cubic-bezier(.3, .86, .36, .95);
  width: 48px;
  z-index: 9
}

.team-slider .swiper-button-next:hover,
.team-slider .swiper-button-prev:hover {
  background: #fff;
  border-color: #180228
}

.team-slider .swiper-button-prev {
  margin: 0 0 0 -53px
}

.team-slider .swiper-button-prev img {
  transform: scaleX(-1)
}

.popup-holder {
  height: 0;
  overflow: hidden;
  position: relative
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  color: rgba(51, 59, 82, .6);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin: 55px 12px 30px;
  max-width: 100%;
  padding: 16px
}

.modal-content .is-close-button {
  display: none
}

.modal-content .modal-close {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 0;
  height: 48px;
  justify-content: center;
  line-height: 0;
  position: absolute;
  right: 0;
  top: -55px;
  transition: border-color .35s cubic-bezier(.3, .86, .36, .95), background .35s cubic-bezier(.3, .86, .36, .95);
  width: 48px;
  z-index: 9
}

.modal-content .modal-close:hover {
  background: #fff;
  border-color: #180228
}

.modal-content .img-col {
  margin: 0 0 24px
}

.modal-content .img {
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 10px;
  font-size: 0;
  line-height: 0;
  margin: 0 0 24px;
  overflow: hidden;
  padding-top: 91.76%;
  position: relative
}

.modal-content .img img {
  height: 100%;
  left: 0;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%
}

.modal-content p {
  margin-bottom: 22px
}

.modal-content .sub-title {
  color: rgba(24, 2, 40, .5);
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 8px;
  text-transform: uppercase
}

.modal-content .name {
  color: #101428;
  display: block;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 0 0 16px
}

.modal-content .text-info {
  border-bottom: 1px solid rgba(24, 2, 40, .2);
  border-top: 1px solid rgba(24, 2, 40, .2);
  margin: 0 0 16px;
  padding: 12px 0;
  text-transform: uppercase
}

.modal-content .text-info .title {
  color: rgba(24, 2, 40, .5);
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 8px
}

.modal-content .text-info ul>li {
  color: #7a2ab5;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  padding: 0 0 0 10px;
  position: relative;
  text-transform: uppercase
}

.modal-content .text-info ul>li:before {
  background: #7a2ab5;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 4px
}

.profile-info {
  background: rgba(24, 2, 40, .05);
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  padding: 12px
}

.profile-info .title {
  color: rgba(24, 2, 40, .5);
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase
}

.profile-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.profile-info ul>li {
  margin: 0
}

.profile-info ul>li a {
  border: 1px solid rgba(24, 2, 40, .2);
  border-radius: 50px;
  color: #180228;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  padding: 6px 16px;
  text-transform: uppercase;
  vertical-align: top
}

.profile-info ul>li a:hover {
  background: rgba(24, 2, 40, .2)
}

.location-section {
  padding: 24px 0 64px
}

.location-filter {
  margin: 0 0 24px;
  padding: 0 12px
}

.location-filter .wrap {
  margin: 0 auto;
  max-width: 1408px
}

.location-filter .wrap .bubbles {
  bottom: 0;
  display: none;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1
}

.location-filter .wrap .bubbles img {
  height: 100%;
  max-height: none;
  max-width: none;
  width: auto
}

.location-filter .filter-form .filter-block {
  margin: 0
}

.location-filter .filter-form .filter-block input[type=search],
.location-filter .filter-form .filter-block select {
  font-size: 14px;
  height: 44px
}

.location-filter .filter-form .filter-block .custom-select {
  width: 100%
}

.location-filter .filter-form .filter-block .custom-select .nice-select {
  font-size: 14px;
  height: 44px
}

.location-filter .filter-form .filter-block .btn-holder .btn {
  margin: 0;
  padding: 12px 20px
}

.location-map {
  padding: 0 12px
}

.location-map .wrap {
  margin: 0 auto;
  max-width: 1408px
}

.map-container {
  position: relative;
  z-index: 1
}

.map-container .map {
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  margin: 0 0 24px;
  overflow: hidden;
  padding-top: 104.845%;
  position: relative;
  z-index: 2
}
/*
.map-container .map1 iframe,
.map-container .map1 img {
  border: none;
  bottom: 0;
  height: 100%;
  left: 0;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  right: 0;
  top: 0;
  vertical-align: top;
  width: 100%;
  z-index: 1
}
*/
.map-container .loadmore-holder .btn {
  justify-content: center;
  width: 100%;
  border-radius: 12px;
}

.location-info-block {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  margin: 0 0 24px;
  overflow: hidden;
  padding: 0
}

.location-info-block .info-header {
  margin: 0;
  padding: 20px 15px
}

.location-info-block .info-header .h2,
.location-info-block .info-header h2 {
  color: #333b52;
  font-family: Galaxie Copernicus, Times New Roman, Georgia, times, serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 0
}

.location-info-block .info-header .h2 .count,
.location-info-block .info-header h2 .count {
  color: #180228;
  font-family: Circular Std, Helvetica Neue, Arial, Noto Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
  margin: 0 0 0 9px;
  opacity: .5;
  vertical-align: top
}

.location-info-block .info-content {
  padding: 6px 15px 1px;
}

.location-card-list>li {
  border: 1px solid rgba(24, 2, 40, .2);
  border-radius: 12px;
  color: #858997;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
  overflow: hidden;
  padding: 16px 16px 7px;
  scroll-margin: 20px 0;
}

.location-card-list>li.active{
  border-color: #7a2ab5;
  box-shadow: 0 0 0 0.2rem rgba(122, 42, 181, 0.25);
}

.location-card-list>li p {
  margin: 0 0 16px
}

.location-card-list .btn-holder .btn {
  font-weight: 500;
  margin: 0;
  padding: 9px 20px
}

.location-card-header {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 8px
}

.location-card-header h3 {
  color: #180228;
  flex-basis: 0;
  flex-grow: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0
}

.location-card-header .status {
  background: rgba(11, 182, 68, .1);
  border: 1px solid rgba(11, 182, 68, .2);
  border-radius: 8px;
  color: #0bb644;
  flex-shrink: 0;
  font-family: Inter, Circular Std, Helvetica Neue, Arial, Noto Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0 10px;
  padding: 4px 9px 5px
}

.location-card-header .status.closed {
  background: rgba(217, 45, 32, .1);
  border: 1px solid rgba(217, 45, 32, .2);
  color: #d92d20
}

.loaction-contact-detail {
  background: rgba(24, 2, 40, .02);
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  margin: 0 0 16px;
  padding: 0 10px
}

.loaction-contact-detail>li {
  padding: 11px 0;
  position: relative
}

.loaction-contact-detail>li+li:after {
  background: rgba(24, 2, 40, .1);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

.loaction-contact-detail .dt {
  color: rgba(24, 2, 40, .5);
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 5px;
  text-transform: uppercase
}

.loaction-contact-detail .dd {
  align-items: center;
  color: #180228;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4
}

.loaction-contact-detail .dd .icon {
  flex-shrink: 0;
  height: 20px;
  margin: 0 6px 0 0;
  width: 20px
}

.loaction-contact-detail .dd .icon img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: auto
}

.loaction-contact-detail .dd .text a {
  color: inherit
}

.loaction-contact-detail .dd .text a:hover {
  color: #7a2ab5
}

.single-location .back-holder {
  padding-bottom: 24px
}

.location-single-wrapper {
  background: #fff;
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 12px;
  color: #180228;
  padding: 32px 24px
}

.location-single-wrapper .heading-block {
  border-bottom: 1px solid rgba(24, 2, 40, .1);
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  padding-bottom: 24px
}

.location-single-wrapper .main-title {
  display: block;
  font-family: Galaxie Copernicus, Times New Roman, Georgia, times, serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 12px
}

.location-single-wrapper .status-holder {
  align-items: center;
  display: flex;
  flex-wrap: wrap
}

.location-single-wrapper .status-holder .sub-title {
  color: rgba(24, 2, 40, .5);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-right: 8px;
  text-transform: uppercase
}

.location-single-wrapper .status-holder .status {
  background: rgba(11, 182, 68, .1);
  border: 1px solid rgba(11, 182, 68, .2);
  border-radius: 8px;
  color: #0bb644;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  padding: 6px 12px
}

.location-single-wrapper .status.closed {
    background: rgba(217, 45, 32, .1);
    border: 1px solid rgba(217, 45, 32, .2);
    color: #d92d20;
}

.columns-holder {
  display: flex;
  flex-direction: column-reverse
}

.columns-holder .left-col .text-block {
  padding-top: 16px
}

.columns-holder .title {
  color: #180228;
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 3px
}

.columns-holder .map-holder {
  border-radius: 8px;
  height: 400px;
  margin-bottom: 24px;
  overflow: hidden;
  width: 100%
}

.columns-holder .map-holder iframe {
  display: block;
  height: 100%;
  width: 100%
}

.address-block .label {
  color: rgba(24, 2, 40, .5);
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 11px;
  text-transform: uppercase
}

.address-block .address {
  color: #180228;
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 22px;
  padding-left: 26px;
  position: relative
}

.address-block .address:before {
  background: url(/images/icon-pin.svg);
  background-size: 100% 100%;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px
}

.address-block .btn {
  justify-content: center;
  margin-bottom: 24px;
  width: 100%
}

.address-block .warning {
  align-items: center;
  background-color: #ffcbc9;
  background-image: url(/images/decor-form.svg);
  background-position: -50% 50%;
  background-repeat: no-repeat;
  border: 1px solid #ff8d88;
  border-radius: 8px;
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding: 12px
}

.address-block .warning .icon-holder {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 48px;
  justify-content: center;
  width: 48px
}

.address-block .warning .text-holder {
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.2
}

.address-block .warning .text-holder strong {
  color: #180228;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px
}

.address-block .warning .text-holder p:last-child {
  margin-bottom: 0
}

.color-box {
  background: rgba(24, 2, 40, .02);
  border: 1px solid rgba(24, 2, 40, .1);
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 12px
}

.color-box:has(.block) {
  display: flex
}

.color-box:has(.block) .label {
  margin-bottom: 5px
}

.color-box:has(.block) .block {
  width: 50%
}

.color-box:has(.block) .block+.block {
  border-left: 1px solid rgba(24, 2, 40, .1);
  padding-left: 12px
}

.color-box:has(.block) .fax,
.color-box:has(.block) .tel {
  color: #180228;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 26px;
  position: relative
}

.color-box:has(.block) .fax:hover,
.color-box:has(.block) .tel:hover {
  color: #7a2ab5
}

.color-box:has(.block) .fax:before,
.color-box:has(.block) .tel:before {
  background: url(/images/icon-phone.svg);
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px
}

.color-box:has(.block) .fax:before {
  background: url(/images/icon-mail.svg)
}

.color-box .c-box {
  border-bottom: 1px solid rgba(24, 2, 40, .1);
  margin-bottom: 16px;
  padding-bottom: 4px
}

.color-box .c-box:last-child {
  border-bottom: 0;
  margin-bottom: 0
}

.color-box .c-box strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4
}

.color-box dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0
}

.color-box dl dt {
  float: left;
  font-weight: 400
}

.color-box dl dd,
.color-box dl dt {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 8px;
  width: 50%
}

.color-box dl dd {
  font-weight: 500
}

.color-box dl dd span {
  color: rgba(24, 2, 40, .5);
  text-transform: uppercase
}

.labels {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.labels span {
  background: #180228;
  border: 1px solid rgba(24, 2, 40, .2);
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  padding: 6px 16px;
  text-transform: uppercase;
  transition: background .35s cubic-bezier(.3, .86, .36, .95)
}

.d-none {
  display: none;
}

.btn:has(+ p),
.btn:has(+ ul),
.btn:has(+ ol),
.btn:has(+ table),
.btn:has(+ div),
.btn:has(+ blockquote),
.btn:has(+ pre),
.btn:has(+ h1),
.btn:has(+ h2),
.btn:has(+ h3),
.btn:has(+ h4),
.btn:has(+ h5),
.btn:has(+ h6) {
  margin-bottom: 1.5em;
}

@media screen and (min-width:520px) {
  .profile-single .left-block .img-block {
    height: 300px
  }
}

@media screen and (min-width:768px) {
  .home-banner .wrap {
    min-height: 642px;
    padding: 48px 0 25px
  }

  .inner-banner.search-page .wrap {
    height: 400px
  }

  .inner-banner .wrap {
    min-height: 320px;
    padding: 48px 0
  }

  .link-single {
    width: 50%
  }

  .link-single .links-wrap {
    align-items: flex-start;
    flex-direction: column
  }

  .link-single .text-holder {
    flex-grow: 1;
    margin-bottom: 24px;
    padding-left: 0;
    width: 100%
  }

  .link-single .btn {
    flex-shrink: 0;
    width: auto
  }

  .feature-block {
    margin-bottom: 40px;
    padding: 24px
  }

  .feature-block .link-single {
    width: 50%
  }

  .latest-updates .heading .left {
    margin-bottom: 0
  }

  .latest-updates .heading .right {
    width: auto
  }

  .news-single {
    padding-bottom: 24px;
    width: 50%
  }

  .news-single.featured {
    width: 100%
  }

  .news-single.featured .img-holder {
    height: 350px;
    width: 100%
  }

  .content-area .top-block {
    align-items: flex-start;
    flex-direction: row
  }

  .content-area .top-block .text-block {
    flex-grow: 1;
    padding-right: 48px
  }

  .content-area .top-block .text-block:only-child {
    padding-right: 0
  }

  .content-area .card {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 270px
  }

  .content-blocks .row {
    gap: 15px;
    flex-direction: row
  }

  .content-blocks .row .list-check {
    flex-grow: 1
  }

  .content-blocks .row .img-holder {
    flex-shrink: 0
  }

  .content-blocks .img-block img {
    width: 100%
  }

  .table-holder {
    overflow: hidden
  }

  .scroll {
    display: none
  }

  .text-image {
    display: flex
  }

  .text-image .text-block {
    flex-grow: 1;
    margin-bottom: 0;
    padding-right: 24px
  }

  .text-image .img-diag {
    flex-shrink: 0;
    width: 312px
  }

  .contact-form .row .col {
    padding: 0 8px 16px;
    width: 50%
  }

  .btn-navigation {
    justify-content: space-between
  }

  .btn-navigation .btn {
    width: auto
  }

  .related-single {
    width: 50%
  }

  .related-single .related-wrap {
    align-items: flex-start;
    flex-direction: column
  }

  .related-single .text-holder {
    flex-grow: 1;
    padding-left: 0;
    width: 100%
  }

  .related-single .btn {
    flex-shrink: 0;
    width: auto
  }
}

@media (min-width:768px) {
  .inner-banner h1 {
    font-size: 56px
  }

  .quick-links.team-list .heading {
    padding-right: 120px
  }

  .heading h2 {
    font-size: 40px
  }

  .marquee__item .logo-holder {
    height: 80px;
    width: 210px
  }

  .logo-list {
    margin: 0 -10px
  }

  .logo-list>li {
    margin: 0 0 20px;
    padding: 0 10px;
    width: 33.33%
  }

  .logo-list .logo-holder {
    height: 80px;
    padding: 10px 20px
  }

  .buttons {
    display: flex;
    gap: 8px
  }

  .content-blocks .img img {
    max-width: 100%;
    width: auto
  }

  .desktop-img {
    display: inline-block
  }

  .mobile-img {
    display: none
  }

  .contact-form .row {
    display: flex;
    margin: 0 -8px
  }

  .location-form-banner {
    padding: 15px 0
  }

  .location-form-banner .h2,
  .location-form-banner h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6
  }

  .location-form-bar,
  .location-form-bar .input-holder {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px
  }

  .location-form-bar .input-holder {
    flex-basis: 0;
    flex-grow: 1
  }

  .location-form-bar .input-holder .col {
    flex: 1;
    margin: 0
  }

  .location-form-bar .btn-holder {
    flex-shrink: 0
  }

  .team-slider-holder {
    padding: 0
  }

  .team-slider {
    overflow: hidden
  }

  .team-slider .swiper-button-next,
  .team-slider .swiper-button-prev {
    bottom: auto;
    left: auto;
    margin: 0;
    right: 0;
    top: -79px
  }

  .team-slider .swiper-button-prev {
    left: auto;
    margin: 0;
    right: 55px
  }

  .modal-content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px
  }

  .modal-content .img-col {
    flex-shrink: 0;
    margin: 0 24px 0 0;
    width: 42.7%
  }

  .modal-content .img {
    border-radius: 16px
  }

  .modal-content .text-col {
    flex-basis: 0;
    flex-grow: 1
  }

  .modal-content .name {
    font-size: 40px
  }

  .map-container .map {
    padding-top: 60.938%
  }

  .location-info-block .info-header {
    padding: 20px 24px
  }

  .location-info-block .info-content {
    padding: 6px 24px 1px
  }

  .location-card-list>li {
    padding: 16px
  }

  .location-card-list .btn-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
  }

  .loaction-contact-detail {
    display: flex;
    flex-wrap: wrap;
    padding: 12px 0 10px
  }

  .loaction-contact-detail>li {
    padding: 0 12px;
    width: 50%
  }

  .loaction-contact-detail>li:nth-child(2n):before {
    background: rgba(24, 2, 40, .1);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 1px
  }

  .loaction-contact-detail>li+li:after {
    display: none
  }
}

@media screen and (min-width:1024px) {
  .form-area.w-50 {
    width: calc(50% - .75rem)
  }

  .content-area .card .number,
  .h1,
  h1 {
    font-size: 56px
  }

  .h2,
  h2 {
    font-size: 40px
  }

  .content-area .card .meta,
  .faqs-block h2,
  .h3,
  .h4,
  .terms-content .section h3:before,
  .terms-content .section h4:before,
  h3,
  h4 {
    font-size: 24px
  }

  .header .container {
    padding: 16px 16px 0
  }

  .header .logo {
    left: 16px;
    position: absolute;
    top: 16px;
    width: auto;
    z-index: 1;
  }

  .nav-drop {
    left: auto;
    opacity: 1;
    position: relative;
    right: auto;
    top: auto;
    visibility: visible
  }

  .nav-opener {
    display: none
  }

  .nav-drop .holder {
    background: transparent;
    border-top: 0;
    flex-direction: column
  }

  .nav-drop .top {
    border-bottom: 1px solid rgba(24, 2, 40, .1);
    padding: 8px 0 20px
  }

  .nav-drop .right {
    justify-content: flex-end;
    margin-top: -8px;
    padding-left: 300px
  }

  .nav-drop .right .search-holder {
    flex-grow: 0;
    overflow: hidden;
    padding-right: 0;
    position: relative
  }

  .nav-drop .right .search-holder.search-active {
    width: 302px
  }

  .nav-drop .right .search-holder.search-active .drop {
    right: 0;
    width: 302px
  }

  .nav-drop .right .print {
    margin-left: 8px
  }

  .nav-drop .btn-holder {
    padding: 0
  }

  .nav-drop .search-opener {
    align-items: center;
    border: 1px solid rgba(24, 2, 40, .1);
    border-radius: 50%;
    display: flex;
    height: 44px;
    justify-content: center;
    width: 44px
  }

  .nav-drop .drop {
    bottom: 0;
    position: absolute;
    right: -302px;
    top: 0;
    transition: right .35s cubic-bezier(.3, .86, .36, .95)
  }

  .nav-drop .search-form {
    width: 302px
  }

  .nav-drop .search-form input[type=search] {
    background: #f4f4f4;
    padding-bottom: 8px;
    padding-top: 8px
  }

  .nav-drop .bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 8px 0
  }

  .nav {
    margin-bottom: 0
  }

  .nav>ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    row-gap: 16px
  }

  .nav>ul>li {
    margin-bottom: 0;
    padding: 0 8px
  }

  .nav>ul>li:hover a.nav-link,
  .nav>ul>li:hover>a {
    background: rgba(122, 42, 181, .1);
    color: #7a2ab5
  }

  .nav>ul>li:hover .slide {
    opacity: 1;
    visibility: visible
  }

  .nav>ul>li a.nav-link,
  .nav>ul>li>a {
    border-radius: 8px;
    padding: 4px 8px
  }

  .nav>ul>li a.nav-link:hover:after,
  .nav>ul>li>a.opener:hover:after {
    opacity: 1
  }

  .nav>ul>li a.nav-link:before,
  .nav>ul>li>a.opener:before {
    content: none
  }

  .nav>ul>li a.nav-link {
    flex: 1;
  }

  .nav>ul>li a.nav-link.has-link.has-submenu {
    text-decoration: none;
  }

  .nav>ul>li:hover .nav-item-wrapper:after {
    opacity: 1
  }

  .nav>ul>li button.opener {
    display: none
  }

  .nav>ul>li .slide {
    display: flex;
    flex-wrap: wrap;
    left: 0;
    opacity: 0;
    padding: 32px 32px 20px;
    position: absolute;
    right: 0;
    top: 100%;
    visibility: hidden
  }

  .nav>ul>li .slide:before {
    content: "";
    height: 30px;
    left: 0;
    position: absolute;
    right: 0;
    top: -30px
  }

  .nav>ul>li .col {
    padding: 0 12px;
    width: 33.33%
  }

  .nav>ul>li .open-close {
    margin-bottom: 32px
  }

  .nav>ul>li a.oc-opener:before {
    content: none
  }

  .nav>ul>li .oc-link {
    flex: 1;
  }

  .nav>ul>li button.oc-opener {
    display: none
  }
  .container {
    padding: 0 16px
  }

  .footer {
    background-image: url(/images/footer-decor.svg);
    background-position: 100% 0;
    background-repeat: no-repeat;
    padding-top: 120px
  }

  .footer .footer-logo {
    margin-bottom: 26px
  }

  .footer-top {
    font-size: 16px;
    line-height: 1.6
  }

  .footer-top .left {
    margin-bottom: 0;
    padding-right: 100px;
    width: 40%
  }

  .footer-top .right {
    width: 60%
  }

  .footer-top .social {
    display: none
  }

  .footer-nav {
    padding-bottom: 56px;
    width: 33.33%
  }

  .footer-bottom {
    margin-top: 0;
    text-align: left
  }

  .footer-bottom .left {
    max-width: 60%;
    width: auto
  }

  .footer-bottom .social {
    display: flex;
    max-width: 40%
  }

  .notification-block {
    padding: 8px 0 0;
    position: relative
  }

  .notification-block .container {
    padding: 16px
  }

  .noti-popup {
    background-image: url(/images/noti-vector.svg);
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding: 12px 60px 12px 24px
  }

  .noti-popup .close {
    right: 24px
  }

  .noti-popup .icon-holder {
    height: 48px;
    width: 48px
  }

  .noti-popup .text-holder {
    align-items: center;
    display: flex;
    flex-direction: row;
    font-size: 14px;
    justify-content: space-between;
    padding-left: 24px
  }

  .noti-popup .text-block {
    flex-grow: 1;
    padding-right: 50px
  }

  .noti-popup .title {
    margin-bottom: 8px
  }

  .noti-popup .meta {
    flex-shrink: 0
  }

  .noti-popup .meta .btn {
    display: inline-flex
  }

  .home-slider .swiper-button-next,
  .home-slider .swiper-button-prev {
    bottom: 57px;
    right: 78px
  }

  .home-slider .swiper-button-prev {
    right: 134px
  }

  .home-banner {
    margin-bottom: 8px;
    padding: 0 16px
  }

  .home-banner .wrap {
    min-height: 642px;
    padding: 48px 0
  }

  .home-banner .container {
    padding: 0 12px
  }

  .home-banner .text-holder {
    font-size: 18px;
    line-height: 1.6;
    padding-right: 200px;
    width: 76%
  }

  .inner-banner {
    margin-bottom: 8px;
    padding: 0 16px
  }

  .inner-banner .container {
    padding: 0 12px
  }

  .search-form {
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 32px
  }

  .search-form input[type=search] {
    margin-bottom: 0
  }

  .search-form .btn {
    flex-shrink: 0;
    width: 117px
  }

  .quick-links {
    padding: 94px 0 82px
  }

  .quick-links.contact-details,
  .quick-links.with-image {
    padding-bottom: 64px
  }

  .quick-links.team-list {
    padding: 97px 0
  }

  .quick-links.contact-details {
    padding: 1px 0 31px
  }

  .quick-links .heading {
    margin-bottom: 40px
  }

  .quick-links .heading-block {
    padding-bottom: 40px
  }

  .links-list.two-cols .link-single {
    width: 50%
  }

  .link-single {
    width: 33.33%
  }

  .link-single .img-holder {
    margin-bottom: 32px
  }

  .link-single .icon-holder {
    margin-bottom: 48px
  }

  .latest-updates {
    padding: 94px 0 48px
  }

  .latest-updates .heading {
    margin-bottom: 32px
  }

  .news-single {
    width: 25%
  }

  .news-single.featured {
    width: 50%
  }

  .marquee-section {
    display: block;
    padding: 80px 0 138px
  }

  .logo-block {
    padding: 96px 0 88px
  }

  .breadcrumbs,
  .breadcrumbs-block {
    display: block
  }

  .content-block .container {
    flex-direction: row
  }

  .content-area {
    flex-grow: 1;
    padding-right: 24px
  }

  .content-area:only-child {
    padding-right: 0
  }

  .sidebar {
    flex-shrink: 0;
    width: 303px
  }

  .faqs-section {
    padding: 64px 0
  }

  .faqs-accordion .opener {
    padding-bottom: 24px
  }

  .blockquote-holder {
    padding-bottom: 46px;
    padding-top: 24px
  }

  .blockquote-holder blockquote {
    align-items: flex-end;
    display: flex;
    flex-direction: row-reverse
  }

  .blockquote-holder blockquote q {
    border-bottom: 0;
    border-left: 1px solid rgba(24, 2, 40, .1);
    flex-grow: 1;
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 0;
    margin-left: 32px;
    padding-bottom: 0;
    padding-left: 32px
  }

  .blockquote-holder blockquote cite {
    flex-direction: column;
    flex-shrink: 0;
    width: 218px
  }

  .blockquote-holder blockquote .author {
    margin-bottom: 16px;
    width: 64px
  }

  .blockquote-holder blockquote .details {
    padding-left: 0
  }

  .terms-section {
    padding: 64px 0
  }

  .terms-section .container {
    align-items: flex-start;
    flex-direction: row-reverse
  }

  .table-of-content {
    flex-shrink: 0;
    margin-bottom: 10px;
    position: sticky;
    width: 303px
  }

  .terms-content {
    flex-grow: 1;
    padding-right: 24px
  }

  .contact-block {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
  }

  .contact-block .left,
  .contact-block .right {
    width: calc(50% - 16px)
  }

  .contact-block .right {
    align-items: flex-end;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    padding: 8px;
    position: relative;
    z-index: 1
  }

  .contact-block .right .bg {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
  }

  .contact-block .right .bg img {
    height: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    width: 100%
  }

  .pathology-list,
  .result-list {
    padding: 64px 0 0
  }

  .filter-block {
    margin-bottom: 21px
  }

  .filter-block .filter-area {
    display: flex;
    gap: 12px;
    width: 100%
  }

  .filter-block .col {
    margin-bottom: 0
  }

  .filter-block .search {
    flex-grow: 1
  }

  .filter-block .custom-select {
    flex-shrink: 0;
    width: 150px
  }

  .filter-block .btn {
    flex-shrink: 0;
    width: 117px
  }

  .filter-by-letter {
    align-items: center;
    flex-wrap: nowrap
  }

  .filter-by-letter .title {
    margin-bottom: 0
  }

  .filter-results {
    padding-top: 6px
  }

  .result-single {
    align-items: stretch;
    flex-direction: row;
    gap: 8px;
    padding: 12px;
    position: relative
  }

  .result-single:hover {
    border-color: #ff7624
  }

  .result-single:hover .name {
    color: #ff7624
  }

  .result-single .mobile-hidden {
    display: block
  }

  .result-single .img-holder {
    flex-shrink: 0
  }

  .result-single .img-holder img {
    margin-bottom: 0
  }

  .result-single .img-holder .dept {
    display: none
  }

  .result-single .details {
    flex-grow: 1;
    padding-left: 8px;
    text-align: left
  }

  .container:has(aside.sidebar) .result-single .details {
    flex-grow: 0;
    flex-shrink: 1;
    width: 180px;
    min-width: 150px
  }

  .result-single .location {
    background: rgba(24, 2, 40, .02);
    border: 1px solid rgba(24, 2, 40, .1);
    border-radius: 8px;
    flex-shrink: 0;
    margin-bottom: 0;
    padding: 12px;
    width: 130px
  }
  
  .result-single .contact {
    position: relative;
    z-index: 3
  }

  .result-single .title {
    color: #858997;
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
    text-transform: uppercase
  }

  .result-single .dept {
    font-size: 14px
  }

  .result-single .btn:not(.article-btn) {
    border-radius: 12px;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
  }

  .result-single .btn:not(.article-btn):hover {
    background-color: transparent
  }

  .result-single .btn:not(.article-btn) .icon,
  .result-single .btn:not(.article-btn) .text {
    display: none
  }

  .result-single .icon-holder {
    flex-shrink: 0;
    margin-bottom: 0
  }

  .result-single .description-text {
    flex-grow: 1;
    padding-left: 8px;
    padding-right: 8px;
    text-align: left
  }

  .result-single .description-text .title {
    margin-bottom: 8px
  }

  .result-single .description-text p {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -webkit-line-clamp: var(--lines, 2);
    overflow: hidden
  }

  .result-single .article-btn {
    align-self: center;
    flex-shrink: 0;
    width: auto
  }

  .profile-block {
    padding: 64px 0
  }

  .profile-single {
    border-radius: 16px;
    display: flex;
    margin-bottom: 56px;
    padding: 32px
  }

  .profile-single .left-block {
    flex-shrink: 0;
    width: 300px
  }

  .profile-single .left-block .details {
    display: none
  }

  .profile-single .left-block .img-block {
    max-width: none
  }

  .profile-single .left-block .img-block img {
    height: auto
  }

  .profile-single .right-block {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 24px
  }

  .profile-single .right-block .details {
    display: block;
    width: 100%
  }

  .profile-single .area-of-interest,
  .profile-single .department,
  .profile-single .speciality {
    width: calc(50% - 8px)
  }

  .profile-single .area-of-interest {
    width: 100%
  }

  .sort-form .sort-block {
    display: flex;
    justify-content: space-between
  }

  .sort-form .radio-holder {
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px
  }

  .sort-form .radio-holder .title {
    flex-shrink: 0;
    margin-bottom: 0;
    width: auto
  }

  .sort-form .radio-list {
    width: auto
  }

  .sort-form .radio-list label {
    padding: 7px 16px
  }

  .sort-form .custom-select {
    flex-shrink: 0;
    width: 150px
  }

  .related-pages {
    padding: 94px 0
  }

  .related-single {
    width: 33.33%
  }

  .location-section {
    padding-top: 0
  }

  .location-filter .wrap .bubbles {
    display: block
  }

  .location-filter .filter-form .filter-block .custom-select {
    flex-shrink: 0;
    width: 170px
  }

/*  .single-location {
    padding-top: 32px
  }*/

  .location-single-wrapper .heading-block {
    flex-direction: row;
    justify-content: space-between
  }

  .columns-holder {
    flex-direction: row
  }

  .columns-holder .left-col {
    flex-shrink: 0;
    width: 380px
  }

  .columns-holder .left-col .text-block {
    display: none
  }

  .columns-holder .right-col {
    flex-grow: 1;
    padding-left: 24px
  }
}

@media screen and (min-width:1024px)and (min-width:1024px) {
  .nav>ul>li:hover>.nav-item-wrapper>a.nav-link:after,
  .nav>ul>li:hover>a:after {
    opacity: 1
  }
}

@media (min-width:1024px) {
  .logo-list>li {
    width: 20%
  }

  .content-block {
    padding: 64px 0
  }

  .content-blocks>li {
    margin-bottom: 16px
  }

  .location-form-section {
    margin: 0 0 16px;
    padding: 0 16px
  }

  .location-form-banner .container {
    align-items: center;
    display: flex;
    flex-wrap: wrap
  }

  .location-form-banner .text-wrap {
    flex-basis: 0;
    flex-grow: 1;
    margin: 0;
    padding: 2px 0 0
  }

  .location-form-bar {
    flex-shrink: 0;
    margin: 0 0 0 20px;
    width: 710px
  }

  .modal-content {
    margin: 0 auto;
    max-width: 1284px;
    overflow: hidden;
    padding: 32px
  }

  .modal-content .modal-close {
    right: 16px;
    top: 16px
  }

  .location-filter {
    margin: 0 0 32px;
    padding: 0 16px
  }

  .location-map {
    padding: 0 16px
  }

  .map-container {
    border: 1px solid rgba(24, 2, 40, .1);
    border-radius: 12px;
    overflow: hidden;
    padding-top: 60.938%;
    transform: translateZ(0)
  }

  .map-container .map {
    border: none;
    border-radius: 0;
    height: 100%;
    left: 0;
    margin: 0;
    padding-top: 0;
    position: absolute;
    top: 0;
    width: 100%
  }

  .map-container .map:before {
    background: linear-gradient(90deg, #180228 0, rgba(24, 2, 40, 0));
    bottom: 0;
    content: "";
    left: 0;
    opacity: .3;
    position: absolute;
    top: 0;
    width: 400px;
    z-index: 3
  }

  .location-info-block {
    bottom: 16px;
    display: flex;
    flex-direction: column;
    left: 16px;
    margin: 0;
    position: absolute;
    top: 16px;
    width: 400px;
    will-change: transform;
    z-index: 999
  }

  .location-info-block .info-header {
    flex-shrink: 0;
    padding: 15px
  }

  .location-info-block .info-header .h2,
  .location-info-block .info-header h2 {
    font-size: 40px
  }

  .location-info-block .info-header .h2 .count,
  .location-info-block .info-header h2 .count {
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 0 5px
  }

  .location-info-block .info-content {
    flex-grow: 1;
    overflow: hidden;
    overflow-y: auto;
    padding: 6px 15px 15px
  }

  .location-card-list>li {
    padding: 12px
  }
}

@media screen and (min-width:1200px) {
  .home-banner .text-holder p {
    margin-right: 60px
  }
}

@media (min-width:1200px) {
  .location-form-bar {
    width: 819px
  }

  .location-info-block {
    width: 430px
  }

  .location-info-block .info-header {
    padding: 20px 24px 20px 22px
  }

  .location-info-block .info-content {
    padding: 6px 24px 20px 22px
  }

  .location-card-list>li {
    padding: 16px
  }
}

@media screen and (min-width:1400px) {
  .footer-top .left {
    padding-right: 189px;
    width: 50%
  }

  .footer-top .right {
    width: 50%
  }

  .home-slider .swiper-button-next,
  .home-slider .swiper-button-prev {
    right: calc(50% - 641px)
  }

  .home-slider .swiper-button-prev {
    right: calc(50% - 586px)
  }

  .links-list.three-cols .link-single {
    padding-bottom: 32px;
    width: 33.33%
  }

  .links-list.two-cols .link-single {
    width: 50%
  }

  .link-single {
    width: 25%
  }

  .filter-block .custom-select {
    width: 200px
  }

  .result-single {
    padding: 24px
  }

  .result-single .details {
    padding-left: 12px
  }

  .result-single .department,
  .result-single .location,
  .result-single .speciality {
    width: 182px
  }

  .container:has(aside.sidebar) .result-single .department,
  .container:has(aside.sidebar) .result-single .location,
  .container:has(aside.sidebar) .result-single .speciality {
    width: 130px
  }

  .result-single .description-text {
    padding-left: 24px;
    padding-right: 10px
  }

  .location-filter .filter-form .filter-block .custom-select,
  .sort-form .custom-select {
    width: 200px
  }
}

@media (min-width:1400px) {
  .location-info-block {
    width: 458px
  }
}

@media (max-width:767px) {

  .navigation .page-numbers,
  .navigation-comments .page-numbers {
    padding: 0 3px
  }

  .navigation .next,
  .navigation .prev,
  .navigation-comments .next,
  .navigation-comments .prev,
  .navigation-single .next a,
  .navigation-single .prev a {
    padding: 4px
  }

  .buttons .btn {
    justify-content: center;
    margin: 0 0 8px;
    width: 100%
  }

  .content-blocks .oc-slide .btn {
    width: 100%
  }

  .content-blocks .row .img-holder {
    margin: 0 auto;
    /*max-width: 193px*/
  }

  .content-blocks .row .img-holder img {
    height: auto;
    max-width: 100%
  }

  .contact-form .btn {
    justify-content: center;
    width: 100%
  }

  .location-form-bar .btn-holder .btn {
    display: flex;
    justify-content: center;
    margin: 0;
    width: 100%
  }

  .location-filter .filter-form .filter-block {
    background-image: none;
    padding: 15px
  }

  .location-card-list .btn-holder .btn {
    justify-content: center;
    margin: 0 0 8px;
    width: 100%
  }
}

@media (max-width:1023px) {
  iframe {
    width: 100%
  }

  .columns-holder .right-col .text-holder {
    display: none
  }
}

/* Only apply on contact page */
.contact-details p:has(> a:only-child) {
  margin-bottom: 12px;
  /* whatever block styling you want */
}

/* Autocomplete Dropdown Styles */
.location-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    display: none; /* Hidden by default */
}

.location-autocomplete-dropdown.show {
    display: block;
}

.location-autocomplete-item {
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

.location-autocomplete-item:last-child {
    border-bottom: none;
}

.location-autocomplete-item:hover,
.location-autocomplete-item.active {
    background-color: #f8f9fa;
    color: #007bff;
}

.location-autocomplete-item:focus {
    outline: none;
    background-color: #e3f2fd;
}

/* Scrollbar styling for dropdown */
.location-autocomplete-dropdown::-webkit-scrollbar {
    width: 6px;
}

.location-autocomplete-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.location-autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.location-autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Empty state */
.location-autocomplete-dropdown.empty {
    padding: 12px 16px;
    color: #666;
    font-style: italic;
}

/* Base col behavior */
.row > [class*="col-"] {
  flex: 0 0 auto;
}

/* 12-column system */
.col-1  { flex-basis: calc(100% / 12 * 1);  max-width: calc(100% / 12 * 1); }
.col-2  { flex-basis: calc(100% / 12 * 2);  max-width: calc(100% / 12 * 2); }
.col-3  { flex-basis: calc(100% / 12 * 3);  max-width: calc(100% / 12 * 3); }
.col-4  { flex-basis: calc(100% / 12 * 4);  max-width: calc(100% / 12 * 4); }
.col-5  { flex-basis: calc(100% / 12 * 5);  max-width: calc(100% / 12 * 5); }
.col-6  { flex-basis: calc(100% / 12 * 6);  max-width: calc(100% / 12 * 6); }
.col-7  { flex-basis: calc(100% / 12 * 7);  max-width: calc(100% / 12 * 7); }
.col-8  { flex-basis: calc(100% / 12 * 8);  max-width: calc(100% / 12 * 8); }
.col-9  { flex-basis: calc(100% / 12 * 9);  max-width: calc(100% / 12 * 9); }
.col-10 { flex-basis: calc(100% / 12 * 10); max-width: calc(100% / 12 * 10); }
.col-11 { flex-basis: calc(100% / 12 * 11); max-width: calc(100% / 12 * 11); }
.col-12 { flex-basis: 100%;                max-width: 100%; }

/* Mobile: stack all cols */
@media (max-width: 767px) {
  .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* ============================================
   Share Location Link
   ============================================ */
.share-location-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #6B2C91;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 0;
  margin-top: 8px;
  width: 100%;
  transition: color 0.2s ease;
  margin: 12px 0;
  padding: 0;
}

.share-location-link:hover,
.share-location-link:focus {
  color: #5a2579;
  text-decoration: underline;
}

.share-location-link:focus {
  outline: 2px solid #6B2C91;
  outline-offset: 2px;
}

.share-location-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Copied state */
.share-location-link.copied {
  color: #28a745;
}

.share-location-link.copied:hover {
  text-decoration: none;
}

.article-author-date {
  margin: 0 0 1.5em;
  color: #180228;
  font-size: 16px;
}

.article-author-block {
  padding: 16px 0 0;
}

.article-author-block h3 a {
  color: #180228;
  text-decoration: none;
}

.article-author-block h3 a:hover {
  text-decoration: underline;
}

.article-author-block .profile-single {
  margin-bottom: 24px;
}


p.heading {
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  color: #180228;
}