@charset "UTF-8";
.carousel {
  position: relative;
  box-sizing: border-box;
}
.carousel *,
.carousel :after,
.carousel :before {
  box-sizing: inherit;
}
.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}
.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}
.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}
.carousel__track {
  display: flex;
}
.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}
.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  user-select: none;
}
.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.carousel__dots .carousel__dot:after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}
.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}
.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s;
}
.carousel__button.is-next,
.carousel__button.is-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel__button.is-prev {
  left: 10px;
}
.carousel__button.is-next {
  right: 10px;
}
.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}
.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}
html.with-fancybox {
  scroll-behavior: auto;
}
body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}
.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0)
    env(safe-area-inset-left, 0);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  outline: 0;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}
.fancybox__container *,
.fancybox__container ::after,
.fancybox__container ::before {
  box-sizing: inherit;
}
.fancybox__container :focus {
  outline: 0;
}
body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}
.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}
.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}
.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}
.fancybox__track {
  display: flex;
  height: 100%;
}
.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}
.fancybox__slide::after,
.fancybox__slide::before {
  content: '';
  flex: 0 0 0;
  margin: auto;
}
@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0) 0 env(safe-area-inset-left, 0);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
  box-shadow: none;
  outline: 0 !important;
}
.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}
.is-loading .fancybox__caption {
  visibility: hidden;
}
.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}
.fancybox__nav .carousel__button {
  z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
  right: 8px;
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}
.fancybox__no-click,
.fancybox__no-click button {
  pointer-events: none;
}
.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}
.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}
.fancybox__spinner svg {
  animation: 2s linear infinite fancybox-rotate;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: 1.5s ease-in-out infinite fancybox-dash;
  stroke-linecap: round;
  stroke: currentColor;
}
@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.carousel__button.is-close,
.carousel__dots,
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav {
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden='false'] .carousel__button.is-close,
.fancybox__container.is-animated[aria-hidden='false'] .carousel__dots,
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__nav {
  animation: 0.15s backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .carousel__button.is-close,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav {
  animation: 0.15s both fancybox-fadeOut;
}
.fancybox-fadeIn {
  animation: 0.15s both fancybox-fadeIn;
}
.fancybox-fadeOut {
  animation: 0.1s both fancybox-fadeOut;
}
.fancybox-zoomInUp {
  animation: 0.2s both fancybox-zoomInUp;
}
.fancybox-zoomOutDown {
  animation: 0.15s both fancybox-zoomOutDown;
}
.fancybox-throwOutUp {
  animation: 0.15s both fancybox-throwOutUp;
}
.fancybox-throwOutDown {
  animation: 0.15s both fancybox-throwOutDown;
}
@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}
.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__image {
  transform-origin: 0 0;
  user-select: none;
  transition: none;
}
.has-image .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
}
.is-closing .has-image .fancybox__content {
  overflow: visible;
}
.has-image[data-image-fit='contain'] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit='contain'] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}
.has-image[data-image-fit='contain'] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.has-image[data-image-fit='contain-w'] {
  overflow-x: hidden;
  overflow-y: auto;
}
.has-image[data-image-fit='contain-w'] .fancybox__content {
  min-height: auto;
}
.has-image[data-image-fit='contain-w'] .fancybox__image {
  max-width: 100%;
  height: auto;
}
.has-image[data-image-fit='cover'] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit='cover'] .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-image[data-image-fit='cover'] .fancybox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}
.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}
.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0 3px;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}
.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}
.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  user-select: none;
}
.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(
    to top,
    hsla(0deg, 0%, 0%, 0) 0,
    hsla(0deg, 0%, 0%, 0.006) 8.1%,
    hsla(0deg, 0%, 0%, 0.021) 15.5%,
    hsla(0deg, 0%, 0%, 0.046) 22.5%,
    hsla(0deg, 0%, 0%, 0.077) 29%,
    hsla(0deg, 0%, 0%, 0.114) 35.3%,
    hsla(0deg, 0%, 0%, 0.155) 41.2%,
    hsla(0deg, 0%, 0%, 0.198) 47.1%,
    hsla(0deg, 0%, 0%, 0.242) 52.9%,
    hsla(0deg, 0%, 0%, 0.285) 58.8%,
    hsla(0deg, 0%, 0%, 0.326) 64.7%,
    hsla(0deg, 0%, 0%, 0.363) 71%,
    hsla(0deg, 0%, 0%, 0.394) 77.5%,
    hsla(0deg, 0%, 0%, 0.419) 84.5%,
    hsla(0deg, 0%, 0%, 0.434) 91.9%,
    hsla(0deg, 0%, 0%, 0.44) 100%
  );
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}
@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}
.fancybox__toolbar__items {
  display: flex;
}
.fancybox__toolbar__items--left {
  margin-right: auto;
}
.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
  margin-left: auto;
}
@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}
.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  user-select: none;
}
.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}
.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}
.fancybox__button--slideshow g:nth-child(2),
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}
@font-face {
  font-family: swiper-icons;
  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');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  --background-color: #fff;
  --transition: all 0.2s ease;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
  overflow: hidden;
}
.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 {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.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-inline-start: 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-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.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 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: 1s linear infinite swiper-preloader-spin;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
*,
::after,
::before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body,
html {
  scroll-behavior: smooth;
}
.site {
  padding-top: 215px;
}
@media screen and (max-width: 992px) {
  .site {
    padding-top: 80px;
  }
}
@media screen and (max-width: 800px) {
  .site {
    padding-top: 65px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  line-height: 1;
}
section {
  width: 100%;
}
.section_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 10px;
}
@media screen and (max-width: 576px) {
  .section_title {
    padding-bottom: 16px;
  }
}
.section_title div.h1,
.section_title div.h2,
.section_title div.h3,
.section_title h1,
.section_title h2,
.section_title h3 {
  font-size: clamp(28px, 5vw, 45px);
  line-height: 1;
  letter-spacing: 0.75px;
  color: #333;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Bebas Neue';
}
.section_title-mb0 {
  padding-bottom: 0;
}
.seo-text {
  padding-top: 60px;
  background: #fff;
}
.seo-text--np {
  padding-top: 0;
}
.seo-text_description p {
  line-height: 1.4;
}
.popup-call {
  border-radius: 8px;
  background: #fff;
}
.popup-content {
  width: clamp(300px, 80vw, 550px);
  margin: 0 auto;
}
.popup_title {
  font-weight: 600;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 48px;
  text-align: center;
  letter-spacing: 0.67px;
  margin-bottom: 20px;
  color: #333;
}
.popup_form .wpcf7 {
  margin-bottom: 20px;
}
.popup_form form p {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 10px;
}
.popup_form form br {
  display: none;
}
.popup_form form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  color: #333;
}
.popup_form form label span input,
.popup_form form label span select,
.popup_form form label span textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  outline: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.popup_form form label span textarea {
  resize: none;
}
.popup_form form label.label_message {
  grid-column-start: 1;
  grid-column-end: 3;
}
.popup_form p.form_notice {
  color: #000;
  font-size: 10px;
}
.popup_form p.form_notice a {
  color: #333;
}
.wpcf7-response-output {
  background: #fff;
}
form span.wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  margin: 0;
}
form span:not(.wpcf7-spinner) {
  width: 100%;
}
form span.wpcf7-not-valid-tip {
  background: #fff;
  width: 100%;
  font-size: 8px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .popup_form form p {
    grid-template-columns: 1fr;
  }
  .popup_form form input[type='submit'],
  .popup_form form label.label_message {
    grid-column-start: unset;
    grid-column-end: unset;
  }
  .fancybox__content {
    padding: 20px;
  }
}
.fancybox__container {
  z-index: 1111111;
}
.clearfy-cookie-accept {
  color: #bc0a2e !important;
}
.wc_comm_submit {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 32px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  text-decoration: none;
  color: #fff;
  border: none;
  outline: 0;
  border-radius: 4px;
  line-height: 0.7;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  background: #bc092e;
}
.wc_comm_submit:hover {
  background-color: #9a0726;
  color: #fff;
  text-decoration: none;
}
.wc_comm_submit:active,
.wc_comm_submit:focus {
  background-color: #900723;
  color: #fff;
  outline: 0;
}
.swiper {
  width: 100%;
  height: auto;
  min-height: 300px;
}
.swiper-section {
  padding: 60px 0 0;
}
@media screen and (max-width: 576px) {
  .swiper {
    min-height: 200px;
  }
  .swiper-section {
    padding: 40px 0 0;
  }
}
.swiper-section_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 20px;
}
.swiper_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 576px) {
  .swiper_navigation {
    display: none;
  }
}
.swiper_navigation-next,
.swiper_navigation-prev {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid #f9f9f9;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
.swiper_navigation-next.swiper-button-disabled,
.swiper_navigation-prev.swiper-button-disabled {
  background: #f9f9f9;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.swiper-prev {
  left: 60px;
}
.swiper-next {
  right: 60px;
}
@media screen and (max-width: 991px) {
  .seo-text_description p {
    line-height: 1.4;
  }
  .swiper-section_title {
    padding-right: 25px;
  }
  .swiper_actions {
    padding-top: 16px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.myContainer {
  width: 100%;
  max-width: clamp(340px, 100vw, 1450px);
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .myContainer--swiper {
    padding: 0 0 0 25px;
  }
}
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}
.header_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header_bottom,
.header_top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 220px;
  height: auto;
}
.header_logo img {
  width: 100%;
  height: auto;
}
.header_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 992px) {
  .header_container {
    padding: 0;
  }
  .header_block {
    display: none;
  }
}
.header_block-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 2px rgba(0, 73, 89, 0.04), 0 2px 4px rgba(0, 73, 89, 0.08);
  box-shadow: 0 0 2px rgba(0, 73, 89, 0.04), 0 2px 4px rgba(0, 73, 89, 0.08);
}
.header_block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.header_block-content a,
.header_block-content p {
  font-size: 14px;
  line-height: 1;
  color: #333;
  font-weight: 600;
  margin-bottom: 0;
}
.header_block-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
}
.header_block-links a,
.header_block-links span {
  color: #bc092e;
  font-size: 14px;
  line-height: 1;
}
.header_block-links a {
  text-decoration: none;
}
.header_block-links a:hover {
  text-decoration: underline;
}
.header_block-links_trigger {
  position: relative;
}
.header_block-links_trigger span {
  cursor: pointer;
  font-weight: 600;
}
.header_block-links_trigger div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.header_block-links_trigger div a {
  display: block;
  padding: 10px 15px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  font-size: 12px;
  color: #333;
}
.header_block-links_trigger div a:hover {
  background: #f9f9f9;
  color: #bc092e;
}
.header_block-links_trigger:hover div {
  opacity: 1;
  visibility: visible;
}
.header_block--mobile {
  display: none;
}
@media screen and (max-width: 992px) {
  .header_block--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header_call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 1200px) {
  .header_call {
    display: none;
  }
}
.header_call span {
  font-size: 14px;
}
.header_top {
  background: #f9f9f9;
  padding: 36px 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.header_top.scrolled {
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
}
.header_bottom {
  background: #fff;
  -webkit-box-shadow: 0 0 2px rgba(92, 92, 92, 0.12), 0 2px 4px rgba(67, 67, 67, 0.12);
  box-shadow: 0 0 2px rgba(92, 92, 92, 0.12), 0 2px 4px rgba(67, 67, 67, 0.12);
  position: relative;
}
@media screen and (max-width: 992px) {
  .header_top {
    padding: 8px 16px;
  }
  .header_top.scrolled {
    visibility: visible;
    opacity: 1;
    height: auto;
    padding: 8px 16px;
  }
  .header_bottom {
    display: none;
  }
}
.header_bottom-services {
  position: absolute;
  top: 100%;
  left: -100%;
  z-index: -1;
  width: 100%;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f9f9f9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.header_bottom-services.show {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  left: 0;
}
.header_bottom-services_container {
  padding: 0;
}
.button {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 32px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  text-decoration: none;
  color: #fff;
  border: none;
  outline: 0;
  border-radius: 4px;
  line-height: 0.7;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.button--prime {
  background: #bc092e;
}
.button--prime:hover {
  background-color: #9a0726;
  color: #fff;
  text-decoration: none;
}
.button--prime:active,
.button--prime:focus {
  background-color: #900723;
  color: #fff;
  outline: 0;
}
.button--second {
  border: 1px solid #e0e0e0;
  background: 0 0;
  color: #777;
}
.button--second:hover {
  color: #bc092e;
  text-decoration: none;
}
.button--second:active,
.button--second:focus {
  color: #bc092e;
  outline: 0;
}
.button--fw {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.button--grid2 {
  grid-column-start: 1;
  grid-column-end: 3;
}
@media screen and (max-width: 786px) {
  .button--grid2 {
    grid-column-start: unset;
    grid-column-end: unset;
  }
}
.nav {
  height: 100%;
}
@media screen and (max-width: 991px) {
  .nav {
    display: none;
  }
}
.nav--mobile {
  display: block;
}
.nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0;
}
.nav .menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.nav .menu li.current-menu-item,
.nav .menu li.current-menu-parent {
  color: #333;
}
.nav .menu li a {
  display: inline-block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  font-size: 18px;
  font-weight: 600;
  padding: 28px 20px;
}
@media screen and (max-width: 1200px) {
  .nav .menu {
    gap: 10px;
  }
  .nav .menu li a {
    font-size: 16px;
  }
}
.nav .menu li ul.sub-menu {
  position: absolute;
  z-index: 99;
  top: calc(100% - 50px);
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: 0 0 4px 4px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.nav .menu li ul.sub-menu li {
  width: 100%;
}
.nav .menu li ul.sub-menu li a {
  color: #777;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
.nav .menu li ul.sub-menu li:hover a {
  color: #bc092e;
}
.nav .menu li:hover a {
  color: #bc092e;
  text-decoration: none;
}
.nav .menu li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
.menu-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-mobile li a {
  display: block;
  padding: 16px;
  background: #f9f9f9;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}
.menu-mobile_wrapper {
  position: fixed;
  right: -100%;
  top: 73px;
  z-index: 99990;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: clamp(300px, 100%, 700px);
  gap: 16px;
  background: #fff;
  padding: 20px 24px 30px;
  opacity: 0;
  visibility: hidden;
  height: calc(100dvh - 73px);
}
@media screen and (max-width: 800px) {
  .header_logo {
    max-width: 125px;
  }
  .menu-mobile_wrapper {
    top: 56px;
    height: calc(100dvh - 56px);
    overflow-y: auto;
  }
}
.menu-mobile_wrapper.show {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.modal-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.modal-trigger span {
  font-size: 18px;
  font-weight: 600;
}
.modal-trigger:hover svg {
  -webkit-animation: 2.5s linear infinite svgAanimate;
  animation: 2.5s linear infinite svgAanimate;
}
@-webkit-keyframes svgAanimate {
  0% {
    -webkit-filter: hue-rotate(0);
    filter: hue-rotate(0);
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
  25% {
    -webkit-filter: hue-rotate(90deg);
    filter: hue-rotate(90deg);
    -webkit-transform: scale(0.9) rotate(90deg);
    transform: scale(0.9) rotate(90deg);
  }
  50% {
    -webkit-filter: hue-rotate(180deg);
    filter: hue-rotate(180deg);
    -webkit-transform: scale(0.2) rotate(180deg);
    transform: scale(0.2) rotate(180deg);
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
  }
  75% {
    -webkit-filter: hue-rotate(270deg);
    filter: hue-rotate(270deg);
    -webkit-transform: scale(0.9) rotate(270deg);
    transform: scale(0.9) rotate(270deg);
  }
  100% {
    -webkit-filter: hue-rotate(0);
    filter: hue-rotate(0);
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}
@keyframes svgAanimate {
  0% {
    -webkit-filter: hue-rotate(0);
    filter: hue-rotate(0);
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
  25% {
    -webkit-filter: hue-rotate(90deg);
    filter: hue-rotate(90deg);
    -webkit-transform: scale(0.9) rotate(90deg);
    transform: scale(0.9) rotate(90deg);
  }
  50% {
    -webkit-filter: hue-rotate(180deg);
    filter: hue-rotate(180deg);
    -webkit-transform: scale(0.2) rotate(180deg);
    transform: scale(0.2) rotate(180deg);
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
  }
  75% {
    -webkit-filter: hue-rotate(270deg);
    filter: hue-rotate(270deg);
    -webkit-transform: scale(0.9) rotate(270deg);
    transform: scale(0.9) rotate(270deg);
  }
  100% {
    -webkit-filter: hue-rotate(0);
    filter: hue-rotate(0);
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}
.intro {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 20px;
}
.intro_container {
  position: relative;
}
@media screen and (max-width: 576px) {
  .intro_container {
    padding: 0;
  }
}
.intro_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}
.intro_bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.intro_bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.6)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0));
}
.intro_content {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  padding: 45px 60px;
}
.intro_actions {
  display: none;
}
@media screen and (max-width: 576px) {
  .intro_content {
    padding: 60px 24px;
  }
  .intro_actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.intro_actions--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.intro_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.intro_title .intro_subtitle,
.intro_title h1 {
  color: #fff;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 576px) {
  .intro_title {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    padding: 16px;
    border-radius: 8px;
    gap: 10px;
  }
  .intro_title .intro_subtitle,
  .intro_title h1 {
    color: #333;
  }
  .intro_form:not(.nohide) {
    display: none;
  }
}
.intro_title h1 {
  font-size: clamp(32px, 5vw, 68px);
  text-transform: uppercase;
  letter-spacing: 0;
}
.intro_title .intro_subtitle {
  font-size: clamp(12px, 4vw, 24px);
  font-family: 'Fira Sans', sans-serif;
}
.intro_form {
  width: 100%;
  max-width: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.intro_form--fw {
  max-width: unset;
}
.intro_form .wpcf7 {
  width: 100%;
}
.intro_form div.h4 {
  font-size: clamp(14px, 5vw, 16px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
.intro_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.intro_form form br {
  display: none;
}
.intro_form form p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  position: relative;
}
.intro_form form span.wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  margin: 0;
}
.intro_form form span:not(.wpcf7-spinner) {
  width: calc(50% - 4px);
}
.intro_form form span.wpcf7-not-valid-tip {
  background: #fff;
  width: 100%;
  font-size: 8px;
}
.intro_form form input {
  width: 100%;
  outline: 0;
  border: none;
}
.intro_form form input:not([type='submit']) {
  color: #fff;
  padding: 16px;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.2), rgba(153, 153, 153, 0.2));
  border-radius: 4px;
  font-size: 14px;
}
.intro_form form input:not([type='submit'])::-webkit-input-placeholder {
  color: #fff;
  font-weight: 300;
}
.intro_form form input:not([type='submit'])::-moz-placeholder {
  color: #fff;
  font-weight: 300;
}
.intro_form form input:not([type='submit']):-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
}
.intro_form form input:not([type='submit'])::-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
}
.intro_form form input:not([type='submit'])::placeholder {
  color: #fff;
  font-weight: 300;
}
.intro_form form input:not([type='submit']):active,
.intro_form form input:not([type='submit']):focus {
  color: #fff;
}
.intro_form p {
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 300;
}
.intro_form p a {
  color: #fff;
  text-decoration: underline;
}
.intro-doctor .intro_container {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 20px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  min-height: 410px;
  height: auto;
  padding: 0;
}
.intro-doctor .intro_content {
  padding: 48px 60px;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .intro-doctor .intro_container {
    grid-template-columns: 1fr;
  }
  .intro-doctor .intro_content {
    grid-row-start: 2;
    grid-row-start: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 0 24px 32px;
  }
  .intro-doctor .intro_img {
    grid-row-start: 1;
    grid-row-start: 2;
  }
}
.intro-doctor .intro_title {
  background: 0 0;
}
.intro-doctor .intro_title h1 {
  color: #333;
}
.intro-doctor .intro_title h3 {
  color: #bc092e;
}
.intro-doctor .intro_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.intro-doctor .intro_list span {
  font-size: 16px;
  color: #777;
  font-weight: 600;
}
.intro-doctor .intro_list ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 576px) {
  .intro-doctor .intro_list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }
}
.intro-doctor .intro_list ul li {
  color: #777;
}
.intro-doctor .intro_img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.intro-doctor .intro_img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.pop-services {
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pop-services_mobile {
  display: none;
}
@media screen and (max-width: 576px) {
  .pop-services {
    display: none;
  }
  .pop-services_mobile {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px !important;
  }
  .pop-services_page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px !important;
  }
}
.pop-services_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.pop-services_title h2 {
  margin-bottom: 0;
}
.pop-services_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 992px) {
  .pop-services_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pop-services_item {
  width: 100%;
  border-radius: 8px;
  padding: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  background: #f9f9f9;
  border: 1px solid transparent;
  text-decoration: none;
  height: 100%;
}
.pop-services_item span {
  font-size: 20px;
  color: #333;
  font-weight: 500;
}
.pop-services_item:hover:not(:first-child) {
  text-decoration: none;
  border-color: #bc092e;
  background: #eaeaea;
}
.pop-services_all {
  border: 1px solid #bc092e;
  background: #fff;
}
.pop-services_icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pop-services_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.pop-services_text p {
  font-size: 14px;
  color: #777;
  line-height: 1.3;
}
@media screen and (max-width: 576px) {
  .pop-services_content {
    grid-template-columns: repeat(1, 1fr);
  }
  .pop-services_item {
    padding: 16px;
  }
  .pop-services_item span {
    font-size: 14px;
  }
  .pop-services_icon {
    width: 50px;
    height: 50px;
    padding: 9px;
  }
  .pop-services_icon img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .pop-services_text p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
  }
  .pop-services_text--wrap p {
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
  }
}
.doctors {
  background: #f9f9f9;
  padding-top: 40px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.doctors_mobile {
  display: none;
}
@media screen and (max-width: 576px) {
  .doctors {
    display: none;
  }
  .doctors_mobile {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px !important;
  }
}
.doctors-page {
  background: #fff;
}
.doctors_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 576px) {
  .doctors_container {
    gap: 0;
  }
  .doctors-swiper {
    min-height: unset;
    height: 155px;
  }
}
.doctors_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.doctors_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 112px 32px;
}
.doctors_item {
  width: 100%;
  position: relative;
  padding: 88px 20px 28px;
  -webkit-box-shadow: 0 2px 4px rgba(67, 67, 67, 0.12);
  box-shadow: 0 2px 4px rgba(67, 67, 67, 0.12);
  border-radius: 8px;
}
.doctors_item-name {
  color: #333;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  text-decoration: none;
}
@media screen and (max-width: 576px) {
  .doctors_item {
    padding: 36px 16px 16px;
    height: calc(100% - 30px);
    margin-top: 26px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
  }
  .doctors_item-name {
    font-size: 14px;
  }
}
.doctors_item-name:hover {
  color: #bc092e;
  text-decoration: none;
}
.doctors_item-position {
  color: #bc092e;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .doctors_item-position {
    font-size: 11px;
  }
}
.doctors_item-exp {
  color: #777;
  font-size: 14px;
}
.doctors_img {
  position: absolute;
  top: -70px;
  left: 50%;
  z-index: 5;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}
