

/* Start:/local/templates/narkology2/main.css?1753022002144369*/
@import "/local/templates/narkology2/fonts.css";

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}
.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}
.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}
.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}
.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}
.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}
@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}
.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}
@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}
.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}
@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease)
    var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}
.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease)
    var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}
@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}
.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}
@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}
.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}
@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}
.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both
    f-crossfadeOut;
  z-index: 1;
}
@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideInNext;
}
.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideInPrev;
}
.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideOutNext;
}
.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideOutPrev;
}
@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicInNext;
  z-index: 2;
}
.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicInPrev;
  z-index: 2;
}
.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicOutNext;
  z-index: 1;
}
.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicOutPrev;
  z-index: 1;
}
@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}
.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}
@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}
.f-button:focus:not(:focus-visible) {
  outline: none;
}
.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px)
    var(--f-button-outline-color, var(--f-button-color));
}
.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}
.f-button[disabled] {
  cursor: default;
}
.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}
.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}
.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}
.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}
.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}
.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}
.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}
.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}
.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}
.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none;
}
html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}
html.with-fancybox body {
  touch-action: none;
}
html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(
    var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px)
  );
  overflow: hidden !important;
  overscroll-behavior-y: none;
}
.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}
.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}
.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}
.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}
.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}
.fancybox__viewport {
  width: 100%;
  height: 100%;
}
.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}
.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}
.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}
.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}
.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}
.fancybox__slide.has-image {
  overflow: hidden;
}
.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}
.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}
.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}
.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}
.is-loading .fancybox__content {
  opacity: 0;
}
.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}
.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}
.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}
.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}
.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}
.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  will-change: transform, width, height;
}
.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
  filter: blur(0px);
}
.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}
.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}
.is-compact .fancybox__caption {
  padding-bottom: 0;
}
.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}
.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}
.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}
.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}
.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}
.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}
.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}
.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}
.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}
.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}
.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}
.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}
.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}
.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0
    var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}
.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}
.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}
.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}
.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}
.fancybox__container.is-animated[aria-hidden="false"]
  > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden="false"]
  .fancybox__carousel
  > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden="false"]
  .fancybox__slide
  > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards
    f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden="true"]
  > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden="true"]
  .fancybox__carousel
  > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden="true"]
  .fancybox__slide
  > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}
.fancybox__container.is-animated[aria-hidden="true"] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}
.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}
.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}
.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}
.has-map .fancybox__content {
  background: #e5e3df;
}
.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}
.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}
.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}
.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}
.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}
.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}
.f-thumbs .f-spinner svg {
  display: none;
}
.f-thumbs.is-vertical {
  height: 100%;
}
.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.f-thumbs__track {
  display: flex;
}
.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}
.f-thumbs__slide.is-loading img {
  opacity: 0;
}
.is-classic .f-thumbs__viewport {
  height: 100%;
}
.is-modern .f-thumbs__track {
  width: max-content;
}
.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}
.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}
.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}
.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}
.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color))
    drop-shadow(2px 0px 0px var(--f-thumb-outline-color))
    drop-shadow(0px -1px 0px var(--f-thumb-outline-color))
    drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}
.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}
.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}
.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}
.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}
.is-modern .f-thumbs__slide__button {
  --clip-path: inset(
    0
      calc(
        ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) *
          (1 - var(--progress, 0)) * 0.5
      )
      round var(--f-thumb-border-radius, 0)
  );
  clip-path: var(--clip-path);
}
.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}
.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid
    var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}
.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}
.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}
.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}
.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}
.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}
.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}
.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
}
.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}
.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
}
.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}
.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}
.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}
.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}
.is-closing .fancybox__thumbs {
  transition: none !important;
}
.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted",
    "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(
    --fancybox-toolbar-text-shadow,
    1px 1px 1px rgba(0, 0, 0, 0.5)
  );
  pointer-events: none;
  z-index: 20;
}
.fancybox__toolbar :focus-visible {
  z-index: 1;
}
.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}
.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}
.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}
.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}
.fancybox__infobar span {
  padding: 0 5px;
}
.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}
[data-fancybox-toggle-slideshow] {
  position: relative;
}
[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}
[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}
[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}
.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}
.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}
[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}
[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}
:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}
:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}
.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}

@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  src: url("/local/templates/narkology2/./assets/fonts/Gilroy-Medium.woff") format("woff"),
    url("/local/templates/narkology2/./assets/fonts/gilroy-medium.woff2") format("woff2");
}