.doctors_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.doctors_img:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.doctors_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .doctors_item-exp {
    font-size: 10px;
  }
  .doctors_img {
    width: 50px;
    height: 50px;
    top: -25px;
  }
  .doctors_text {
    gap: 7px;
  }
}
.doctor_gallery {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #f9f9f9;
}
.doctor_gallery-swiper {
  min-height: unset;
  height: 300px;
}
@media screen and (max-width: 576px) {
  .doctor_gallery-swiper {
    height: 200px;
  }
}
.doctor_gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  background: #fff;
}
.doctor_gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.reviews {
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.reviews-page {
  padding-top: 40px !important;
}
.reviews_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 992px) {
  .doctors_content {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews_aside {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    grid-row-start: 1;
    grid-row-end: 2;
    position: relative !important;
    top: 0 !important;
  }
}
.reviews-swiper {
  height: 430px;
}
@media screen and (max-width: 576px) {
  .reviews-swiper {
    height: 230px;
  }
}
.reviews_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.reviews_title h2 {
  margin-bottom: 0;
}
.reviews_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reviews_content--col {
  grid-template-columns: 1fr;
}
.reviews_item {
  width: 100%;
  background: #f9f9f9;
  padding: 28px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .reviews_item {
    padding: 16px;
    gap: 16px;
  }
}
.reviews_item-hidden {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: clamp(300px, 50vw, 800px);
}
.reviews_item h5,
.reviews_item p {
  margin-bottom: 0;
}
.reviews_item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.reviews_item-name {
  font-size: 16px;
  color: #333;
}
@media screen and (max-width: 576px) {
  .reviews_item-name {
    font-size: 11px;
  }
}
.reviews_item-date {
  font-size: 14px;
  color: #777;
}
.reviews_item-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 576px) {
  .reviews_item-date {
    font-size: 10px;
  }
  .reviews_item-stars {
    gap: 2px;
  }
  .reviews_item-stars span {
    width: 10px;
    height: 10px;
  }
}
.reviews_item-stars span img {
  display: block;
  width: 100%;
  height: auto;
}
.reviews_item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.reviews_item-bottom p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.reviews_item-bottom a.more {
  font-size: 14px;
  color: #bc092e;
}
.reviews_item-link {
  text-decoration: none;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #333;
}
@media screen and (max-width: 576px) {
  .reviews_item-bottom p {
    font-size: 11px;
  }
  .reviews_item-bottom a.more {
    font-size: 9px;
  }
  .reviews_item-link {
    font-size: 14px;
  }
}
.reviews_actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 991px) {
  .reviews_actions {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 32px;
  }
}
.reviews_form form p {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 10px;
}
.reviews_form form br {
  display: none;
}
.reviews_form form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  color: #333;
}
.reviews_form form label span input,
.reviews_form form label span select,
.reviews_form form label span textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  outline: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.reviews_form form label span textarea {
  resize: none;
}
.reviews_form form input[type='submit'],
.reviews_form form label.label_message {
  grid-column-start: 1;
  grid-column-end: 3;
}
.reviews_form p.form_notice {
  color: #000;
  font-size: 10px;
}
.reviews_form p.form_notice a {
  color: #333;
}
.blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.blog-page {
  padding-top: 20px;
  padding-bottom: 60px;
}
.blog-promotions {
  padding-top: 40px;
}
.blog_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.blog_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blog_title h2 {
  margin-bottom: 0;
}
.blog_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 991px) {
  .blog_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .blog_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog_item {
  width: 100%;
  background: #f9f9f9;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  text-decoration: none;
}
.blog_item-img {
  width: 100%;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: relative;
}
.blog_item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.blog_item-img:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.blog_item-content {
  padding: 20px 24px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.blog_item-title span,
.blog_item-title a {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.1;
}
.blog_item-title a:hover {
  color: #bc092e;
}
.blog_item-devider {
  background: #bc092e;
  width: 120px;
  height: 2px;
  border-radius: 4px;
}
.blog_item-text {
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}
.blog_item-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
}
@media screen and (max-width: 576px) {
  .blog_item-content {
    padding: 16px;
  }
  .blog_item-title a {
    font-size: 14px;
  }
  .blog_item-text {
    font-size: 10px;
  }
  .blog_item-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .blog_item-date span {
    font-size: 10px;
  }
}
.blog_item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  color: #777;
}
.blog_actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 991px) {
  .blog_actions {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 32px;
  }
}
.documents {
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.documents_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.documents_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 32px 290px 32px 32px;
  background: #f9f9f9;
  position: relative;
}
.documents_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.documents_links-item {
  font-size: 16px;
  color: #bc092e;
  text-decoration: none;
  display: block;
}
.documents_links-item:hover {
  color: #a40828;
  text-decoration: none;
}
.documents_image {
  position: absolute;
  right: 32px;
  top: -70px;
  z-index: 20;
}
@media screen and (max-width: 870px) {
  .documents_content {
    padding: 16px;
  }
  .documents_links {
    gap: 8px;
  }
  .documents_links-item {
    font-size: 12px;
  }
  .documents_links-item:first-child {
    width: calc(100% - 70px);
  }
  .documents_image {
    right: 15px;
    top: -24px;
    width: 44px;
  }
}
.documents_image img {
  display: block;
  width: 100%;
  height: auto;
}
.footer_top {
  background: #f9f9f9;
  padding: 36px 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.footer_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer_container--bottom {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 950px) {
  .footer {
    background: #f9f9f9;
  }
  .footer_top {
    padding: 20px 0;
  }
  .footer_container--bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.footer_bottom {
  padding: 48px 0 56px;
}
@media screen and (max-width: 950px) {
  .footer_bottom {
    padding: 0 0 20px;
  }
}
.footer_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 850px) {
  .footer_item {
    display: none;
  }
  .footer_item-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
}
.footer_item-title {
  font-size: 18px;
  font-weight: 600;
}
.footer_item-list {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.footer_item-list li a {
  color: #777;
  font-size: 14px;
  text-decoration: none;
}
.footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 950px) {
  .footer_social {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}
.footer_social-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.footer_social-trigger {
  position: relative;
  cursor: pointer;
}
.footer_social-trigger div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.footer_social-trigger div a {
  display: block;
  padding: 10px 15px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  font-size: 12px;
  color: #333;
}
.footer_social-trigger div a:hover {
  background: #f9f9f9;
  color: #bc092e;
}
.footer_social-trigger:hover div {
  opacity: 1;
  visibility: visible;
}
.footer_warn {
  background: #f9f9f9;
  padding: 20px 0;
}
@media screen and (max-width: 850px) {
  .footer_warn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
  }
}
.footer_warn-title {
  font-size: 14px;
  color: #777;
}
@media screen and (max-width: 1100px) {
  .footer_call {
    display: none;
  }
}
@media screen and (max-width: 950px) {
  .footer_call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer_copy {
  border-top: 1px solid rgba(127, 141, 155, 0.12);
  background: #f9f9f9;
  padding: 20px 0;
}
.footer_copy-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 850px) {
  .footer_copy {
    border-top: none;
  }
  .footer_copy-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.footer_copy-item a,
.footer_copy-item p,
.footer_copy-item span {
  font-size: 14px;
  color: #777;
  font-weight: 300;
  text-decoration: none;
}
.footer_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.footer_block-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 2px rgba(0, 73, 89, 0.04), 0 2px 4px rgba(0, 73, 89, 0.08);
  box-shadow: 0 0 2px rgba(0, 73, 89, 0.04), 0 2px 4px rgba(0, 73, 89, 0.08);
}
@media screen and (max-width: 850px) {
  .footer_block-icon {
    display: none;
  }
}
.footer_block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 950px) {
  .footer_block-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}