@font-face {
  font-family: "Actay Wide";
  src: url("/local/templates/narkology2/./assets/fonts/Actay Wide Bd.eot");
  src: local("Actay Wide Bd"),
    url("/local/templates/narkology2/./assets/fonts/Actay Wide Bd.eot?#iefix") format("embedded-opentype"),
    url("/local/templates/narkology2/./assets/fonts/Actay Wide Bd.woff2") format("woff2"),
    url("/local/templates/narkology2/./assets/fonts/Actay Wide Bd.woff") format("woff"),
    url("/local/templates/narkology2/./assets/fonts/Actay Wide Bd.ttf") format("truetype");
  font-weight: 700;
  font-style: bold;
}
@font-face {
  font-family: "Inter";
  src: url("/local/templates/narkology2/./assets/fonts/Inter Bold.eot");
  src: local("Inter Bold"),
    url("/local/templates/narkology2/./assets/fonts/Inter Bold.eot?#iefix") format("embedded-opentype"),
    url("/local/templates/narkology2/./assets/fonts/Inter Bold.woff2") format("woff2"),
    url("/local/templates/narkology2/./assets/fonts/Inter Bold.woff") format("woff"),
    url("/local/templates/narkology2/./assets/fonts/Inter Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: bold;
}
@font-face {
  font-family: "Roboto";
  src: url("/local/templates/narkology2/./assets/fonts/Roboto Bold.eot");
  src: local("Roboto Bold"),
    url("/local/templates/narkology2/./assets/fonts/Roboto Bold.eot?#iefix") format("embedded-opentype"),
    url("/local/templates/narkology2/./assets/fonts/Roboto Bold.woff2") format("woff2"),
    url("/local/templates/narkology2/./assets/fonts/Roboto Bold.woff") format("woff"),
    url("/local/templates/narkology2/./assets/fonts/Roboto Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: bold;
}
@font-face {
  font-family: "Roboto";
  src: url("/local/templates/narkology2/./assets/fonts/Roboto Medium.eot");
  src: local("Roboto Medium"),
    url("/local/templates/narkology2/./assets/fonts/Roboto Medium.eot?#iefix") format("embedded-opentype"),
    url("/local/templates/narkology2/./assets/fonts/Roboto Medium.woff2") format("woff2"),
    url("/local/templates/narkology2/./assets/fonts/Roboto Medium.woff") format("woff"),
    url("/local/templates/narkology2/./assets/fonts/Roboto Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("/local/templates/narkology2/./assets/fonts/Roboto.eot");
  src: local("Roboto"),
    url("/local/templates/narkology2/./assets/fonts/Roboto.eot?#iefix") format("embedded-opentype"),
    url("/local/templates/narkology2/./assets/fonts/Roboto.woff2") format("woff2"),
    url("/local/templates/narkology2/./assets/fonts/Roboto.woff") format("woff"),
    url("/local/templates/narkology2/./assets/fonts/Roboto.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: "Open Sans";
  font-size: 0.5208335vw;
  font-style: normal;
  font-weight: normal;
  -webkit-animation: bugfix infinite 1s;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
body {
  font-style: normal;
  font-weight: normal;
  -webkit-animation: bugfix infinite 1s;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
input,
textarea {
  -webkit-animation: bugfix infinite 1s;
  line-height: inherit;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  color: inherit;
}
a {
  color: unset;
}
a,
a:hover {
  text-decoration: none;
}
button,
input,
a,
textarea {
  outline: none;
  cursor: pointer;
  font: inherit;
}
button:focus,
input:focus,
a:focus,
textarea:focus {
  outline: none;
}
button:active,
input:active,
a:active,
textarea:active {
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  padding: 0;
}
p {
  margin-top: 0;
  margin-bottom: 0;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
button {
  border: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
@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")
    format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.heading__c .tl1 {
  margin: 0;
}
.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(0px, 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;
}
.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);
  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-slide,
.swiper-3d .swiper-cube-shadow {
  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-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  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: rgba(0, 0, 0, 0);
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
body {
  color: #1d1e1f;
  font-family: sans-serif;
}
.lock body {
  overflow: hidden;
  touch-action: none;
}
.disable-margin section {
  margin-top: 6rem !important;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  position: relative;
  background-color: white;
}
.wrapper._header-white {
  background-color: #edeef3;
}
.wrapper._header-light {
  background-color: #edeef3;
  color: #1e2326;
}
.container {
  width: 156rem;
  margin: 0 auto;
}
main {
  flex-grow: 1;
}
main section {
  margin: 18rem 0 0;
}
main section._first {
  margin: 3.2rem 0 0rem;
}
.diagnosis-targets._4 .diagnosis-targets__list {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.diagnosis-targets._4 .section-heading .txt32 {
  max-width: 102rem;
}
.regular {
  font-weight: 400 !important;
}
.tl-logo {
  font-family: "Geometria", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1.44px;
}
.tl1 {
  font-family: "Geometria", sans-serif;
  font-weight: 700;
  font-size: 6.2rem;
  line-height: 120%;
}
.tl2 {
  font-family: "Geometria", sans-serif;
  font-weight: 500;
  font-size: 5.2rem;
  line-height: 120%;
}
.txt32 {
  font-family: "Gilroy";
  font-size: 3.2rem;
  line-height: normal;
  font-weight: 500;
}
.txt32._medium {
  font-weight: 500;
}
.txt28 {
  font-family: "Gilroy";
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.txt28._medium {
  font-weight: 500;
}
.txt21 {
  font-family: "Gilroy";
  font-size: 2.1rem;
  line-height: 90%;
  font-weight: 500;
}
.txt21._medium {
  font-weight: 500;
}
.txt20 {
  font-family: "Gilroy";
  font-size: 2rem;
  line-height: 130%;
  font-weight: 400;
}
.txt20._medium {
  font-weight: 500;
}
.txt16 {
  font-family: "Gilroy";
  font-size: 1.6rem;
  line-height: 130%;
  font-weight: 500;
}
.txt16._medium {
  font-weight: 500;
}
.txt14 {
  font-family: "Gilroy";
  font-size: 1.4rem;
  line-height: normal;
  font-weight: 400;
}
.txt14._medium {
  font-weight: 500;
}
.swiper-navigation {
  display: flex;
  gap: 1.2rem;
}
.swiper-navigation .swiper-btn {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: #283442;
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-white-small.svg);
  background-position: center;
  background-size: 1rem 1.8rem;
  background-repeat: no-repeat;
  transition: background-color 0.5s, background-position 0.1s;
}
.swiper-navigation .swiper-btn:active {
  background-position: 70% 50%;
}
.swiper-navigation .swiper-btn:disabled {
  opacity: 70%;
  cursor: default;
  background-position: 50% 50% !important;
}
.swiper-navigation .swiper-btn-prev {
  transform: rotate(180deg);
}
.swiper-pagination-current {
  font-family: "Gilroy";
  font-size: 3.2rem;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}
.swiper-pagination-total {
  font-family: "Gilroy";
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
  text-align: left;
}
.btn-radio-arrow {
  display: block;
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: #283442;
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-white-full.svg);
  background-position: center;
  background-size: 2.4rem 2rem;
  background-repeat: no-repeat;
  transition: background-color 0.5s, background-position 0.1s;
}
.btn-radio-arrow-hover {
  cursor: pointer;
}
.btn-social {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.btn-social-icon {
  width: 6.2rem;
  height: 6.2rem;
  transition: background-color 0.5s;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.btn-social-icon svg {
  width: 50%;
  height: 50%;
  transition: fill 0.1s;
}
.btn-social-icon svg path {
  transition: fill 0.1s, stroke 0.1s;
}
.btn-underline {
  display: flex;
  gap: 0.8rem;
}
.btn-underline svg,
.btn-underline img {
  width: 2.4rem;
  height: 2.4rem;
}
.btn-primary {
  padding: 2rem 3.2rem;
  box-sizing: border-box;
  border-radius: 10rem;
  transition: background-color 0.1s, color 0.1s;
  width: max-content;
  border: 0.2rem solid rgba(0, 0, 0, 0);
  display: flex;
  height: fit-content;
}
.btn-primary-text {
  display: flex;
  align-items: center;
}
.btn-primary._arrow .btn-primary-text::after {
  content: " ";
  display: block;
  width: 2.4rem;
  height: 2rem;
  flex-shrink: 0;
  margin-left: 1.2rem;
  background-position: center;
  background-size: contain;
}
.btn-primary._white {
  background-color: #fff;
}
.btn-primary._white._arrow .btn-primary-text:after {
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-black-full.svg);
}
.btn-primary._blue {
  background-color: #0982c6;
  color: #fff;
}
.btn-primary._blue._arrow .btn-primary-text:after {
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-white-full.svg);
}
.btn-second {
  box-sizing: border-box;
  padding: 0.8rem 1.8rem;
  border-radius: 10rem;
  border: 0.1rem solid rgba(0, 0, 0, 0);
  transition: border-color 0.5s, background-color 0.5s, color 0.5s;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-second._blue {
  background-color: #0982c6;
  color: #fff;
}
.btn-second._white {
  background-color: #fff;
  color: #1d1e1f;
}
.btn-arrow {
  padding-right: 3.2rem;
  position: relative;
  width: max-content;
}
.btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: right 0.5s;
  width: 2rem;
  height: 2rem;
}
.btn-arrow._black::after {
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-black-full.svg);
}

.rehabilitation-stages .switch-list__body-list-e-drop-target {
  box-shadow: none;
  display: grid;
  grid-template-columns: 46.6rem 1fr auto;
  gap: 2rem;
  justify-content: space-between;
}
.no-hospital .marked-list-check li,
.faq .marked-list-check li,
.rehabilitation-stages .marked-list-check li {
  position: relative;
  padding-left: 3rem;
}
.no-hospital .marked-list-check li::before,
.faq .marked-list-check li::before,
.rehabilitation-stages .marked-list-check li::before {
  width: 1.6rem;
  height: 1.6rem;
  top: 0;
}

.btn-switch-list {
  padding: 3.2rem;
  box-sizing: border-box;
  border: 0.1rem solid #b7d3e3;

  border-radius: 10rem;
  transition: background-color 0.5s, color 0.5s;
  display: flex;
  justify-content: space-between;
}
.btn-switch-list .btn-radio-arrow {
  transition: transform 0.5s;
  transform: rotate(180deg);
}
.btn-switch-list._opened {
  background-color: #283442 !important;
  color: #fff;
  cursor: default;
}
.btn-switch-list._opened .btn-radio-arrow {
  transform: rotate(0deg);
}
.drop-down-container._relative {
  display: grid;
  grid-template-rows: min-content 0fr;
  transition: grid-template-rows 0.5s;
}
.drop-down-container._relative._opened {
  grid-template-rows: min-content 1fr;
}
.drop-down-content._relative {
  overflow: hidden;
  height: 100%;
}
.drop-down-target {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drop-down-target._opened .drop-down-icon {
  transform: rotate(270deg);
}
.drop-down-target._opened .drop-down-icon._small {
  transform: rotate(180deg);
}
.drop-down-icon {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: #1d1e1f;
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-white-full.svg);
  background-position: center;
  background-size: 2.4rem 2rem;
  background-repeat: no-repeat;
  transition: background-color 0.5s, transform 0.5s;
  transform: rotate(90deg);
}
.drop-down-icon._small {
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-bottom-black-small.svg);
  transform: rotate(0);
  background-color: rgba(0, 0, 0, 0);
  width: 3.6rem;
  height: 3.6rem;
  background-size: contain;
}
.coding-steps__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}
.coding-steps__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.coding-steps__text {
  display: none;
}
.accordion-block button {
  padding: 3.2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #1e2326;
  background-color: white;
  border-radius: 3.2rem;
  transition: all 0.3s ease;
}
.accordion-block button:hover,
.accordion-block button.active {
  color: white;
  background-color: #283442;
}

.accordion-block button.active .drop-down-icon {
  transform: rotate(270deg);
  background-color: white;
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-black-full.svg);
}
.accordion-text {
  display: none;
}

.coding-steps__text {
  padding: 3.2rem;
  height: auto;
  color: rgba(29, 30, 31, 0.6);
  border-radius: 3.2rem;
  border: 1px solid #b7d3e3;
  height: 100%;
}
.coding-steps__text p {
  max-width: 57.7rem;
}

.accordion-text.active,
.coding-steps__text.active {
  display: flex;
}
.tag {
  padding: 0.2rem;
  padding-right: 1.6rem;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
}
.tag-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #f6fcff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tag-icon img,
.tag-icon svg {
  width: 3.2rem;
  height: 3.2rem;
}
.tag._small .tag-icon {
  width: 3.2rem;
  height: 3.2rem;
}
.tag._small .tag-icon img,
.tag._small .tag-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  width: 1.6rem;
  height: 1.6rem;
}
.marked-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.marked-list-check {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.marked-list-check .txt16 {
  font-weight: 400;
}
.marked-list-check li {
  position: relative;
  padding-left: 4rem;
}
.marked-list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(/local/templates/narkology2/./assets/images/icons/marked-list-check.svg);
  background-size: cover;
}
.marked-list li {
  position: relative;
  padding-left: 2.2rem;
}

.marked-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(/local/templates/narkology2/./assets/images/icons/marked-list.svg);
  background-size: cover;
}
.policy .heading__c-main-slider-e-body {
  padding-left: 0;
}
.policy__title {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 0.1rem solid #b7d3e3;
}
.news-detail__body ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.news-detail__body ul li {
  max-width: 77rem;
  margin: auto;
  position: relative;
  padding-left: 2.2rem;
  font-family: "Gilroy";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.news-detail__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(/local/templates/narkology2/./assets/images/icons/marked-list.svg);
  background-size: cover;
}

.marked-list-dot li {
  position: relative;
  padding-left: 1.8rem;
}

.marked-list-dot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 0.6rem;
  height: 0.6rem;
  background-image: url(/local/templates/narkology2/./assets/images/icons/marked-list-dot.svg);
  background-size: 0.6rem 0.6rem;
}
.switch-list {
  display: grid;
  grid-template-columns: 50rem auto;
  gap: 3.2rem;
}
.switch-list._coding {
  grid-template-columns: 1fr 1fr;
}
.switch-list__nav {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.switch-list__body {
  overflow: hidden;
  width: 100%;
}
.switch-list__body-list {
  display: flex;
  flex-wrap: nowrap;
}
.switch-list__body-list-e {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.switch-list__body-list-e-text {
  padding: 3.2rem;
  border: 2px solid #e2f0f9;
  border-radius: 3rem;
}
.switch-list__body-list-e-drop-target {
  width: 100%;
  padding: 3.2rem;
  box-sizing: border-box;
  border-radius: 3.2rem;
  background-color: #f6fcff;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  color: #1e2326;
}
.switch-list__body-list-e-drop-target._price {
  display: grid;
  grid-template-columns: 46.6rem 1fr auto;
}
.switch-list__body-list-e-drop-taget-sub._price {
  margin-left: 13rem;
}
.switch-list__body-list-e-drop-body {
  margin-top: 2.4rem;
  box-sizing: border-box;
  padding: 3.2rem;
  border-radius: 3.2rem;
  border: 0.1rem solid #b7d3e3;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
.out-specialists .specialist {
  border-radius: 3.2rem;
  background-color: white;
  height: auto;
  /* box-shadow: 8px 0 5px rgba(40, 52, 66, 0.12); */
  overflow: hidden;
  padding-bottom: 2.4rem;
}

.out-specialists .swiper-wrapper {
  align-items: stretch;
}
.specialist__img {
  display: flex;
  position: relative;
  background-color: #e2f0f9;
  height: 32rem;
}
.out-specialists .btn-arrow {
  margin-top: auto;
  margin-bottom: 0px;
  margin-left: 3.2rem;
  width: min-content;
}
.specialist__img img {
  object-fit: cover;
  object-position: top;
}
.specialist__img .tag {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
}
.specialist__c {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.specialist__info {
  border-top: none;
  padding: 2.4rem 3.2rem 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.specialist__info a {
  width: fit-content;
}
.input-text {
  display: grid;
  gap: 0.4rem 0;
  position: relative;
}
.input-text._error .input-text-placeholder {
  color: #d93838;
}
.input-text._error .input-text-placeholder::after {
  color: #d93838;
}
.input-text._error input,
.input-text._error textarea {
  border-color: #d93838;
}
.input-text._error .input-phone {
  border-color: #d93838;
}
.input-text-placeholder {
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.6rem 2.4rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 120%;
  color: rgba(29, 30, 31, 0.6);
}
.input-text-placeholder_wh {
  color: #fff;
}
.input-text-placeholder::after {
  content: attr(data-end);
  color: #0982c6;
}
.input-text textarea {
  height: 100%;
}
.input-text input,
.input-text textarea {
  border-radius: 1rem;
  border: 0.1rem solid #b7d3e3;
  padding: 1.4rem 1.6rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 130%;
  resize: none;
  position: relative;
  z-index: 3;
  height: fit-content;
}
.input-text input.input-text_bg,
.input-text textarea.input-text_bg {
  height: 5.36rem;
}
.input-text input:focus,
.input-text textarea:focus {
  border-color: #0982c6;
}
.input-text input:focus ~ .input-text-placeholder,
.input-text textarea:focus ~ .input-text-placeholder {
  opacity: 0;
}
.input-text input::placeholder,
.input-text textarea::placeholder {
  color: rgba(0, 0, 0, 0);
}
.input-text-error-msg {
  grid-column: 1;
  grid-row: 2;
  min-height: 1.5rem;
  color: #d93838;
  font-family: Roboto;
  font-size: 1.2rem;
  font-weight: 400;
  font-weight: 500;
  line-height: 110%;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.input-text-bg {
  position: absolute;
  z-index: 1;
  border: 0.2rem solid rgba(0, 0, 0, 0);
  border-radius: 0.3rem;
  box-sizing: border-box;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  height: 5.36rem;
}
.checkbox {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.checkbox-hiden {
  cursor: pointer;
  font-weight: 500;
}
.checkbox-hiden input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.checkbox-hiden input:checked + span {
  color: #0982c6;
  font-weight: 700;
}
.checkbox_light .checkbox-check {
  border-color: rgba(29, 30, 31, 0.6);
}
.checkbox input {
  position: absolute;
  opacity: 0;
}
.checkbox input:checked + .checkbox-check {
  background-color: #0982c6;
}
.checkbox input:checked + .checkbox-check svg,
.checkbox input:checked + .checkbox-check img {
  opacity: 1;
}
.checkbox._error {
  color: #d93838 !important;
}
.checkbox-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border: 0.2rem solid #0982c6;
  flex-shrink: 0;
}
.checkbox-check svg,
.checkbox-check img {
  opacity: 0;
  width: 1rem;
  height: 0.7rem;
}
.ajax-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
}
.ajax-pagination-btn {
  border-radius: 50%;
  background-color: #0982c6;
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-white-small.svg);
  background-position: center;
  background-size: 30%;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
}
.ajax-pagination-btn_prev {
  transform: rotate(180deg);
}
.ajax-pagination-count {
  color: rgba(29, 30, 31, 0.6);
  font-family: Roboto;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 110%;
  text-align: left;
}
.ajax-pagination-count._current {
  color: #1d1e1f;
  font-size: 3.2rem;
}
.col-bl {
  color: #0982c6;
}
.col-wh {
  color: #fff;
}
.col-gr {
  color: rgba(29, 30, 31, 0.6);
}
.col-black {
  color: #1d1e1f;
}
.bg-dark {
  background-color: #283442 !important;
}
.bg-wh {
  background-color: #fff !important;
}
.bg-bl {
  background-color: #0982c6;
}
.txtup {
  text-transform: uppercase;
}
.rubles::after {
  content: "₽";
}
.circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  padding-top: 0.2rem;
}
.circle._big {
  width: 7.4rem;
  height: 7.4rem;
}
.heading__side-add {
  padding: 2.4rem;
  border-radius: 3.2rem;
  background: rgba(40, 52, 66, 0.65);
  backdrop-filter: blur(8px);
  z-index: 5;
  height: max-content;
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  color: #fff;
  max-width: 50rem;
  background-image: url(/local/templates/narkology2/./assets/images/side-add-back.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 53%;
}
.heading__side-add .tl2 {
  margin-top: 4.2rem;
  margin-right: 0;
  margin-left: auto;
}
.section-heading {
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
}
.section-heading._center {
  justify-content: center;
}
.section-footer {
  width: 100%;
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
[data-fancybox] {
  cursor: zoom-in;
}
.fancybox__container {
  backdrop-filter: 1rem;
  -webkit-backdrop-filter: 1rem;
  --fancybox-bg: rgba(25, 31, 43, 0.8);
}
.fancybox__toolbar {
  --f-button-bg: rgba(25, 31, 43, 0.8);
  --f-button-hover-bg: rgba(25, 31, 43, 0.8);
  --f-button-active-bg: rgba(25, 31, 43, 0.8);
}
.price-from::before {
  content: "от ";
  font-size: 50%;
}
.price-from::after {
  content: " ₽";
  font-size: 50%;
}

.diagnosis-first .section-heading {
  max-width: 93.1rem;
}
.advantages-slide {
  display: grid;
  grid-template-rows: 22.6rem auto;

  height: auto;
  align-items: stretch;
  color: #1e2326;
}

.advantages-slide__img {
  display: flex;
}
.advantages-slide__img img {
  object-position: center;
  border-radius: 3.2rem 3.2rem 0 0;
}
.advantages-slide__footer {
  border-radius: 0 0 3.2rem 3.2rem;
  background-color: white;
  padding: 3.2rem 2.4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1.2rem;
  height: auto;
}

.after-heal__list {
  display: flex;
  justify-content: space-between;
}
.after-heal__list-e {
  position: relative;
  border-radius: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0rem 2.5rem 2rem;
  text-align: center;
  display: flex;
  height: 37rem;
  max-width: 51rem;
  width: 100%;
  color: white;
}
.specialist__info .txt16 {
  font-weight: 400;
}
.after-heal__text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border-radius: 2.4rem;
  background: rgba(40, 52, 66, 0.6);
  margin-bottom: 0;
  margin-top: auto;
  z-index: 1;
}
.after-heal__list-e-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 3.2rem;
}
.after-heal__list-e-img img {
  object-fit: cover;
}

.blue-banner__two .blue-banner__img {
  width: 41.6rem;
  margin-left: 4rem;
}

.blue-banner__two .container {
  background-image: url(/local/templates/narkology2/./assets/images/blue-banner-back_2.svg);
  background-repeat: no-repeat;
  background-size: 41% 100%;
  gap: 22rem;
}

.blue-banner__two .blue-banner__body {
  padding: 2.5rem 6rem 6rem 0;
  justify-content: space-between;
}

.blue-banner__two .tag {
  margin-left: auto;
  margin-right: 0;
}
.blue-banner .container {
  display: flex;
  justify-content: space-between;
  border-radius: 3.2rem;
  background-color: #f6fcff;
  overflow: hidden;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
}
.blue-banner__help .container {
  background-image: url(/local/templates/narkology2/./assets/images/help-back.svg);
  background-repeat: no-repeat;
  background-position: bottom 0 right -10rem;
  background-size: 57% 100%;
  display: flex;
  align-items: center;
}

.blue-banner__help .blue-banner__body {
  padding: 2.8rem 0 2.8rem 8rem;
  justify-content: space-between;
}
.blue-banner__help .blue-banner__body-row {
  flex-direction: row;
  gap: 3.2rem;
  align-items: center;
}
.blue-banner__help .tl2 {
  max-width: 69rem;
}
.blue-banner__help .blue-banner__img {
  width: 55rem;
  height: 41rem;
  margin-right: 3.9rem;
}
.blue-banner__help .tag {
  background-color: #d8ebf8;
}
.blue-banner__body {
  padding: 2.8rem 0rem 2.8rem 4.8rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.blue-banner__body-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blue-banner__img {
  display: flex;
  width: 37.5%;
  height: 100%;
  flex-shrink: 0;
}
.blue-banner__img img {
  object-fit: contain;
  object-position: bottom;
}
.clinic-photo-slide {
  display: flex;
  border-radius: 3.2rem;
  overflow: hidden;
  width: 100%;
  height: 28.6rem;
}
.clinic-photo-slide img {
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  transition: scale 0.5s;
}
.detox-complect__slide {
  border-radius: 3.2rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: 31rem auto;
}
.detox-complect__slide-img {
  width: 100%;
  display: flex;
}
.detox-complect__slide-img img {
  object-position: center;
}
.detox-complect__slide-text {
  background-color: #fff;
  padding: 3.2rem 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.detox-stages__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.2rem;
}
.detox-stages__list-e {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}
.detox-stages__list-e-bottom {
  width: 100%;
  border: 0.1rem solid #b7d3e3;
  border-radius: 3.2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 3.2rem;
  text-align: center;
  background-color: white;
}
.diagnosis-first__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}
.diagnosis-first__list-e {
  border-radius: 3.2rem;
  border: 0.1rem solid #b7d3e3;
  background: #f6fcff;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3.2rem;
  box-sizing: border-box;
}
.diagnosis .container {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 16rem;
}
.diagnosis__left {
  display: flex;
  flex-direction: column;
  gap: 10.6rem;
}
.diagnosis__left .txt16 {
  opacity: 0.8;
}
.diagnosis__right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.diagnosis__right-e {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  border-radius: 10rem;
  border: 0.1rem solid #b7d3e3;
  background: #f6fcff;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
}
.diagnosis__right-e-img {
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 6.7rem;
  height: 6.7rem;
}
.diagnosis__right-e-img img {
  width: 60%;
  height: 60%;
}
.family .container {
  border-radius: 3.2rem;
  background-color: #f6fcff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  padding: 5.4rem 2.4rem 2.4rem;
  gap: 3.2rem;
}
.family__img {
  width: 100%;
  height: 47rem;
  display: flex;
  border-radius: 3.2rem;
  overflow: hidden;
}
.family__img img {
  object-fit: cover;
  object-position: center;
}
.footer {
  margin-top: 18rem;
  padding-bottom: 4rem;
  background-color: #283442;
  border-radius: 3.2rem 3.2rem 0 0;
  padding: 6rem;
  color: #fff;
}
.footer__c-list .txt16,
.footer__c-nav .txt16 {
  font-weight: 400;
}
.footer__c-icons {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 1.6rem;
}
.footer__c-icons img {
  width: 4.8rem;
  height: 4.8rem;
}
.footer__c-btm {
  display: flex;
  gap: 6rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 0.1rem solid #b7d3e3;
  padding-top: 2.4rem;
  margin-top: 6rem;
}
.footer .header__c-top-logo img {
  width: 8.1rem;
  height: 6.9rem;
}
.footer__c {
  display: grid;
  grid-template-columns: max-content;
  justify-content: space-between;
  gap: 3rem;
  grid-template-areas: "logo service drops nav" "social service drops nav" "confa service drops nav";
}
.footer__c ._service {
  grid-area: service;
}
.footer__c ._logo {
  grid-area: logo;
}
.footer__c ._drops {
  grid-area: drops;
}
.footer__c ._nav {
  grid-area: nav;
}
.footer__c ._social {
  grid-area: social;
}
.footer__c ._confa {
  grid-area: confa;
}
.footer__c-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer__c-list .txt20 {
  margin-bottom: 2rem;
}
.footer__c-list a:hover {
  color: #0982c6;
}
.footer__c-nav {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  height: fit-content;
}
.footer__c-nav a:hover {
  color: #0982c6;
}
.granny-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.6rem;
}
.granny-banner__text .tl1 {
  margin-bottom: 3.2rem;
}
.granny-banner__text .txt20 {
  margin-bottom: 1.6rem;
}
.granny-banner__img {
  width: 100%;
  display: flex;
  height: 41rem;
  overflow: hidden;
  border-radius: 3rem;
}
.granny-banner__img img {
  object-fit: cover;
}
._header-white .header {
  --col-main: rgba(255, 255, 255, 1);
  --col-blue: rgba(255, 255, 255, 1);
  --col-blue-light: rgba(255, 255, 255, 1);
  --col-green: rgba(255, 255, 255, 1);
}
._header-white .header .header__c-top .btn-primary._blue._arrow {
  background-color: #fff;
  color: #1d1e1f;
  border-color: #fff;
}
._header-white
  .header
  .header__c-top
  .btn-primary._blue._arrow
  .btn-primary-text:after {
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-black-full.svg);
}
.header {
  user-select: none;
  position: absolute;
  z-index: 111;
  top: 0;
  left: 0;
  width: 100%;
  --col-main: #1e2326;
  --col-blue: #0982c6;
  --col-blue-light: #ecf8ff;
  --col-hover: #0982c6;
  --col-white: rgba(255, 255, 255, 1);
  --col-green: rgba(21, 211, 100, 1);
  color: var(--col-main);
}
.header-wrp {
  position: relative;
}
.header__c {
  display: flex;
  flex-direction: column;
}
.header__c-bottom._border .header__c-bottom-e {
  border: 0.1rem solid #b7d3e3;
}
.header__c-top._border {
  border-bottom: 0.1rem solid #b7d3e3;
}
.header__c-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2rem 0 1rem;
  box-sizing: border-box;
  align-items: center;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 113;
}
.header__c-top-row {
  display: flex;
  gap: 3rem;
}
.header__c-top-logo {
  display: flex;
  gap: 1rem;
  color: var(--col-main);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: min-content;
}
.header__c-top-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.8rem; 
  height: 7.8rem; 
  background-color:#0982C6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.header__c-top-logo img {
  width: 10.4rem;
  height: 7.8rem;
  flex-shrink: 0;
}
.header__c-top-modal {
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 9rem;
  height: 9rem;
  align-items: center;
  justify-content: center;
  z-index: 20;
  position: relative;
  transition: all 0.5s;
}
.header__c-top-modal span {
  display: block;
  width: 4rem;
  height: 1px;
  background-color: var(--col-main);
  transition: all 0.5s;
}
.header__c-top-social {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0);
  color: var(--col-main);
  background-color: #fff;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__c-top-social svg {
  width: 50%;
  height: 50%;
}
.header__c-bottom {
  margin-top: 2.4rem;
  width: 100%;
  display: flex;
  gap: 2rem;
}
.header__c-bottom-e {
  width: 100%;
  padding: 0.8rem 0;
  border-radius: 3rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  transition: background-color 0.2s, color 0.2s;
}
.header__c-bottom-e-dd {
  position: relative;
}
.header__c-bottom-e-dd._cities {
  border: none;
  padding: 0 2rem 0;
  border-radius: 5px 5px 0 0;
}
.header__c-bottom-e-dd._cities svg {
  width: 2.4rem;
  height: 2.4rem;
  transform: rotate(0) !important;
}
.header__c-bottom-e-dd._twin {
  flex-shrink: 0;
  width: 25rem;
}
.header__c-bottom-e-dd-target {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__c-bottom-e-dd svg {
  width: 1.6rem;
  height: 0.8rem;
}

.header__c-bottom-e._cities:hover {
  background-color: transparent !important;
  color: #fff !important;
  border-color: transparent;
}
.header__c-bottom-e-dd._cities:hover svg {
  stroke: transparent;
}

.header__c-bottom-e-dd:hover {
  background-color: #fff !important;
  color: #1d1e1f !important;
  border-color: #0982c6;
}
.header__c-bottom-e-dd:hover .header__c-bottom-e-dd-content,
.header__c-bottom-e-dd:hover .header__c-bottom-e-dd-twin {
  max-height: 100vh;
  transition: max-height 0.1s;
  overflow: visible;
}
.header__c-bottom-e-dd:hover svg {
  stroke: #0982c6;
  transform: rotate(180deg);
}
.header__c-bottom-e-dd-content {
  z-index: -1;
  width: 100%;
  border-radius: 0 0 3rem 3rem;
  position: absolute;
  top: calc(100% - 1rem);
  left: 0;
  overflow: hidden;
  max-height: 0;
  background-color: #fff;
}
.header__c-bottom-e-dd-content .wrp {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.header__c-bottom-e-dd-content .wrp a:hover {
  text-decoration: underline;
  color: #0982c6;
}
.header__c-bottom-e-dd-twin {
  z-index: -1;
  min-width: 100%;
  position: absolute;
  top: calc(100% - 1rem);
  left: 0;
  color: #1d1e1f;
  overflow: hidden;
  max-height: 0;
}
.header__c-bottom-e-dd-twin-c {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.header__c-bottom-e-dd-twin-c::after {
  position: absolute;
  height: 100%;
  width: calc(25rem - 2px);
  top: 0;
  left: 0;
  content: "";
  border-radius: 0 0 3rem 3rem;
  background-color: #fff;
  z-index: -1;
}
.header__c-bottom-e-dd-twin-c a:hover {
  text-decoration: underline;
  color: #0982c6;
}
.header__c-bottom-e-dd-twin-c-link {
  text-wrap: wrap;
  max-width: 21rem;
  padding: 1rem 0;
  box-sizing: border-box;
}
.header__c-bottom-e-dd-twin-c-cats {
  position: absolute;
  top: 0;
  left: calc(100% - 3rem);
  min-width: 50rem;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.header__c-bottom-e-dd-twin-c-cats-wrp {
  background-color: #fff;
  border-radius: 0 3rem 3rem 3rem;
  padding: 4rem 1rem;
  display: none;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  min-height: 100%;
  flex-grow: 1;
}
.header__c-bottom-e-dd-twin-c-cats-wrp:hover {
  display: flex;
}
.header._opened .header__modal-wrp {
  transform: translateY(0);
}
.header._opened .header__c-top-logo {
  color: #1d1e1f;
}
.header._opened .header__c-top {
  width: 100%;

  background-color: #edeef3;
  z-index: 113;
  position: absolute;
  left: 0;
  top: 0;
  padding: 2rem 3rem;
}
.header._opened .header__c-top-social[title="phone"] {
  border-color: #0982c6;
}
.header._opened .header__c-top-social[title="phone"] svg {
  fill: #0982c6;
}
.header._opened .header__c-top-social[title="wa"] {
  border-color: #15d364;
}
.header._opened .header__c-top-social[title="wa"] svg {
  fill: #15d364;
}
.header._opened .header__c-top-modal {
  gap: 1.5rem;
}
.header._opened .header__c-top-modal span {
  opacity: 0;
  width: 4.7rem;
  margin-left: 1.5rem;
  background-color: #1d1e1f;
}
.header._opened .header__c-top-modal span:first-of-type {
  opacity: 1;
  transform: rotate(45deg);
  transform-origin: left top;
}
.header._opened .header__c-top-modal span:last-of-type {
  opacity: 1;
  transform: rotate(-45deg);
  transform-origin: left bottom;
}
.heal-stages .btn-second{
  min-width: max-content;
}
.heal-stages._4 .heal-stages__list {
  grid-template-columns: 1fr 1fr;
}
.heal-stages._5 .heal-stages__list {
  grid-template-columns: 1fr 1fr 1fr;
}
.heal-stages__list {
  display: grid;
  gap: 3.2rem;
  grid-template-rows: 1fr 1fr;
}
.heal-stages__list-e {
  background: #f6fcff;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  border-radius: 3.2rem;
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  height: min-content;
}
.heal-stages__list-e-top {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.heal-stages__list-e-top button {
  margin-left: auto;
}
.heal-stages__list-e-bottom {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.license-slide {
  border-radius: 3.2rem;
  overflow: hidden;
  color: #fff;
}
.license-slide__img {
  border-radius: 3.2rem 3.2rem 0 0;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  height: 34.2rem;
  background-color: #fff;
  display: flex;
  border-top: 0.1rem solid #b7d3e3;
  border-right: 0.1rem solid #b7d3e3;
  border-left: 0.1rem solid #b7d3e3;
}
.license-slide__img img {
  width: 17.8rem;
  height: 25.6rem;
}
.license-slide__footer {
  padding: 2.4rem;
  box-sizing: border-box;
  background-color: #283442;
}
.must-detox .container {
  display: flex;
  gap: 3rem;
}
.must-detox__aside {
  position: sticky;
  height: fit-content;
  border-radius: 3rem;
  background-color: #f6fcff;
  padding: 2.4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 50rem;
  min-width: 50rem;
  background-image: url(/local/templates/narkology2/./assets/images/faq-back.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 55%;
}
.must-detox__aside .tl2 {
  margin-left: auto;
  margin-top: 3.6rem;
}
.must-detox__main {
  display: flex;
  flex-direction: column;
}
.must-detox__main .tl1 {
  margin-bottom: 3.2rem;
}
.no-hospital .container {
  border-radius: 3.2rem;
  background: #f6fcff;
  box-sizing: border-box;
  padding: 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
}

.no-hospital .tl1 {
  margin-bottom: 3.2rem;
  grid-column: span 2;
}
.no-hospital .txt32 {
  grid-column: span 2;
  width: 100%;
  margin-bottom: 3.2rem;
}
.no-hospital__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.our-services__list-e {
  border-radius: 3.2rem;
  background-color: #e2f0f9;
  overflow: hidden;
  background-color: #283442;
  color: #fff;
}
.our-services__list-e .btn-radio-arrow {
  background-color: #fff;
  background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-dark-full.svg);
}
.our-services__list-e-img {
  display: flex;
  max-width: 100%;
  height: 27.6rem;
}
.our-services__list-e-img img {
  height: 27.6rem;
}
.our-services__list-e-bottom {
  border-top: 0.1rem solid #b7d3e3;
  padding: 2.4rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.our-services .mobile.btn-primary {
  margin-top: 4.8rem;
}
.placement__c {
  display: flex;
  gap: 3.2rem;
  width: 100%;
}
.placement__c-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  border-radius: 3.2rem;
  overflow: hidden;
}
.placement__c .tl1 {
  font-size: 5.2rem;
  align-items: center;
}
.placement__c-slider-body {
  width: 100%;
  position: relative;
  background-color: #f6fcff;
}
.placement__c-slider-body .swiper-navigation {
  position: absolute;
  top: 4.4rem;
  right: 3.2rem;
  z-index: 10;
}
.placement__c-slider-body-card {
  height: 100%;
  padding: 3.2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.placement__c-slider-body-card-footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.placement__c-slider-body-card-footer-price::after {
  content: "₽ / сутки";
  font-family: "Gilroy";
  margin-left: 0.8rem;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.placement__c-slider-img {
  width: 100%;
}
.placement__c-slider-img-e {
  display: flex;
}
.placement__c-slider-img-e img {
  object-fit: cover;
  object-position: center;
}
.placement__c-license {
  border-radius: 3rem;
  border: 0.2rem solid #e2f0f9;
  padding: 3.2rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto min-content;
  gap: 2.5rem;
}
.placement__c-license-img {
  width: 18rem;
  height: 25rem;
  display: flex;
}
.placement__c-license-img img {
  object-fit: contain;
  object-position: center;
}
.placement__c-license-icon {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}
.placement__c-license-icon-main {
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e2f0f9;
  border-radius: 50%;
}
.placement__c-license-icon-main img {
  width: 60%;
  height: 60%;
}
.placement__c-license .txt20 {
  grid-column: span 2;
}
.prices-list__list {
  align-items: stretch;
}
.prices-list__list-e {
  border-radius: 3.2rem;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  background-color: #f6fcff;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 3.2rem;
  padding: 3.2rem;
  background-image: url(/local/templates/narkology2/./assets/images/prices-list_back.svg);
  background-repeat: no-repeat;
  background-position: right top;
  color: #1e2326;
  height: auto !important;
  background-size: 43% 100%;
}

.prices-list__list-e .line {
  width: 38.8rem;
}
.prices-list__list-e-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prices-list__list-e-row .txt28 {
  max-width: 32.9rem;
}
.prices + .prices-list {
  margin-top: 5rem;
}
.prices + .prices-list .section-heading {
  display: none;
}
.prices__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
.prices__list-e {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: 25.4rem 1fr max-content;
  border-radius: 3.2rem;
  overflow: hidden;
  background-color: white;
  border-radius: 3.2rem;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
}
.prices__list-e-img {
  border-radius: 3rem 3rem 0 0;
  display: flex;
  overflow: hidden;
  width: 100%;
}
.prices__list-e-img img {
  object-fit: cover;
  object-position: top;
}
.prices__list-e-tags {
  position: absolute;
  top: 1.8rem;
  left: 1.8rem;
  display: flex;
  width: 100%;
  gap: 2rem;
}
.prices__list-e-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: none;
}
.prices__list-e-mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 3.2rem;
  height: fit-content;
}
.prices__list-e-mid .txt16 {
  margin-left: 0.8rem;
}
.prices__list-e-bottom {
  box-sizing: border-box;
  padding: 0rem 3.2rem 3.2rem;
}
.review-slide {
  border-radius: 3.2rem;
  border: 0.1rem solid #b7d3e3;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 3.2rem;
  color: #1e2326;
}
.review-slide__body img {
  width: 100%;
  max-width: 100%;
}
.review-slide__footer-stars img {
  width: 3.4rem;
  height: 3.4rem;
}
.review-slide .line {
  width: calc(100% + 6.4rem);
  margin-left: -3.2rem;
}
.review-slide__top {
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
  box-sizing: border-box;
}
.review-slide__body {
  box-sizing: border-box;
}

.review-slide__body-short {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  line-clamp: 10;
  box-orient: vertical;
}

.review-slide__footer {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-slide__footer-stars {
  display: flex;
  gap: 1.2rem;
}
.two-stages__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}
.two-stages__list-e {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  border-radius: 3.2rem;
}
.two-stages__list-e .circle {
  position: absolute;
  top: 2.8rem;
  left: 2.8rem;
}
.two-stages__list-e-img {
  display: flex;
  border-radius: 3.2rem 3.2rem 0 0;
  overflow: hidden;
  height: 32rem;
}
.two-stages__list-e-img img {
  object-fit: cover;
  object-position: center;
}

.two-stages .marked-list-dot {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.two-stages__list-e-body {
  background-color: white;
  padding: 3.2rem 2.4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-right: 0.1rem solid #b7d3e3;
  border-bottom: 0.1rem solid #b7d3e3;
  border-left: 0.1rem solid #b7d3e3;
  border-top: none;
  border-radius: 0 0 3.2rem 3.2rem;
  flex-grow: 1;
}
.who-coding .container {
  background-color: #f6fcff;
  border-radius: 3.2rem;
  box-sizing: border-box;
  padding: 1.7rem 3.2rem 3.9rem;
}
.who-coding__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.who-coding__list-e {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.who-coding__list-e-img {
  display: flex;
  border-radius: 3rem;
  overflow: hidden;
  height: 23rem;
}
.who-coding__list-e-img img {
  object-fit: cover;
  object-position: center;
}
.who-coding__list-e-text {
  border-radius: 1rem;
  box-sizing: border-box;
  padding: 0.7rem 1.3rem;
  text-align: center;
  background-color: #fff;
}
.diagnosis-targets__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.2rem;
}
.diagnosis-targets__list-e {
  border-radius: 3.2rem;
  border: 0.1rem solid #b7d3e3;
  background-color: #f6fcff;
  padding: 3.2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
}
.diagnosis-targets__item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.heading__c-main-slider-e {
  padding-bottom: 11.6rem;
  background-image: url(/local/templates/narkology2/./assets/images/back.svg);
  background-repeat: no-repeat;
  background-size: 47.5rem 100%;
  bottom: 0;
  background-position: left -8.3rem center;
  flex-grow: 1;
}
.heading {
  min-height: 90rem;
  position: relative;
  margin-top: 0;
  box-sizing: border-box;
  padding-top: 17.5rem;
  padding-bottom: 5rem;
  display: flex;
}

.heading._two-side {
  padding-bottom: 13.4rem;
}
.heading._two-side .heading__c {
  gap: 3.2rem;
  margin-bottom: 2.6rem;
  margin-top: auto;
}
.heading._main {
  margin-bottom: 40.7rem;
}
.heading._main .heading__c {
  margin-top: 7.5rem;
}
.heading._two-side .container {
  display: flex;
  gap: 5rem;
  justify-content: space-between;
}
.heading__overlay {
  background-color: #000;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 0 0 3rem 3rem;
  overflow: hidden;
}
.heading__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  border-radius: 0 0 3rem 3rem;
  overflow: hidden;
}
.heading__bg img {
  object-fit: cover;
  object-position: center;
}
.heading__c {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.heading__c._center {
  justify-content: center;
}
.heading__c-row {
  display: flex;
  gap: 2rem;
}
.heading__c-row-social {
  display: flex;
  gap: 1rem;
  background-color: rgba(40, 52, 66, 0.65);
  border-radius: 4rem;
  box-sizing: border-box;
  padding: 2px;
}
.heading__c-main {
  margin-top: auto;
  margin-bottom: -29rem;
  width: 100%;
  z-index: 3;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 2rem;
}
.heading__c-main-slider {
  position: relative;
  width: 100%;
  border-radius: 3.2rem;
  overflow: hidden;
  background-color: #f6fcff;
  display: flex;
  flex-direction: column;
  max-width: 76.4rem;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
}
.heading__c-main-slider .swiper {
  width: 100%;
  height: 100%;
}
.heading__c-main-slider-e-top {
  display: flex;
  justify-content: space-between;
  padding: 4rem 4rem 2.6rem;
  gap: 3rem;
}
.heading__c-main-slider-e-top .txt16 {
  text-align: end;
  max-width: 15.6rem;
}
.heading__c-main-slider-e-top .tl1 {
  color: #283442;
  font-family: "Actay Wide";
  font-size: 6.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  max-height: 7.4rem;
}
.heading__c-main-slider-e-body {
  padding: 0 3.4rem 1.8rem;
}
.heading__c-main-slider-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: auto;
  border-top: 0.1rem solid #b7d3e3;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.heading__side {
  border-radius: 3.2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.4);

  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  overflow: hidden;
  position: relative;
  z-index: 3;
  height: fit-content;
  margin: auto 0 0 auto;
  position: relative;
  max-width: 50rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.heading__side._border {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.heading__side-commercial {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 10rem;
}
.heading__side-time {
  margin-left: auto;
  position: relative;
}
.heading__side-time::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #e2f0f9;
  width: 40rem;
  height: 40rem;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translate(-25%, -25%);
}
.heading__side-img {
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  height: 26rem;
}
.heading__side-img img {
  object-fit: cover;
  object-position: center;
}
.heading__side-middle {
  display: flex;
  gap: 3rem;
  padding: 2.4rem 3.2rem 1.6rem;
  box-sizing: border-box;
  justify-content: space-between;
  border-bottom: 0.1rem solid #b7d3e3;

  color: #283442;
}

.heading__side-middle .txt16 {
  text-align: end;
}
.heading__side-footer .btn-second {
  color: #0982c6;
}
.heading__side-footer {
  display: flex;
  gap: 3rem;
  padding: 3.2rem;
  box-sizing: border-box;
  justify-content: space-between;
  box-sizing: border-box;
}
.faq__c {
  display: grid;
  grid-template-columns: auto min-content;
  gap: 3.2rem;
}
.faq__c-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.correct-programm__c {
  background-color: #f6fcff;
  border-radius: 3.2rem;
  padding: 5.4rem 2.6rem 5.4rem 5.4rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;

  overflow: hidden;
}

.correct-programm__swiper {
  display: flex;
  max-width: 55rem;
  width: 100%;
  margin-left: 18.6rem;
}
.correct-programm__c .swiper {
  height: 50rem;

  width: 55rem;
  overflow: visible !important;

  position: relative;
}
.correct-programm__c-slide.swiper-slide-active {
  max-width: 55rem !important;
  padding: 0;
  margin: 0 !important;
}
.swiper-slide-active .correct-programm__c-slide-box {
  border: 0;
}
.correct-programm__c-slide-box {
  border-radius: 3.2rem;
  border: 0.1rem solid #b7d3e3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #283442;
}

.correct-programm__c .swiper .swiper-slide-next {
  margin-left: -8rem !important;
}

.correct-programm__c .swiper .correct-programm__c-slide:nth-of-type(3) {
  margin-left: -18rem;
}
.input-text textarea {
  min-height: 15rem;
}
.correct-programm__c .tl1 {
  grid-area: heading;
}
.correct-programm__c .swiper-navigation {
  bottom: 3rem;
  left: 3rem;
  grid-area: pagination;
  margin: 4rem 0 0;
  margin-left: auto;
}
.correct-programm__c-slide {
  height: 24rem;
  padding: 0 10.5rem;

  transition: border-color 0.5s, width 0.5s, height 0.5s, transform 0.5s,
    opacity 0.5s;
}
.correct-programm__c-slide._viewed {
  transform: translateY(-10rem);
  opacity: 0;
}
.correct-programm__c-slide-count {
  width: 7.4rem;
  height: 7.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.2rem solid #b7d3e3;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 4;
}
.correct-programm__c-slide .txt28 {
  transition: color 0.5s;
  color: #283442;
}

.correct-programm__c-slide .txt20 {
  display: none;
}
.correct-programm__c-slide p {
  z-index: 4;
}
.correct-programm__c-slide-img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3rem;
  display: flex;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
}
.correct-programm__c-slide-img img {
  object-fit: cover;
  object-position: center;
}
.correct-programm__c-slide-overlay {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  border-radius: 3.2rem;
  padding: 3rem;
  transition: background-color 0.5s;
}
.correct-programm__c-slide.swiper-slide-active {
  height: 50rem;
  width: 55rem;
  border-color: rgba(0, 0, 0, 0);
}
.correct-programm__c-slide.swiper-slide-active
  .correct-programm__c-slide-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}
.correct-programm__c-slide.swiper-slide-active .correct-programm__c-slide-img {
  opacity: 1;
}
.correct-programm__c-slide.swiper-slide-active .txt28 {
  color: #fff;
}
.correct-programm__c-slide.swiper-slide-active
  .correct-programm__c-slide-heading {
  margin-top: auto;
  margin-bottom: 0;
}
.correct-programm__c-slide.swiper-slide-active .txt20 {
  display: block;
}
.correct-programm__c-slide.swiper-slide-active
  .correct-programm__c-slide-count {
  border-color: #fff;
}
/* .correct-programm__c-text {
  grid-area: text;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 4rem 0;
} */
.correct-programm__c-text {
  margin: 0;
  position: absolute;
  bottom: 5.4rem;
  right: 40rem;
  z-index: 3;
  width: 34rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  grid-area: text;
}
.correct-programm__c .swiper-navigation {
  margin: 0;
  position: absolute;
  z-index: 3;
  top: 16rem;
  left: 5.4rem;
  /* transform: translateX(-100%); */
}

.bread .container {
  display: flex;
  gap: 1rem;
  margin-top: 22.5rem;
  font-weight: 400;
}
.bread .container a::after {
  content: "•";
  margin-left: 1rem;
}
.bread .container a:last-of-type {
  color: #0982c6;
}
.bread .container a:last-of-type::after {
  content: "";
}
.bread + section {
  margin-top: 6rem;
}
.article {
  border-radius: 3.2rem;
  background-color: #f6fcff;
  padding: 3.2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.article__img {
  grid-area: img;
  border-radius: 3rem;
  overflow: hidden;
  display: flex;
  max-height: 37.2rem;
  height: 100%;
}
.article__img img {
  object-fit: cover;
  object-position: center;
}
.article__heading {
  grid-area: heading;
  margin: 3.2rem 0 1.6rem;
}
.article__body {
  grid-area: text;
}
.article__link {
  grid-area: link;
  margin-top: 1.2rem;
  width: fit-content;
  background-color: #fff;
  color: #0982c6 !important;
  display: block;
  box-sizing: border-box;
  height: fit-content;
}
.article-two .article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "heading img" "text img" "link img";
  gap: 0 2rem;
  height: 31.5rem;
}
.article-shorted .article__body {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.article-two .article__heading {
  margin: 0;
}
.news-grid__list._4 {
  height: 68rem;
}

.article__heading {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-two .article__body {
  align-self: flex-end;
}
.article-two .article__link {
  align-self: flex-end;
}
.article-two .article__img {
  height: auto;
  max-height: 100%;
}
.coding-ways__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}
.coding-ways__list-e {
  display: flex;
  border-radius: 3.2rem;
  border: 0.1rem solid #b7d3e3;
  background-color: #f6fcff;
  gap: 2.8rem;
}
.coding-ways__list-e-img {
  border-radius: 3.2rem;
  display: flex;
  width: 25.8rem;
  height: 25.3rem;
  flex-shrink: 0;
  overflow: hidden;
}
.coding-ways__list-e-img img {
  object-fit: contain;
  object-position: center;
}
.coding-ways__list-e-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.3rem;
}
.coding-ways__list-e-body .txt16 {
  font-weight: 400;
  color: rgba(29, 30, 31, 0.6);
  max-width: 44.1rem;
}
.entity__c {
  background-color: #f6fcff;
  padding: 3.2rem;
  box-sizing: border-box;
  border-radius: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
}
.entity__c-e {
  border-top: 0.1rem solid #b7d3e3;
  padding-top: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.adv-process__c {
  display: grid;
  grid-template-columns: auto 50rem;
  gap: 2rem;
}
.adv-process__c-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  justify-content: space-between;
}
.adv-process__c-list-e {
  width: 100%;
  padding: 3.2rem;
  box-sizing: border-box;
  border-radius: 3.2rem;
  background-color: #f6fcff;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
}
.adv-process .btn-primary {
  background-color: transparent;
}
.how-analysis .container {
  border-radius: 3.2rem;
  background: #f6fcff;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  padding: 3.2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.how-analysis .section-heading {
  margin-bottom: 0;
}
.how-analysis .txt20 {
  font-weight: 400;
}
.how-analysis__list {
  display: flex;

  gap: 3.4rem;
  margin-top: 1.3rem;
}
.how-analysis__list-e {
  flex: 1;
  border-radius: 3.2rem;
  border: 0.1rem solid #b7d3e3;
  background: rgba(255, 255, 255, 0.4);
}
.how-analysis__list-e-top {
  padding: 2.4rem 1.4rem 2.4rem 2.4rem;
  box-sizing: border-box;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.how-analysis__list-e-bottom {
  padding: 2.4rem 2rem;
  box-sizing: border-box;
}
.contacts .section-heading {
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
}
.contacts__img {
  width: 100%;
  height: 62rem;
  display: flex;
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
}
.contacts__img img {
  object-fit: cover;
  object-position: center;
}
.contacts__img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
.contacts__list-e {
  border-radius: 3.2rem;
  border: 0.1rem solid #b7d3e3;
  padding: 3.2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  height: 24rem;
  background-color: #f6fcff;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  color: #1e2326;
}
.contacts__list-e svg {
  width: 7.4rem;
  height: 7.4rem;
}
.must-detox__aside .txt20 {
  font-weight: 400;
}
.contacts__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  margin-top: 5rem;
  height: 43.8rem;
}
.contacts .contacts__footer-form {
  border-radius: 3.2rem;
  border: 0.1rem solid #b7d3e3;
  padding: 3.2rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}
.contacts__footer-form button {
  width: 100%;
  justify-content: center;
}
.contacts__footer #map {
  border-radius: 3.2rem;
  overflow: hidden;
  height: 100%;
}

.line {
  height: 0.1rem;
  width: 100%;
  background-color: #b7d3e3;
}
.news-search__form {
  box-sizing: border-box;

  display: flex;
  gap: 2rem;

  position: relative;
}
.news-search__form-input {
  padding: 3.2rem;
  box-sizing: border-box;
  width: 100%;
  border-radius: 100px;
  border: 0.1rem solid #b7d3e3;
  background: #fff;
}
.news-search__form-submit {
  width: 9rem;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #283442;
  border-radius: 50%;
  flex-shrink: 0;
}
.news-search__form-submit svg {
  width: 50%;
  height: 50%;
}
.news-search__form-drop {
  position: absolute;
  top: calc(100% - 2rem);
  left: 0;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s;

  border-radius: 0 0 1rem 1rem;
}
.news-search__form-drop._opened {
  max-height: 100vh;
}
.news-search__form-drop-list {
  display: flex;
  flex-direction: column;
}
.news-search__form-drop-list a,
.news-search__form-drop-list p {
  border-radius: 10rem;
  margin: 1rem 15rem 1rem 3.2rem;
  padding: 2.2rem;
  box-sizing: border-box;
  background-color: #fff;
}
.news-grid._nogap {
  margin-top: 6rem;
}
.news-grid__list._3 {
  display: grid;
  height: 65rem;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.news-grid__list._3 li:first-of-type {
  grid-row: span 2;
}
.news-grid__list._3 li {
  width: 100%;
  height: 100%;
}
.news-grid__list._8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.6rem;
}
.news-grid__list._row {
  display: grid;
}
.news-grid__list._4 {
  display: grid;
}
.news-grid__list._2 {
  display: grid;
}

.news-heading ~ section {
  margin-top: 6rem;
}
.news-detail__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
}
.news-detail__top-date {
  flex-shrink: 0;
}
.news-detail__author {
  display: grid;
  grid-template-columns: 6rem auto;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-bottom: 6rem;
  border-bottom: 0.2rem solid #b7d3e3;
}
.news-detail .txt32 {
  margin: 0;
  padding-left: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  color: #1e2326;
  font-weight: 400;
}
.news-detail__author-img {
  grid-row: span 2;
  display: flex;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  height: 6rem;
}
.news-detail__author-img img {
  object-fit: cover;
}
.news-detail__author._big {
  border-radius: 3.2rem;
  background: #f6fcff;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  padding: 2px;
}
.news-detail__author._big .news-detail__author-img {
  background-color: #fff;
}
.news-detail__body {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  font-family: Gilroy;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2.4rem;
}
.news-detail__body-cosl,
.news-detail__body-text {
  max-width: 77rem;
  margin: auto;
  line-height: normal;
}
.news-detail__body-cosl {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
.news-detail section {
  margin: 0;
}
.news-detail__body h3 {
  font-family: "Actay Wide";
  font-weight: 700;
  font-size: 4rem;
  line-height: 110%;
}
.news-detail__body ._underline {
  text-decoration: underline;
}
.news-detail__body ._img {
  width: 100%;
  height: 67rem;
  border-radius: 3.2rem;
  overflow: hidden;
  display: flex;
}
.news-detail__body ._img img {
  object-fit: cover;
  object-position: center;
}
.news-detail__body ._numeric-text {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.specialists {
  margin-top: 5rem;
}
.specialists .btn-primary{
  margin: auto;
  margin-top: 6rem;
}
.specialists__detail-btn .btn-primary{
  margin: 0;
}
.specialists-item {
  border-radius: 3.2rem;
  overflow: hidden;
  box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  display: flex;
  flex-direction: column;
}
.specialists-item .specialist__info {
  flex-grow: 1;
  justify-content: space-between;
  padding: 2.4rem 3.2rem;
}
.specialists-item .specialist__info a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.specialists__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(53rem, auto);
  gap: 3.2rem;
}
.specialists__detail {
  display: grid;
  grid-template-columns: 50rem auto;
  gap: 5rem;
}
.specialists__detail-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.specialists__detail-left-img {
  height: 48rem;
  border-radius: 3.2rem;
  overflow: hidden;
  display: flex;
  background-color: #e2f0f9;
}
.specialists__detail-left-img img {
  object-fit: cover;
  object-position: top;
}
.specialists__detail-left-bottom {
  width: 100%;
  justify-content: center;
}
.specialists__detail-right {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.specialists__detail-right-top {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.specialists__detail-right-exp {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.specialists__detail-right-exp img {
  width: 2.8rem;
  height: 2.8rem;
}
.specialists__detail-right-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.specialists__detail-right-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.specialists__detail-right-tags-e {
  padding: 1.2rem 2rem;
  box-sizing: border-box;
  border-radius: 10rem;
  border: 0.1rem solid #b7d3e3;
}
.specialists__detail-btn .btn-primary {
  padding: 1.2rem 2rem;
}
.p404__c {
  margin-top: 22.5rem;
  margin-bottom: 3rem;

  padding: 3rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.p404__c-code {
  opacity: 0.2;
  font-size: 23rem;
  line-height: 105%;
  font-weight: 700;
}
.p404__c-code span {
  opacity: 0.5;
  color: #0982c6;
}
.p404 .txt21 {
  line-height: normal;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1111;
  width: 100vw;
  min-height: 100vh;
  top: 0;
  left: 0;
}
.modal-c-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-main {
  backdrop-filter: 1rem;
  -webkit-backdrop-filter: 1rem;
  background-color: rgba(10, 44, 104, 0.4);
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal._opened .modal__c {
  transform: translate(0, 0);
}
.modal__c {
  transform: translate(0, -50%);
  transition: transform 0.5s;
  position: relative;
  gap: 2rem;
  background-color: #fff;
  border-radius: 3rem;
  padding: 7rem 2.4rem;
  box-sizing: border-box;
}
.modal__c-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 2.4rem;
  top: 3rem;
  z-index: 10;
  background-image: url(/local/templates/narkology2/./assets/images/icons/x.svg);
  background-size: 1.4rem;
  background-position: center;
  background-repeat: no-repeat;
}
.modal__c._thx {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.modal__c._request {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.modal__c._request .form {
  font-family: "Roboto";
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.modal__c._request .form ._row {
  display: flex;
  gap: 2.4rem;
}
.mobile {
  display: none;
}
.heal-stages._5 .heal-stages__list-e:first-of-type {
  grid-column: 1 / span 2;
}
.article-two .article__body {
  -webkit-line-clamp: 3;

  line-clamp: 3;
}

.article__body {
  max-width: 40.8rem;
  grid-area: text;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

.article-shorted .article {
  height: 31rem;
}
.article-shorted .article__img {
  display: none;
}
@media (min-width: 48em) {
  .section-heading {
    gap: 10rem;
  }
  .family .container h2,
  .family .container p {
    max-width: 92rem;
  }

  .prices-list__list-e {
    margin-top: 3.2rem;
  }
  .heading__c-text {
    max-width: 50rem;
  }
  .article-shorted .article__body {
    margin-top: auto;
  }
  .article-shorted .article__heading {
    margin-top: 0;
  }
  .article-shorted .article__body {
    margin-top: auto;
  }
  .entity__c-e .txt16 {
    max-width: 44rem;
  }
  .how-analysis .txt20 {
    max-width: 60%;
  }
  .contacts__footer-form-row {
    grid-column: span 2;
  }
  .news-grid__list._row {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    height: 68rem;
    gap: 2rem;
  }
  .news-grid__list._4 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.4rem;
  }
  .news-grid__list._4 li:first-of-type {
    grid-row: span 2;
  }
  .news-grid__list._4 li:nth-child(2) {
    grid-row: span 2;
  }
  .news-grid__list._2 {
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    gap: 2.4rem;
  }
  .news-detail__author._big {
    grid-template-rows: auto auto auto;
    gap: 2rem;
    grid-template-columns: 24rem auto;
    margin-top: 6rem;
  }
  .news-detail__author._big .news-detail__author-img {
    height: 24rem;
    grid-row: span 3;
  }
  .news-detail__author._big .news-detail__author-job {
    font-size: 3.2rem;
    margin-top: 1.5rem;
  }
  .news-detail__author._big .news-detail__author-name {
    font-size: 5.2rem;
    font-family: "Actay Wide";
  }
  .modal__c._thx {
    max-width: 50rem;
  }
  .modal__c._request .form {
    max-width: 74rem;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 48em) {
  .specialists .btn-primary{
  width: 100%;
  justify-content: center;
}
  .header__c-top-logo::before {
  width: 9.6rem; 
  height: 9.6rem; 
}
  .tl-logo{
    font-size: 4rem;
    line-height: 110%; 
    letter-spacing: -0.8px;
  }
  .policy__title {
    letter-spacing: -1.4px;
  }
  .policy .tl2 {
    font-size: 4.8rem;
  }
  .article {
    border-radius: 6.4rem;
  }
  .article-shorted .article {
    height: auto;
    box-shadow: 8px 8px 20px 0px rgba(40, 52, 66, 0.12);
  }
  .article-two .article__img,
  .article__img {
    height: 32rem;
  }
  .article-two .article__heading,
  .article__heading {
    margin-top: 2.4rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .diagnosis-targets .tl1 {
    letter-spacing: -1.4px;
  }
  .how-analysis .tl1 {
    font-size: 4.8rem;
  }
  .diagnosis-targets._4 .diagnosis-targets__list {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  .diagnosis-targets._4 .section-heading .txt32 {
    max-width: 100%;
  }
  .diagnosis__right {
    gap: 1.2rem;
  }
  .diagnosis__left {
    gap: 6.8rem;
  }
  .coding-steps__content {
    display: none;
  }
  .coding-steps__box {
    display: grid;
    grid-template-columns: 1fr;
  }
  .accordion-text {
    margin-top: 3.2rem;
    padding: 4.8rem;
    border-radius: 6.4rem;
    border: 0.1rem solid #b7d3e3;
    color: rgba(29, 30, 31, 0.6);
  }
  .accordion-text.open {
    display: flex;
  }
  .coding-steps__buttons {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
  }
  .accordion-block button {
    padding: 6.4rem;
    gap: 9rem;
    border-radius: 6.4rem;
  }

  .who-coding__list-e-text {
    background-color: transparent;
    padding: 0;
  }
  .who-coding__list-e-img {
    height: 46.4rem;
    border-radius: 3.2rem;
  }
  .who-coding__list-e {
    gap: 2.6rem;
  }
  .who-coding .container {
    border-radius: 6.3rem;
    padding: 8rem 3.2rem;
  }
  .who-coding .tl1 {
    font-size: 4.8rem;
  }
  .heading._two-side .heading__c {
    margin-bottom: auto;
  }
  .diagnosis-targets .txt32 {
    font-weight: 500 !important;
    font-size: 4.2rem;
  }

  .diagnosis-targets__item-top {
    flex-direction: column-reverse;
    gap: 3.2rem;
    align-items: start;
  }
  .family .container {
    border-radius: 6.4rem;
    padding: 4.8rem 3.2rem;
    gap: 5.2rem;
    max-width: 68.6rem;
    margin: auto;
  }
  .no-hospital .container {
    max-width: 68.6rem;
    margin: auto;
  }
  .no-hospital .tl1 {
    margin-bottom: 4.8rem;

    font-size: 4.8rem;
  }
  .no-hospital .txt32 {
    padding-bottom: 3.2rem;
    margin-bottom: 3.2rem;
    font-size: 3rem;
    border-bottom: 0.2rem solid #b7d3e3;
  }
  .heading__side-add {
    padding: 3.2rem;
    gap: 2.4rem;
    border: 0.2rem solid rgba(255, 255, 255, 0.4);
    background: rgba(40, 40, 40, 0.3);
    width: 100%;
    max-width: 100%;
  }
  .heading__side-add .tl2 {
    margin-top: 2rem;
    margin: auto;
  }
  .heading__side-add .btn-primary {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .contacts .contacts__list-e {
    height: auto;
    border-radius: 6.4rem;
  }
  .contacts .contacts__footer-form {
    padding: 6.4rem 3.2rem;
    border-radius: 6.4rem;
    display: flex;
    flex-direction: column;
  }
  .contacts .contacts__footer-form .txt16 {
    font-size: 2.4rem;
  }
  .correct-programm .container {
    padding: 0 0 0 3.2rem;
    overflow: hidden;
  }
  .correct-programm__c .swiper .swiper-slide-next {
    height: 47.8rem;
  }
  .correct-programm__c-slide-overlay {
    padding: 5.6rem;
  }
  .correct-programm__c-slide-box {
    border-radius: 6.4rem;
  }
  .correct-programm__c-slide {
    border-radius: 6.4rem;
    overflow: hidden;
  }
  .correct-programm__swiper {
    margin: 0;
    max-width: 100%;
  }
  .marked-list-check .txt16 {
    font-size: 2.8rem;
  }
  .switch-list__body-list-e-drop-target._price {
    border-radius: 6.4rem;
    gap: 2.4rem;
  }
  .rehabilitation-stages
    .switch-list__body-list-e-drop-taget-sub._price
    .txt32 {
    font-size: 4.2rem;
  }

  .switch-list__body-list-e-drop-taget-sub._price .txt16 {
    font-size: 2.4rem;
  }
  .switch-list__body-list-e-drop-taget-sub._price .txt32 {
    font-size: 6.4rem;
    margin: 0;
    grid-column: 1 / 1;
    grid-row: 2;
  }
  .switch-list__body-list-e-drop-taget-sub._price {
    margin: 0;
    grid-column: 1 / 1;
    grid-row: 2;
  }
  /* .switch-list__body-list-e-drop-target-icon._price {
    align-self: center;
    grid-row: 1 / 2;
  } */
  .specialists__detail-right-tags-e {
    width: 100%;
    border: 0.2rem solid #b7d3e3;
    padding: 2.4rem;
  }
  .specialists__detail-btn {
    width: 100%;
    margin-top: 4.8rem;
  }
  .specialists__detail-btn .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 3.6rem;
  }
  .bread .container {
    flex-wrap: wrap;
    font-size: 2.4rem;
    margin-top: 13.8rem;
  }
  .specialists-item {
    border-radius: 4.8rem;
  }

  .wrapper {
    background-color: #edeef3;
  }
  .after-heal__list {
    flex-direction: column;
    gap: 3rem;
  }
  .after-heal__list-e {
    border-radius: 6.4rem;
    padding: 0rem 4.8rem 3.6rem;
    height: 68.6rem;
    max-width: 100%;
  }
  .after-heal__text {
    gap: 3.2rem;
    padding: 1.6rem;
    border-radius: 4.8rem;
  }

  .after-heal__list-e-img {
    border-radius: 6.4rem;
  }
  .marked-list-dot li {
    padding-left: 2.4rem;
  }
  .marked-list-dot li::before {
    width: 1.2rem !important;
    height: 1.2rem !important;
    background-size: 1.2rem !important;
    top: 1rem !important;
  }

  .marked-list li {
    position: relative;
    padding-left: 4rem;
  }

  .marked-list li::before {
    top: 0.4rem;
    background-size: 2rem 2.8rem;
    width: 2rem;
    height: 2.8rem;
  }

  .heal-stages._5 .heal-stages__list-e:first-of-type {
    grid-column: 1 / span 1;
  }

  .blue-banner__two .blue-banner__img {
    display: none;
  }

  .blue-banner__two .container {
    background-image: none;
  }

  .blue-banner__two .blue-banner__body {
    padding: 3.6rem;
    background-image: url(/local/templates/narkology2/./assets/images/blue-banner-back-mob_2.webp);
  }
  .blue-banner__two .tag {
    margin-left: 0;
    margin-right: auto;
  }
  .blue-banner__two .tl2 {
    color: white;
  }

  .rehabilitation-stages .switch-list__body-list-e-drop-target {
    grid-template-columns: auto min-content;
    gap: 1.2rem;
    padding: 3.2rem;
  }
  .no-hospital .marked-list-check li {
    font-size: 2.4rem;
  }
  .no-hospital .marked-list-check li,
  .faq .marked-list-check li,
  .rehabilitation-stages .marked-list-check li {
    padding-left: 5rem;
  }
  .no-hospital .marked-list-check li::before,
  .faq .marked-list-check li::before,
  .rehabilitation-stages .marked-list-check li::before {
    width: 3.2rem;
    height: 3.2rem;
    top: 4%;
  }
  .blue-banner__help .container {
    background-image: none;
    border-radius: 4.8rem !important;
    background-color: #f6fcff !important;
    padding: 3rem 3.2rem;
    gap: 2rem;
    max-width: 68.6rem;
    margin: auto;
  }
  .blue-banner__help .blue-banner__body {
    padding: 0;
    background-image: none;
    gap: 6.4rem;
  }
  .blue-banner__help .blue-banner__body-row {
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
  }
  .blue-banner__help .blue-banner__body-contacts {
    flex-direction: column-reverse !important;
    align-items: start;
    gap: 4.8rem;
  }
  .blue-banner__help .blue-banner__body-contacts .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .blue-banner__help .blue-banner__img {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  .blue-banner__help .btn-underline {
    align-items: center;
  }

  .heal-stages__list-e-bottom .txt16 {
    font-size: 2.8rem;
  }
  .heal-stages__list-e-top {
    flex-direction: column;
    gap: 2.4rem;
    align-items: start;
  }
  .footer__c-icons {
    gap: 4.8rem;
  }
  .footer__c-icons img {
    width: 6.4rem;
    height: 6.4rem;
  }
  .footer {
    padding: 8rem 3.2rem;
    border-radius: 6.4rem 6.4rem 0 0;
  }
  .footer .header__c-top-logo img {
    width: 11.6rem;
    height: 9.6rem;
  }
  .header__c-top-logo {
    gap: 4.8rem;
  }
  .faq__c {
    grid-template-columns: 100%;
  }
  .switch-list__body-list-e-drop-target {
    padding: 4.6rem 3.6rem;
    border-radius: 3rem;
    column-gap: 2rem;
  }
  .licenses .container {
    padding: 0 0 0 3.2rem;
  }
  .license-slide {
    border-radius: 6rem;
  }
  .clinic-photo-slide {
    max-width: 100%;
    height: 33.6rem;
    border-radius: 3.2rem;
  }
  .blue-banner .container {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .out-specialists .swiper-slide:nth-of-type(n + 5) {
    display: none;
  }
  .specialist__c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .prices-list .mobile-btn {
    width: calc(100% - 3rem);
  }
  .prices-list .container {
    padding: 0 0 0 3rem;
  }
  .prices-list__list {
    width: calc(100% + 3rem);
  }
  .out-specialists .specialist {
    max-width: 68.6rem;
    padding-bottom: 0;
    width: 100%;
    border-radius: 4.8rem;
  }
  .out-specialists .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  .prices-list__list-e {
    display: flex;
    flex-direction: column;
    background-position: 320% top;
    background-size: 83% 100%;
    padding: 4.8rem;
    border-radius: 4.8rem;
  }
  .our-services__list-e {
    border-radius: 6.4rem;
  }
  .heading__c {
    gap: 6rem;
  }
  .mobile {
    display: flex;
  }
  .heading__c-main-slider-e-body {
    padding: 0 2.4rem 2.4rem;
  }
  html {
    font-size: 5px;
    font-size: 1.5625vw;
    font-size: 1.3333333333vw;
    -webkit-text-size-adjust: none;
  }
  body {
    -webkit-text-size-adjust: none;
  }
  .container {
    padding: 0 3.2rem;
    width: 100%;
  }
  main section {
    margin: 16rem 0 0;
  }
  main section._first {
    margin: 6.4rem 0 0rem;
  }
  .desktop {
    display: none;
  }
  .tl1 {
    font-size: 7rem;
    line-height: 110%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .tl2 {
    font-size: 5.4rem;
  }
  .txt32 {
    font-size: 4.8rem;
  }
  .txt28 {
    font-size: 3.2rem;
  }
  .txt21 {
    font-size: 4.2rem;
  }
  .txt20 {
    font-size: 3rem;
    line-height: normal;
  }
  .txt16 {
    font-size: 3.2rem;
  }
  .txt14 {
    font-size: 2.8rem;
  }
  .swiper-navigation {
    gap: 2.4rem;
  }
  .swiper-navigation .swiper-btn {
    background-size: 1.4rem 2.8rem;
    width: 7.2rem;
    height: 7.2rem;
  }
  .btn-radio-arrow {
    background-size: 4.8rem 4rem;
    width: 7.2rem;
    height: 7.2rem;
  }
  .btn-social-icon {
    width: 10.8rem;
    height: 10.8rem;
  }
  .btn-underline svg,
  .btn-underline img {
    width: 4.8rem;
    height: 4.8rem;
  }
  .btn-primary {
    padding: 3.5rem 3.6rem;
    font-size: 4rem;
  }
  .btn-primary._arrow .btn-primary-text::after {
    width: 4.2rem;
    height: 3.2rem;
    margin-left: 1rem;
  }
  .heading .btn-primary {
    font-size: 3.5rem;
  }
  .heading__c-row {
    gap: 0;
    justify-content: space-between;
  }
  .btn-second {
    padding: 1.6rem 3.6rem;
  }
  .btn-arrow {
    padding-right: 6.4rem;
  }
  .btn-arrow::after {
    width: 4rem;
    height: 4rem;
    top: 0;
  }
  .btn-switch-list {
    padding: 3rem;
  }
  .drop-down-icon {
    background-size: 4.8rem 4rem;
    width: 7.2rem;
    height: 7.2rem;
  }
  .tag {
    font-size: 2.4rem;
  }
  .tag-icon {
    width: 6.4rem;
    height: 6.4rem;
  }
  .tag-icon img,
  .tag-icon svg {
    width: 4.4rem;
    height: 4.4rem;
  }
  .tag._small .tag-icon {
    width: 6.4rem;
    height: 6.4rem;
  }
  .tag._small .tag-icon img,
  .tag._small .tag-icon svg {
    width: 3.2rem;
    height: 3.2rem;
  }
  .switch-list._coding {
    grid-template-columns: 100%;
  }
  .switch-list {
    grid-template-columns: 100%;
  }
  .switch-list-wrp {
    overflow: auto;
    width: 100%;
  }
  .switch-list__nav {
    flex-direction: row;
  }
  .switch-list__nav button {
    flex-shrink: 0;
  }
  .switch-list__body-list-e-drop-target {
    display: grid;
    grid-template-columns: auto min-content;
    grid-template-rows: min-content min-content;
  }
  .switch-list__body-list-e-drop-target-icon {
    grid-column: 2;
    grid-row: 2;
  }
  .switch-list__body-list-e-drop-target-text {
    grid-column: 1;
    grid-row: 2;
  }
  .switch-list__body-list-e-drop-target-sub {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .switch-list__body-list-e-drop-target._price
    .switch-list__body-list-e-drop-target-text {
    grid-column: 1 / 1;
    grid-row: 1;
  }
  .switch-list__body-list-e-drop-target._price
    .switch-list__body-list-e-drop-target-sub {
    grid-column: 1;
    grid-row: 2;
  }
  .specialist__img {
    height: 100%;
    min-height: 35.2rem;
  }
  .specialist__img .tag {
    left: 1.6rem;
    bottom: 1.4rem;
    top: auto;
  }
  .specialist__info {
    gap: 0.6rem;
    padding: 2rem;
  }
  .out-specialists .btn-arrow {
    margin-left: 0;
    margin-top: auto;
    margin-bottom: 0;
  }
  .specialist__info .txt16 {
    font-size: 2.4rem;
    line-height: normal;
  }
  .specialist._inrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .specialist._inrow .specialist__img {
    height: 100%;
    min-height: 33rem;
    border-radius: 3rem 0 0 3rem;
  }
  .specialist._inrow .specialist__img .tag {
    top: calc(100% - 10rem);
  }
  .specialist._inrow .specialist__info {
    padding: 2rem;
    gap: 0.5rem;
    border: none;
    border-left: none;
    border-radius: 0 3rem 3rem 0;
    background-color: white;
  }
  .input-text {
    gap: 1rem;
  }
  .input-text-placeholder {
    font-size: 3rem;
  }
  .input-text textarea {
    min-height: 24rem !important;
  }
  .input-text input.input-text_bg,
  .input-text textarea.input-text_bg {
    height: 8rem;
  }
  .input-text input,
  .input-text textarea {
    font-size: 3rem;
    padding: 2.8rem 3.2rem;
    min-height: 8rem;
  }
  .input-text-error-msg {
    min-height: 3rem;
    font-size: 2.4rem;
  }
  .input-text-bg {
    height: 8rem;
  }
  .checkbox {
    gap: 2rem;
  }
  .checkbox-check {
    width: 4rem;
    height: 4rem;
  }
  .checkbox-check svg,
  .checkbox-check img {
    width: 2rem;
    height: 1.4rem;
  }
  .ajax-pagination-btn {
    width: 8rem;
    height: 8rem;
  }
  .ajax-pagination-btn {
    background-size: 20%;
  }
  .ajax-pagination-count {
    font-size: 3rem;
  }
  .ajax-pagination-count._current {
    font-size: 4.8rem;
  }
  .circle {
    width: 8rem;
    height: 8rem;
  }
  .section-heading {
    flex-direction: column;
    gap: 3rem;
  }
  .section-footer a,
  .section-footer button {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .mobile-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 4rem;
  }

  .advantages .container {
    padding: 0 0 0 3rem;
  }
  .advantages-slide {
    grid-template-rows: auto;
  }

  .advantages-slide__img {
    border-radius: 6.4rem 6.4rem 0 0;
  }
  /* .advantages-slide__img img {
    object-fit: cover;
  } */
  .advantages-slide__footer {
    gap: 2rem;
    border-radius: 0 0 6.4rem 6.4rem;
    padding: 6.4rem 4.8rem;
  }
  .blue-banner .container {
    flex-direction: column;
  }
  .blue-banner__body {
    padding: 3.6rem;
    border-radius: 6.4rem;
    background-image: url(/local/templates/narkology2/./assets/images/blue-img-mob.webp);
    background-repeat: no-repeat;
    background-size: cover;
    gap: 4.8rem;
  }
  .blue-banner__body-info {
    color: white;
  }
  .blue-banner__body-row {
    gap: 3rem;
  }
  .blue-banner__body-contacts {
    flex-direction: column-reverse;
    width: 100%;
    align-items: normal;
  }
  .blue-banner__body-info {
    flex-direction: column;
  }
  .blue-banner__body .modal-opener._white {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .blue-banner__img {
    height: 40rem;
    width: 100%;
  }
  .detox-complect .container {
    padding: 0 0 0 3.2rem;
  }
  .detox-complect .section-heading {
    padding: 0 1.5rem;
  }
  .detox-complect__slide {
    grid-template-rows: 54rem 20rem;
    border-radius: 5.6rem;
  }
  .detox-complect__slide-text {
    padding: 3.2rem 3.2rem 4.4rem;
    gap: 2rem;
  }
  .detox-stages__list {
    grid-template-columns: 100%;
    gap: 4.8rem;
  }
  .detox-stages__list-e {
    gap: 3.2rem;
  }
  .detox-stages__list-e-bottom {
    border-radius: 6.4rem;
    padding: 6.4rem 4.8rem;
    border: 0.2rem solid #b7d3e3;
    gap: 2.4rem;
    align-items: center;
    background-color: white;
    text-align: center;
  }
  .diagnosis-first__list {
    grid-template-columns: 100%;
    grid-auto-rows: auto;
    gap: 4.4rem;
  }
  .diagnosis-first__list-e {
    padding: 6.4rem 3.2rem 4rem;
    border-radius: 6.4rem;
    border: 0.2rem solid #b7d3e3;
  }
  .diagnosis .container {
    grid-template-columns: 100%;
    gap: 6rem;
  }
  .diagnosis__right-e {
    gap: 3.2rem;
    border: 0.2rem solid #b7d3e3;
  }
  .diagnosis__right-e .txt16 {
    font-size: 2.4rem;
  }
  .diagnosis__right-e-img {
    width: 14rem;
    height: 14rem;
  }
  .family__img {
    height: 26rem;
  }
  .footer__c-list .txt16,
  .footer__c-nav .txt16 {
    font-size: 2.8rem;
  }
  .footer__c-btm {
    flex-direction: column;
    gap: 2.4rem;
    padding-top: 2.4rem;
    border-top: 0.2rem solid rgba(255, 255, 255, 0.4);
    margin-top: 4.8rem;
  }
  .footer__c {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "logo logo" "social social" "confa confa" "service drops" "nav nav";
    gap: 6rem 1rem;
  }
  .footer__c-list {
    gap: 3rem;
  }
  .granny-banner .container {
    grid-template-columns: 100%;
  }
  ._header-white .header .header__c-top-social {
    background-color: rgba(0, 0, 0, 0);
    border-color: #fff;
  }
  .header__c-top {
    border-bottom: 0.2rem solid rgba(255, 255, 255, 0.4);
  }
  .header__c-top-logo img {
    width: 11.6rem;
    height: 9.6rem;
  }
  .header__modal {
    display: none;
    overflow-y: scroll;
    background-color: #edeef3;
    width: 100vw;
    height: calc(100vh + 1rem);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 112;
    box-sizing: border-box;
    padding: 20rem 0 5rem;
    color: #1d1e1f;
  }
  .header__modal-wrp {
    overflow: auto;
    width: 100%;
    padding: 0 3rem;
    transform: translateY(-100%);
    transition: transform 0.5s;
  }
  .header__modal .header__modal-c-service {
    display: flex;
    width: 100%;
    align-items: center;
  }
  .header__modal .header__modal-c-service svg {
    flex-shrink: 0;
    height: 2rem;
  }
  .header__modal-c {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    width: 100%;
  }
  .header__modal-c-link {
    border-radius: 4.6rem;
    background-color: #f6fcff;
    padding: 1.6rem 3.2rem;
    box-sizing: border-box;
    width: 100%;
  }
  .header__modal-c-link-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.6rem 0rem 0rem;
    box-sizing: border-box;
  }
  .header__modal-c-social {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4.8rem 0;
    padding: 2rem;
    box-sizing: border-box;

    border-radius: 15px;
    border: 0.1rem solid #b7d3e3;
    width: max-content;
  }
  .header__modal .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .header__service {
    display: none;
    width: 100vw;
    height: calc(100vh + 1rem - 19.9rem);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 113;
    background-color: #fff;
    box-sizing: border-box;
    padding: 0 0 5rem;
    margin-top: 19.9rem;
    color: #1d1e1f;
  }
  .header__service-wrp {
    overflow: auto;
    width: 100%;
    padding: 0 3rem;
    transform: translateX(100%);
    transition: transform 0.5s;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .header__service._opened .header__service-wrp {
    transform: translateX(0%);
  }
  .heal-stages._4 .heal-stages__list {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
  .heal-stages._5 .heal-stages__list {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
  .license-slide__img {
    height: 62.8rem;
  }
  .license-slide__img img {
    height: 47rem;
    width: 32.6rem;
  }
  .license-slide__footer {
    padding: 3.6rem;
  }
  .must-detox .container {
    flex-direction: column-reverse;
  }
  .must-detox__aside {
    width: 100%;
    border-radius: 4.8rem;
    padding: 3.2rem;
    align-items: center;
    background-image: none;
  }
  .must-detox__aside .tl2 {
    padding-top: 4rem;
    margin: auto;
    font-size: 10.4rem;
  }
  .no-hospital .container {
    grid-template-columns: 100%;
    gap: 4rem;
  }
  .no-hospital .tl1 {
    grid-column: 1;
    margin: 0;
  }
  .no-hospital .txt32 {
    grid-column: 1;
  }
  .no-hospital__side {
    gap: 2rem;
  }

  .our-services__list-e-img {
    height: auto;
  }
  .our-services__list-e-img img {
    height: 55.2rem;
    width: 73.2rem;
  }
  .our-services__list-e-bottom {
    gap: 0rem;
    padding: 4.8rem 3rem;
  }

  .our-services .btn-primary {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .our-services .mobile-slider {
    width: calc(100% + 3rem);
  }
  .placement__c {
    flex-direction: column;
  }
  .placement__c-slider {
    grid-template-columns: 100%;
    height: auto;
    gap: 9.6rem;
    background-color: #f6fcff;
    border-radius: 6.4rem;
  }
  .placement__c-slider-img-e {
    height: 68.6rem;
  }

  .placement__c-slider-body {
    border-radius: 0;
  }
  .placement__c-slider-body .swiper-navigation {
    top: 4.8rem;
    right: 3.6rem;
  }
  .placement__c-slider-body-card {
    padding: 4.8rem 3.6rem 0;
  }
  .placement__c .tl1 {
    font-family: Gilroy;
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .placement__c-slider-body-card-footer {
    flex-direction: column;
  }
  .placement__c-slider-body-card-footer-price::after {
    font-size: 3.2rem;
  }
  .placement__c-license-img {
    width: 36rem;
    height: 50rem;
  }
  .placement__c-license-icon-main {
    width: 16rem;
    height: 16rem;
  }
  .prices-list__list-e-row-price {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .prices-list__list-e-row:first-of-type {
    border: none;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: normal;
    gap: 3.2rem;
  }
  .prices-list__list-e-row .line {
    max-width: 26.8rem;
  }
  .prices-list__list-e .btn-radio-arrow {
    background-color: #fff;
    background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-dark-full.svg);
  }
  .prices-list__list-e-row-price .txt28 {
    color: #0982c6;
  }
  .prices-list__list-e-row:last-of-type {
    display: none;
  }
  .prices__list {
    grid-template-columns: 100%;
  }
  .prices__list-e {
    grid-template-rows: 36rem 1fr max-content;
  }
  .review-slide {
    padding: 3.6rem;
    border-radius: 3rem;
    border: 0.12rem solid #b7d3e3;
    gap: 5.6rem;
    background-color: white;
  }
  .reviews .container {
    padding: 0 0 0 3.2rem;
  }
  .review-slide__top {
    gap: 4rem;
  }
  .review-slide__footer {
  }
  .two-stages__list {
    grid-template-columns: 100%;
  }
  .two-stages__list-e-body {
    border: 0;
    border-radius: 4.8rem;
    gap: 2rem;
  }
  .two-stages__list-e {
    border-radius: 4.8rem;
  }
  .two-stages__list-e-body .txt28 {
    margin-left: 10rem;
    min-height: 8rem;
  }
  .who-coding__list {
    grid-template-columns: 100%;
    gap: 3rem;
  }
  .diagnosis-targets__list {
    grid-template-columns: 100%;
    gap: 6rem;
  }
  .diagnosis-targets__list-e {
    flex-direction: column;
    gap: 4.8rem;
    border-radius: 4.8rem;
    padding: 6.4rem 4.8rem;
  }
  .heading._main {
    min-height: 143rem;
    margin-bottom: 90rem;
  }
  .heading__c-main-slider {
    width: 100%;
    box-shadow: none;
  }
  .heading__c-main-slider.bg-wh {
    max-width: 68.6rem;
    border-radius: 6.4rem;
  }
  .heading__c-main-slider-e {
    padding-bottom: 0;
    background-size: 53.5rem 100%;
    bottom: 0;
    background-position: left -8.3rem center;
  }
  .heading__c-main-slider-e-top {
    padding: 2.4rem;
    align-items: center;
  }
  .heading__c-main-slider-e-top .txt16 {
    max-width: 31.2rem;
  }
  .heading._two-side .container {
    flex-direction: column;
    gap: 8rem;
    justify-content: center;
  }
  .heading__c-row-social {
    border-radius: 8rem;
  }
  .heading__c-main {
    grid-template-columns: 100%;
    width: calc(100% + 3.2rem);
    margin-bottom: -57rem;
    gap: 8rem;
  }
  .heading__c-main-slider {
    /* width: calc(100% - 2rem); */
    box-sizing: border-box;
    border-radius: 0;
  }
  .heading__c-main-slider._swiper {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    margin: 0;
    width: 100%;
  }
  /* .heading__c-main-slider {
    left: 3.2rem;
  } */
  .heading__c-main-slider._swiper .heading__c-main-slider-e {
    border-radius: 6.4rem;
    background-color: #e2f0f9;
  }
  .heading__c-main-slider-footer {
    padding: 3.2rem 2.4rem 2.4rem;
    position: static;
    border-top: 0.2rem solid #b7d3e3;
  }
  .heading__c-main-slider-footer .btn-second {
    width: 100%;
    text-align: center;
  }
  .heading__side {
   max-width: 100%;
    margin: 0;
    border-radius: 4.8rem;
    border: 0.2rem solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 0px 9px -2px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
  }
  .heading._two-side {
    padding-bottom: 6rem;
    min-height: 143rem;
    padding-top: 25rem;
  }
  .heading__side-middle {
    padding: 4rem 3.2rem 4.8rem;
    border: 0;
    gap: 0;
  }
  .heading__side-middle .txt16 {
    padding-top: 2.5rem;
    display: none;
  }
  .heading__side-footer {
    padding: 0 3.2rem 6.6rem;
  }
  .heading__side-middle .price-from::after {
    content: "₽/сутки в стационаре";
    font-family: "Gilroy";
    font-size: 3.2rem;
    line-height: 130%;
    font-weight: 500;
  }
  .price-from::before {
    content: "от ";
    font-family: "Gilroy";
    font-size: 3.2rem;
    line-height: 130%;
    font-weight: 500;
  }
  .heading__side-commercial {
    margin-bottom: 3rem;
  }
  .heading__side-commercial button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .heading__side-time {
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 10rem;
  }
  .heading__side-time::after {
    width: 100%;
    height: 60rem;
    transform: translate(0, -25%);
  }
  .heading__side-img {
    height: 34rem;
  }
  .heading__side-footer button {
    width: 100%;
  }
  .correct-programm__c {
    max-width: 68.6rem;
    width: 100%;
    gap: 16rem;
    min-height: 148rem;
    padding: 8rem 3.2rem 50rem;
    border-radius: 6.4rem;
    overflow: visible;
  }
  .correct-programm__c-slide.swiper-slide-active {
    max-width: 100% !important;
  }
  .correct-programm__c-slide.swiper-slide-active {
    height: 58.6rem;
  }
  .correct-programm__c .swiper .swiper-slide-next {
    margin-left: -9.4rem !important;
  }
  .correct-programm__c-text {
    bottom: 8rem;
    width: 100%;
    right: 0;
    padding: 0 3.2rem;
  }
  .correct-programm__c-text button {
    width: 100%;
    justify-content: center;
  }
  .correct-programm__c .swiper-navigation {
    top: 30rem;
    left: 3.2rem;
  }
  .correct-programm__c .swiper {
    width: 100%;
    transform: translateX(0);
    height: auto;
  }
  .correct-programm__c-slide-count {
    width: 8;
    height: 8;
  }

  .article__body {
    max-width: 100%;
    margin: 1.8rem 0 2.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    box-orient: vertical;
  }
  .article__link {
    width: 100%;
    text-align: center;
  }
  .article-two .article {
    grid-template-areas: "img" "heading" "text" "link";
    grid-template-columns: 100%;
    grid-template-rows: repeat(4, auto);
    height: auto;
  }
  .coding-ways__list {
    grid-template-columns: 100%;
  }
  .coding-ways__list-e {
    border-radius: 3rem;
    box-sizing: border-box;
    padding: 3.2rem;
    gap: 2rem;
  }
  .coding-ways__list-e .txt16 {
    max-width: 100%;
    font-size: 2.4rem;
  }
  .coding-ways__list-e-img {
    display: none;
  }
  .entity__c {
    padding: 6.4rem 2rem;
    max-width: 68.6rem;
    margin: auto;
    border-radius: 6.4rem;
  }
  .entity__c-e {
    grid-template-columns: 100%;
    gap: 4.8rem;
    border-top: 0.2rem solid #b7d3e3;
    padding-top: 4.4rem;
  }
  .entity__c-e .txt20 {
    font-size: 4.2rem;
  }
  .entity__c-e .txt16 {
    font-size: 2.8rem;
  }
  .adv-process__c {
    grid-template-columns: 100%;
  }
  .how-analysis .container {
    padding: 5.2rem 3.2rem;
    border-radius: 6.4rem;
    max-width: 68.6rem;
    margin: auto;
  }
  .how-analysis__list-e {
    border-radius: 6.4rem;
  }
  .how-analysis__list {
    flex-direction: column;
    gap: 2rem;
  }
  .how-analysis__list-e-bottom {
    padding: 2.4rem;
  }
  .contacts__img {
    height: 44rem;
  }
  .contacts__list {
    grid-template-columns: 100%;
  }
  .contacts__list-e {
    height: 36rem;
  }
  .contacts__footer {
    grid-template-columns: 100%;
    height: auto;
  }
  /* .contacts__footer-form {
    grid-template-columns: 100%;
  } */
  .contacts__footer #map {
    height: 76.6rem;
    border-radius: 6.4rem;
  }
  .news-grid .container {
    display: flex;
    flex-direction: column;
  }
  .news-grid .container .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .news-grid._nogap {
    margin-top: 6rem;
  }
  .news-grid__list._8 {
    grid-template-columns: 100%;
    grid-auto-rows: 1fr;
  }
  .news-grid__list {
    margin-bottom: 5rem;
    grid-template-columns: 100% !important;
    height: auto !important;
    gap: 4rem;
  }
  .news-detail__top {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2rem;
  }
  .news-detail__top p {
    font-size: 3rem;
  }
  .news-detail__author {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 3.6rem 0 12rem;
    border: 0;
  }
  .news-detail__body ._img {
    margin-top: 8rem;
    border-radius: 6.4rem;
    height: 45rem;
  }
  .news-detail__author-img {
    display: none;
  }
  .news-detail__author._big .news-detail__author-img {
    display: flex;
    width: 14rem;
    height: 14rem;
  }
  .news-detail__author._big {
    display: grid;
    grid-template-columns: auto auto;
    padding: 3.2rem;
    border-radius: 6.4rem;
  }
  .news-detail__author._big {
    margin: 6rem 0;
  }
  .news-detail__author._big ~ button {
    width: 100%;
    justify-content: center;
  }
  .news-detail__author._big .news-detail__author-job {
    margin-top: 2rem;
  }
  .news-detail__body h3 {
    font-size: 6rem;
  }
  .news-detail__body {
    font-size: 3rem;
    gap: 5rem;
  }
  .news-detail__body .tl2 {
    font-size: 4.8rem;
  }
  .specialists__list {
    grid-template-columns: 100%;
    grid-auto-rows: auto;
  }
  .specialists__detail {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
  .specialists__detail-left-img {
    height: 60rem;
  }
  .specialists__detail-right-exp img {
    width: 5.6rem;
    height: 5.6rem;
  }
  .p404__c {
    padding: 6rem 0;
    margin-top: 25rem;
  }
  .modal-c-wrp {
    overflow: auto;
    height: 100vh;
    padding: 20rem 0 5rem;
  }
  .modal__c {
    padding: 10rem 2.4rem 7rem;
  }
  .modal__c-close {
    width: 3rem;
    height: 3rem;
    margin-bottom: 4rem;
    background-size: 100%;
  }
  .modal__c._thx .btn-primary {
    font-size: 3rem;
    width: 100%;
    justify-content: center;
  }
  .modal__c._request .form {
    gap: 0;
  }
  .modal__c._request .form ._row {
    margin-top: 3rem;
    flex-direction: column;
  }
  .modal__c._request .form .btn-primary {
    font-size: 3rem;
    width: 100%;
    justify-content: center;
  }
}
@media (hover: hover) {
  .swiper-navigation .swiper-btn:hover {
    opacity: 70%;
  }
  .btn-radio-arrow-hover.btn-radio-arrow:hover {
    background-color: rgba(29, 30, 31, 0.6);
    background-position: 70% 50%;
  }
  .btn-radio-arrow-hover:hover .btn-radio-arrow {
    background-color: rgba(29, 30, 31, 0.6);
    background-position: 70% 50%;
  }
  .btn-social-phone:hover .btn-social-icon {
    background-color: #0982c6;
  }
  .btn-social-phone:hover .btn-social-icon svg {
    fill: #fff;
  }
  .btn-social-wa:hover .btn-social-icon {
    background-color: #15d364;
  }
  .btn-social-wa:hover .btn-social-icon svg {
    fill: #fff;
  }
  .btn-underline:hover {
    text-decoration: underline;
  }
  .btn-primary._white:hover {
    background-color: #0982c6;
    color: #fff;
  }
  .btn-primary._white:hover._arrow .btn-primary-text:after {
    background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-white-full.svg);
  }
  .btn-primary._blue:hover {
    background-color: #fff;
    border-color: #0982c6;
    color: #0982c6;
  }
  .btn-primary._blue:hover._arrow .btn-primary-text:after {
    background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-blue-full.svg);
  }
  .btn-second._blue:hover {
    background-color: #fff;
    color: #0982c6;
    border-color: #0982c6;
  }
  .btn-second._white:hover {
    background-color: #0982c6;
    color: #fff;
  }
  .btn-arrow:hover {
    opacity: 0.7;
  }
  .btn-arrow:hover::after {
    right: -1rem;
  }
  .btn-switch-list:hover {
    background-color: rgba(21, 161, 211, 0.4);
  }
  .drop-down-target:hover .drop-down-icon {
    background-color: rgba(29, 30, 31, 0.6);
    transform: rotate(120deg);
  }
  .drop-down-target._opened:hover .drop-down-icon {
    background-color: rgba(29, 30, 31, 0.6);
    transform: rotate(250deg);
  }
  .hover-blue:hover {
    color: #0982c6;
  }
  .clinic-photo-slide img:hover {
    scale: 1.1;
  }
  ._header-white .header .header__c-top .btn-primary._blue._arrow:hover {
    background-color: #0982c6;
    color: #fff;
    border-color: #0982c6;
  }
  ._header-white
    .header
    .header__c-top
    .btn-primary._blue._arrow:hover
    .btn-primary-text:after {
    background-image: url(/local/templates/narkology2/./assets/images/icons/arrow-right-white-full.svg);
  }
  .header__c-top-row a:hover {
    color: var(--col-hover);
  }
  .header__c-bottom-e:hover {
    background-color: var(--col-hover);
    color: var(--col-white);
  }
  .header__c-bottom-e-dd-twin-c-link:hover {
    color: #0982c6;
  }
  .header__c-bottom-e-dd-twin-c-link:hover:nth-child(1)
    ~ .header__c-bottom-e-dd-twin-c-cats
    .header__c-bottom-e-dd-twin-c-cats-wrp[data-category="1"] {
    display: flex;
  }
  .header__c-bottom-e-dd-twin-c-link:hover:nth-child(2)
    ~ .header__c-bottom-e-dd-twin-c-cats
    .header__c-bottom-e-dd-twin-c-cats-wrp[data-category="2"] {
    display: flex;
  }
  .header__c-bottom-e-dd-twin-c-link:hover:nth-child(3)
    ~ .header__c-bottom-e-dd-twin-c-cats
    .header__c-bottom-e-dd-twin-c-cats-wrp[data-category="3"] {
    display: flex;
  }
  .header__c-bottom-e-dd-twin-c-link:hover:nth-child(4)
    ~ .header__c-bottom-e-dd-twin-c-cats
    .header__c-bottom-e-dd-twin-c-cats-wrp[data-category="4"] {
    display: flex;
  }
  .header__c-bottom-e-dd-twin-c-link:hover:nth-child(5)
    ~ .header__c-bottom-e-dd-twin-c-cats
    .header__c-bottom-e-dd-twin-c-cats-wrp[data-category="5"] {
    display: flex;
  }
  .header__c-bottom-e-dd-twin-c-link:hover:nth-child(6)
    ~ .header__c-bottom-e-dd-twin-c-cats
    .header__c-bottom-e-dd-twin-c-cats-wrp[data-category="6"] {
    display: flex;
  }
  .header__c-bottom-e-dd-twin-c-link:hover:nth-child(7)
    ~ .header__c-bottom-e-dd-twin-c-cats
    .header__c-bottom-e-dd-twin-c-cats-wrp[data-category="7"] {
    display: flex;
  }
  .header__c-bottom-e-dd-twin-c-link:hover:nth-child(8)
    ~ .header__c-bottom-e-dd-twin-c-cats
    .header__c-bottom-e-dd-twin-c-cats-wrp[data-category="8"] {
    display: flex;
  }
  .article__link:hover {
    background-color: #0982c6;
    color: #fff;
  }
  .news-search__form-drop-list a:hover {
    color: #0982c6;
    text-decoration: underline;
  }
}

/* End */
/* /local/templates/narkology2/main.css?1753022002144369 */