.footer_block-content a,
.footer_block-content p {
  font-size: 14px;
  line-height: 1;
  color: #333;
  font-weight: 600;
  margin-bottom: 0;
}
.footer_block-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
}
.footer_block-links a,
.footer_block-links span {
  color: #bc092e;
  font-size: 14px;
  line-height: 1;
}
.footer_block-links a {
  text-decoration: none;
}
.footer_block-links a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 950px) {
  .footer_mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}
.footer_mail a {
  color: #bc092e;
  font-size: 14px;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .footer_bvi {
    display: none;
  }
}
.footer_bvi a {
  text-decoration: none;
}
.service-description {
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.service-description--np {
  padding-bottom: 0;
}
.service-description_single {
  padding-top: 40px;
}
.service-description_comments-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .service-description_comments-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.service-description_container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  position: relative;
}
.service-description_content,
.service-description_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .service-description_container {
    grid-template-columns: 1fr;
  }
  .service-description_item {
    gap: 20px;
  }
  .service-description_item ul.service_list,
  .service-description_item-list,
  .service-description_item-text ul {
    list-style-position: inside;
  }
}
.service-description_item-author a {
  color: #bc092e;
}
.service-description_item div.h3,
.service-description_item-title {
  color: #333;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0;
}
.service-description_item-title h1 {
  color: #333;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0;
}
.service-description_item-date {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.service-description_item-img,
.service-description_item-img img {
  width: 100%;
}
.service-description_item ul.service_list,
.service-description_item-list,
.service-description_item-text ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  list-style-image: url(../../img/list-icon.svg);
  list-style-position: inside;
}
.service-description_item ul.service_list li,
.service-description_item-list li,
.service-description_item-text ul li {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  padding-left: 7px;
}
@media screen and (max-width: 700px) {
  .service-description_item ul.service_list,
  .service-description_item-list,
  .service-description_item-text ul {
    gap: 20px;
  }
  .service-description_item ul.service_list li,
  .service-description_item-list li,
  .service-description_item-text ul li {
    font-size: 14px;
  }
}
.service-description_item ul.service_list--grid,
.service-description_item-list--grid,
.service-description_item-text ul--grid {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media screen and (max-width: 700px) {
  .service-description_item ul.service_list--grid,
  .service-description_item-list--grid,
  .service-description_item-text ul--grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.service-description_item-tabs,
.service-description_item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.service-description_item-tabs p,
.service-description_item-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0;
}
.service-description_item-tabs_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}
.service-description_item-tabs_text {
  display: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.service-description_item-tabs_text.active {
  display: block;
}
@media screen and (max-width: 576px) {
  .service-description_item-text {
    gap: 16px;
  }
}
.service-description_item-text h2 {
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1;
  letter-spacing: 0.75px;
  color: #333;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Bebas Neue';
}
.service-description_item-text p {
  margin-bottom: 10px;
}
.service-description_item-text a {
  color: #bc092e;
}
.service-description_aside {
  width: 100%;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  position: sticky;
  top: 100px;
  padding: 28px;
  background: #f9f9f9;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  -webkit-box-shadow: 0 0 4px rgba(0, 73, 89, 0.04), 0 2px 4px rgba(0, 73, 89, 0.08);
  box-shadow: 0 0 4px rgba(0, 73, 89, 0.04), 0 2px 4px rgba(0, 73, 89, 0.08);
}
@media screen and (max-width: 991px) {
  .service-description_aside {
    display: none;
  }
}
.service-description_form {
  width: 100%;
  max-width: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.service-description_form div.h4 {
  font-size: clamp(14px, 5vw, 16px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
.service-description_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.service-description_form form p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0;
  position: relative;
}
.service-description_form form span:not(.wpcf7-spinner) {
  width: 100%;
}
.service-description_form form input {
  width: 100%;
  outline: 0;
  border: none;
}
.service-description_form form input:not([type='submit']) {
  color: #333;
  height: 42px;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
}
.service-description_form form input:not([type='submit'])::-webkit-input-placeholder {
  color: #333;
  font-weight: 300;
}
.service-description_form form input:not([type='submit'])::-moz-placeholder {
  color: #333;
  font-weight: 300;
}
.service-description_form form input:not([type='submit']):-ms-input-placeholder {
  color: #333;
  font-weight: 300;
}
.service-description_form form input:not([type='submit'])::-ms-input-placeholder {
  color: #333;
  font-weight: 300;
}
.service-description_form form input:not([type='submit'])::placeholder {
  color: #333;
  font-weight: 300;
}
.service-description_form form input:not([type='submit']):active,
.service-description_form form input:not([type='submit']):focus {
  color: #333;
}
.service-description_form p {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 300;
}
.service-description_form p a {
  text-decoration: underline;
}
.service-description_form-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.service-description_form-title-h1 {
  color: #333;
  font-size: clamp(16px, 4vw, 24px);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}
.service-description_form-title-h1 span {
  color: #bc092e;
}
.service-description_form-title-p {
  color: #777;
  font-size: 14px;
  line-height: 1.2;
}
.service-description_form-privacy {
  color: #777 !important;
  font-size: 10px !important;
  line-height: 1.6 !important;
}
.service-description_form-privacy a {
  color: #bc092e !important;
}
.service-description_author {
  position: relative;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #bc092e;
  padding: 15px 5px;
}
.service-description_author p {
  margin-bottom: 0;
}
.service-description_author-quotes {
  position: absolute;
  left: -70px;
  top: 0;
  font-size: 60px;
  color: rgba(188, 9, 46, 0.2);
  z-index: 2;
  line-height: 1;
}
.service-description_author-img {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
}
.service-description_author-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.service-description_author-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.service-description_author-name {
  font-size: 20px;
  font-weight: 600;
  color: #777;
}
.service-description_author-position {
  color: #bc092e;
  font-size: 14px;
}
.service-description_raiting span {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0;
}
.service-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.services_menu_links {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .services_menu_links {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.services-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 0;
}
.services-page_container {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 20px 0px;
}
.services-page_container ul {
  list-style: none;
  padding: 30px;
  margin: 0;
}
.services-page_title {
  grid-column-start: 1;
  grid-column-end: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.services-page_title h1 {
  margin-bottom: 0;
}
.services-page_menu {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  min-height: 400px;
  list-style: none;
}
.services-page_menu-item {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.services-page_menu-item.active {
  color: #bc092e;
}
.services-page_links {
  position: relative;
}
@media screen and (max-width: 768px) {
  .services-page_container {
    grid-template-columns: 1fr;
  }
  .services-page_links,
  .services-page_menu {
    display: none;
  }
}
.services-page_links-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.services-page_links-wrapper.active {
  display: block;
}
.services-page_links-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  background: #f9f9f9;
  height: 100%;
}
.services-page_links-item a {
  color: #333;
  font-size: 15px;
  font-weight: 400;
}
.services-page_links-item a:hover {
  color: #bc092e;
}
.services-page_links-item:first-child a {
  font-weight: 600;
}
.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.accordion_item {
  background-color: var(--background-color);
}
.accordion_item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}
.accordion_item-header span {
  font-weight: 600;
  font-size: clamp(16px, 3vw, 20px);
  color: #333;
}
.accordion_item-header span:last-child {
  color: #bc092e;
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  .accordion_item-header span:last-child {
    font-size: 14px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .accordion_item-content_item-title a {
    font-size: 14px;
  }
}
.accordion_item-header svg {
  margin-left: auto;
}
.accordion_item-icon {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.accordion_item-content {
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.accordion_item-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.accordion_item-content_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: #f9f9f9;
  border-radius: 4px;
  padding: 16px 20px;
}

.accordion_item-content_item--alt {
  display: grid;
  grid-template-columns: 1fr repeat(2, 150px);
  align-items: flex-start;
  gap: 12px;
}
.accordion_item-content_item--no-prices {
  grid-template-columns: 1fr;
}
.accordion_item-content_item-title {
  font-size: 16px;
  color: #333;
}
.accordion_item-content_item-title a {
  color: #bc092e;
  text-decoration: underline;
}
.accordion_item-content_item-title p {
  margin-top: 15px;
  font-size: 14px;
  color: var(--grey-color);
  opacity: 0.4;
}
.accordion_item-content_item-cost {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.accordion_item-content_item-cost--alt {
  text-align: right;
}
.accordion_item-content_item-cost--alt:last-child {
  opacity: 0.4;
}
.accordion_item.open .accordion_item-content-wrapper {
  padding-top: 5px;
  grid-template-rows: 1fr;
}
/* price Accordion styles alt */

.price_accordion-titles {
  display: grid;
  grid-template-columns: 1fr repeat(2, 150px);
  gap: 12px;
  padding: 0 20px;
}
.price_accordion-titles span {
  text-align: right;
  font-size: 14px;
  color: var(--grey-color);
  opacity: 0.6;
}
@media screen and (max-width: 576px) {
  .accordion_item-content_item--alt,
  .price_accordion-titles {
    grid-template-columns: 1fr repeat(2, 75px);
    gap: 6px;
  }
  .accordion_item-content_item--no-prices {
    grid-template-columns: 1fr;
  }
  .price_accordion-titles span {
    font-size: 12px;
  }
  .accordion_item-content_item-title p {
    font-size: 12px;
    margin-top: 5px;
  }
}
.contacts-page {
  padding-top: 20px;
}
.contacts_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .accordion_item-content_item-cost {
    font-size: 14px;
  }
  .contacts_container {
    gap: 20px;
  }
  .contacts_map {
    display: none;
  }
  .contacts_map--modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.contacts_title {
  padding: 0;
}
.contacts_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .contacts_block {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contacts_banner {
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.contacts_block-title {
  padding-bottom: 0;
}
@media screen and (max-width: 576px) {
  .contacts_container {
    padding-left: 0;
    padding-right: 0;
  }
  .contacts_block-title,
  .contacts_title {
    padding-left: 25px;
  }
}
.contacts_block--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .contacts_block--row {
    grid-template-columns: 1fr;
  }
}
.contacts_banner {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.contacts_banner img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.contacts_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 36px 28px;
  border-radius: 8px;
  background: #f9f9f9;
}
@media screen and (max-width: 991px) {
  .contacts_details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.contacts_details-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.contacts_details-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contacts_details-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
}
.contacts_details-content a {
  color: #333;
  font-size: 16px;
  line-height: 1;
}
.contacts_details-content a:hover {
  text-decoration: none;
}
.contacts_details-content span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.contacts_details-content b,
.contacts_details-content p {
  color: #bc092e;
  margin-bottom: 0;
}
.contacts_details-links a,
.contacts_details-links span {
  color: #bc092e;
  font-size: 14px;
}
.contacts_details-links a:hover {
  text-decoration: underline;
}
.contacts_form,
.contacts_rek {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 32px;
  background: #f9f9f9;
  border-radius: 8px;
}
.contacts_rek {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.contacts_rek p {
  font-size: 16px;
  line-height: 1.6;
}
.contacts_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}
.contacts_form form p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  width: 100%;
  margin-bottom: 0;
}
.contacts_form form p label {
  grid-column-start: 1;
  grid-column-end: 3;
  margin-bottom: 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}
.contacts_form form p span[data-name='contact-msg'] {
  grid-column-start: 1;
  grid-column-end: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts_form form p span textarea {
  width: 100%;
  resize: none;
  min-height: 121px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  color: #333;
  margin: 0;
}
.contacts_form form p input {
  width: 100%;
  outline: 0;
  border: none;
  grid-column-start: 1;
  grid-column-end: 3;
}
.contacts_form form p input:not([type='submit']) {
  color: #333;
  height: 42px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  grid-column-start: unset;
  grid-column-end: unset;
  margin: 0;
}
.contacts_form form p input:not([type='submit'])::-webkit-input-placeholder {
  color: #333;
  font-weight: 300;
}
.contacts_form form p input:not([type='submit'])::-moz-placeholder {
  color: #333;
  font-weight: 300;
}
.contacts_form form p input:not([type='submit']):-ms-input-placeholder {
  color: #333;
  font-weight: 300;
}
.contacts_form form p input:not([type='submit'])::-ms-input-placeholder {
  color: #333;
  font-weight: 300;
}
.contacts_form form p input:not([type='submit'])::placeholder {
  color: #333;
  font-weight: 300;
}
.contacts_form form p input:not([type='submit']):active,
.contacts_form form p input:not([type='submit']):focus {
  color: #333;
}
.contacts_form form p br {
  display: none;
}
.contacts_form .wpcf7 + p {
  color: #777;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 300;
  margin-top: 10px;
}
.contacts_form .wpcf7 + p a {
  color: #777;
  text-decoration: underline;
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.pagination--blog {
  gap: 8px;
}
.pagination ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pagination a,
.pagination span {
  font-size: 16px;
  background: #fff;
  color: #777;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  width: 40px;
  height: 40px;
}
.pagination a.next,
.pagination a.prev,
.pagination span.next,
.pagination span.prev {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.pagination a.current,
.pagination span.current {
  background: #bc092e;
  color: #fff;
  border-color: transparent;
}
.pagination a:hover {
  background: #f2f2f2;
}
.directions-swiper {
  height: 300px;
}
@media screen and (max-width: 576px) {
  .directions-swiper {
    min-height: unset;
    height: 166px;
  }
}
.directions-main_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.directions-main_item:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.directions-main_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.directions-main_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.directions-main_name {
  position: absolute;
  width: 100%;
  z-index: 2;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.8)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .directions-main_name {
    font-size: 12px;
  }
}
.licenses {
  padding: 20px 0 40px;
}
.licenses_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.licenses_subtitle {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  color: #333;
}
.licenses_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .licenses_items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.licenses_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.licenses_item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .blog_item-date span {
    font-size: 12px;
  }
  .blog_item-text {
    font-size: 12px;
  }
  .pop-services_text p {
    font-size: 12px;
  }
  .doctors_item-position {
    font-size: 12px;
  }
  .doctors_item-exp {
    font-size: 12px;
  }
  .reviews_item-name {
    font-size: 12px;
  }
  .reviews_item-date {
    font-size: 12px;
  }
  .reviews_item-bottom p {
    font-size: 12px;
  }
  .reviews_item-bottom a.more {
    font-size: 12px;
  }
}

.breadcrumbs {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  list-style-type: none;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  padding: 15px 0 18px;
}

.breadcrumbs span,
.breadcrumbs a {
  font-family: 'Fira Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  color: var(--grey-color);
}
.breadcrumbs a {
  transition: 0.3s;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs li:not(:first-child) {
  padding-left: 5px;
}

.breadcrumbs li:not(.breadcrumbs__current) {
  padding-right: 15px;
  position: relative;
}

.breadcrumbs li:not(.breadcrumbs__current)::after {
  content: ' — ';
  position: absolute;
  right: 0;
  top: 1px;
}

.contacts_block-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.contacts_block-wrapper::-webkit-scrollbar {
  display: none;
}

.contacts_block-wrapper .contacts_block {
  max-width: 31%;
}

.contacts_block-wrapper .contacts_block .h3 {
  font-size: clamp(28px, 5vw, 35px);
}

.contacts_block-wrapper .contacts_block .contacts_details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.contacts_block-wrapper .contacts_block .contacts_details-call,
.contacts_block-wrapper .contacts_block .contacts_details-call a {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.contacts_block-wrapper .contacts_details-icon {
  flex: none;
}

@media (max-width: 1200px) {
  .contacts_block-wrapper .contacts_block {
    max-width: 47%;
  }
}

@media (max-width: 760px) {
  .contacts_block-wrapper {
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 20px;
    padding: 0 20px;
  }

  .contacts_block-wrapper .contacts_banner {
    height: 220px;
  }

  .contacts_block-wrapper .contacts_block {
    min-width: 300px;
  }

  .contacts_block-wrapper .contacts_details-icon {
    width: 25px;
    height: 25px;
  }

  .contacts_block-wrapper .contacts_details-content span {
    font-size: 14px;
    font-weight: 500;
  }

  .contacts_block-wrapper .contacts_block .h3 {
    font-size: 28px;
  }
}
.footer_block-content a span,
.header_block .header_block-content a span {
  font-size: 12px;
  font-weight: 400;
}

.madal-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 auto;
  width: 100%;
}

.madal-phones li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
}

.madal-phones li .madal-phone__link {
  font-size: 16px;
  line-height: 1;
  color: #333;
  font-weight: 600;
  margin-bottom: 0;
}

/* .blog_item {

} */
.blog_item .clinics-tag-list {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 10;
  list-style: none;
  padding: 10px;
}

.blog_item .clinics-tag-list .clinics-tag-item {
  padding: 8px 10px;
  border-radius: 4px;
  opacity: 0.8;
  display: flex;
  margin: 0;
}

.clinics-tag-list .clinics-tag-item span {
  font-size: 10px;
  line-height: 12px;
  color: #ffffff;
}

.clinics-tag-list .clinics-tag-title {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}

.clinics-tag-list .clinics-tag-title span {
  padding: 8px 10px;
  border-radius: 4px;
  opacity: 0.8;
  display: flex;
  margin: 0;
  background-color: #fff;
  opacity: 0.8;
  color: #333;
  font-size: 12px;
  line-height: 12px;
}

@media screen and (max-width: 640px) {
  .blog_item .clinics-tag-list {
    padding: 5px;
    gap: 5px;
  }

  .clinics-tag-list .clinics-tag-title span {
    padding: 4px 10px;
    font-size: 10px;
    line-height: 10px;
  }
  .blog_item .clinics-tag-list .clinics-tag-item {
    padding: 4px;
    padding: 4px 6px;
  }

  .clinics-tag-list .clinics-tag-item span {
    font-size: 10px;
    line-height: 10px;
  }
}

@media screen and (min-width: 992px) {
  .services-page_links-list {
    overflow-y: auto;
    /* padding-bottom: 100px !important; */
    scrollbar-width: thin; /* Ширина скроллбара */
    scrollbar-color: #bc092e #f1f1f1; /* Цвет ползунка и фона */
  }

  .services-page_links-list::-webkit-scrollbar {
    width: 8px;
  }

  .services-page_links-list::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .services-page_links-list::-webkit-scrollbar-thumb {
    background-color: #bc092e; /* Цвет ползунка */
    border-radius: 10px; /* Скругление углов ползунка */
  }
}

.services-page_links-wrapper.active[data-category] {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
  flex-wrap: nowrap;
}

.services-page_links-list.grouped {
  padding: 15px;
  height: fit-content;
}

.services-page_links-wrapper.page-service {
  overflow: auto;
}

.services-page_links-wrapper.page-service .services-page_links-list {
  background: none;
}

.blog-section {
  padding-top: 40px;
}

@media screen and (max-width: 576px) {
  .pop-services_mobile .swiper {
    min-height: unset;
  }
  .pop-services_text p {
    display: none;
  }
  .pop-services_mobile .swiper-slide {
    height: auto;
  }
  .swiper_actions {
    display: flex;
    justify-content: flex-end;
    padding-right: 25px;
  }
  .swiper_actions .button {
    font-size: 14px;
    padding: 12px 24px;
  }
}

#top {
  bottom: 100px;
  right: 30px;
}
