@charset "UTF-8";

:root {
  --a-color_white: #fff;
  --a-color_red: #FF0A47;
  --a-color_yellow: #FFD11A;
  --a-color_green: #2DC044;
  --a-color_dark: #0D1140;
  --a-color_dark-RGB: 13, 17, 64;
  --a-color_text: var(--a-color_dark);
  --a-color_secondary: #3D4166;
  --a-color_text--grey: rgba(var(--a-color_dark-RGB), .6);
  --a-color_text--light: #9EA0B3;
  --a-color_text--blue: #CDD9ED;
  --a-color_text--white: var(--a-color_white);
  --a-color_text--secondary: #707C8B;
  --a-color_link: var(--a-color_red);
  --a-color_active: #A8B2C7;
  --a-color_thumbnail: #cfd3d8;
  --a-color_disabled: #f5f5f5;
  --a-color_bg--white: var(--a-color_white);
  --a-color_bg--blue: #f7f9fd;
  --a-color_bg--grey: #F5F5F7;
  --a-color_bg--dark: var(--a-color_dark);
  --a-color_bg--red: var(--a-color_red);
  --a-color_bg--yellow: var(--a-color_yellow);
  --a-color_bg--input: #f4f4f4;
  --a-color_border--darkgrey: #6A7291;
  --a-color_border--grey: #A8B2C7;
  --a-color_border--lightgrey: #D3D8E3;
  --a-color_metro-green: #05A18F;
  --a-color_metro-blue: #6983E2;
}

:root {
  --a-padding--x1: 0.25rem;
  --a-padding--x2: 0.5rem;
  --a-padding--x3: 0.75rem;
  --a-padding--x4: 1rem;
  --a-padding--x5: 1.25rem;
  --a-padding--x6: 1.5rem;
  --a-padding--x7: 1.75rem;
  --a-padding--x8: 2rem;
  --a-padding--x9: 2.25rem;
  --a-padding--x10: 2.5rem;
  --a-padding--x11: 2.75rem;
  --a-padding--x12: 3rem;
  --a-padding--x13: 3.25rem;
  --a-padding--x14: 3.5rem;
  --a-padding--x15: 3.75rem;
  --a-padding--x16: 4rem;
  --a-padding--x17: 4.25rem;
  --a-padding--x18: 4.5rem;
  --a-padding--x19: 4.75rem;
  --a-padding--x20: 5rem;
  --layout-v-padding: 2.5rem;
  --layout-h-padding: 1rem;
}

:root {
  --a-borderRadius--x1: 0.25rem;
  --a-borderRadius--x2: 0.5rem;
  --a-borderRadius--x3: 0.75rem;
  --a-borderRadius--x4: 1rem;
  --a-borderRadius--x5: 1.25rem;
  --a-borderRadius--x6: 1.5rem;
  --a-borderRadius--x7: 1.75rem;
  --a-borderRadius--x8: 2rem;
  --a-borderRadius--def: var(--a-borderRadius--x3);
}

/*
    Dots plugin
*/

/*
    Navigation plugin
*/

.carousel {
  position: relative;
  box-sizing: border-box;
}

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

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

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

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev,
.carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

/*
  Thumbs plugin
*/

/* 3/2 */

/*
  HTML plugin
*/

/*
  Toolbar plugin
*/

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

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

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

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  /* For Safari */
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

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

.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

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

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

/* Close button located inside content area */

.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click,
.fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

/* Opening */

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden="false"] .carousel__dots,
.fancybox__container.is-animated[aria-hidden="false"] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

/* Closing */

.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}

/* Both `throwOut` classes are for closing animation after dragging up/down */

.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}

@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }

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

@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}

.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

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

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

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

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

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

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

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

.fancybox__image {
  transform-origin: 0 0;
  user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit="contain"] {
  overflow: visible;
  touch-action: none;
  /* Fix Mac OS Safari 11 - 13 */
}

.has-image[data-image-fit="contain"] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}

.has-image[data-image-fit="contain"] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.has-image[data-image-fit="contain-w"] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit="contain-w"] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit="contain-w"] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit="cover"] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit="cover"] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit="cover"] .fancybox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

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

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

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

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

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  /* Keep aspect ratio */
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  user-select: none;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

.fancybox__content > .carousel__button.is-close {
  top: 1rem;
  right: 1rem;
  width: 2.125rem;
  height: 2.125rem;
  color: var(--a-color_secondary);
  background: var(--a-color_bg--blue);
  border-radius: var(--a-borderRadius--x1);
}

.fancybox__content > .carousel__button.is-close svg {
  width: 1rem;
  height: 1rem;
  filter: none;
}

/**
 * Swiper 9.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 6, 2023
 */

@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;
  /*
    --swiper-preloader-color: var(--swiper-theme-color);
    --swiper-wrapper-transition-timing-function: initial;
    */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  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-wrapper {
  transform: translate3d(0px, 0, 0);
}

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

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

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

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

/* Auto Height */

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

/* 3D Effects */

.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-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-cube-shadow {
  transform-style: preserve-3d;
}

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

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

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

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

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

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

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

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

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

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

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

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

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

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container: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);
  }
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

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

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

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

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

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

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

.swiper-scrollbar-lock {
  display: none;
}

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

.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-initialized {
  position: relative;
}

.swiper-container-initialized {
  position: relative;
}

.swiper-pagination,
.swiper-pagination-bullets {
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-pagination-bullet {
  flex: 1;
  width: 100%;
  height: 0.25rem;
  max-width: unset;
  margin: 0 0 0 0.5rem;
  background: var(--a-color_bg--grey);
  border-radius: var(--a-borderRadius--def);
  opacity: 1;
  cursor: pointer;
  transition: .2s;
}

.swiper-pagination-bullet:first-child {
  margin-left: 0;
}

.swiper-pagination-bullet:hover {
  cursor: default;
}

.swiper-pagination-bullet-active {
  background: var(--a-color_text--blue);
}

.--bg-color_dark .swiper-pagination-bullet {
  background: var(--a-color_border--darkgrey);
}

.--bg-color_dark .swiper-pagination-bullet-active {
  background-color: var(--a-color_border--grey);
}

.--bg-color_yellow .swiper-pagination-bullet {
  background: var(--a-color_bg--grey);
}

.--bg-color_yellow .swiper-pagination-bullet-active {
  background-color: var(--a-color_border--darkgrey);
}

.swiper-pagination-clickable .swiper-pagination-bullet:hover {
  cursor: pointer;
  background: var(--a-color_text--blue);
}

.swiper-navigation {
  display: none;
}

.swiper-pagination-lock + .swiper-navigation {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--a-color_border--grey);
  border-radius: var(--a-borderRadius--x2);
  background-color: var(--a-color_bg--white);
  color: var(--a-color_red);
  cursor: pointer;
  transition: .2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--a-color_bg--blue);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: none;
  color: currentColor;
}

.swiper-button-disabled,
.swiper-button-disabled:hover {
  cursor: default;
  border-color: var(--a-color_border--lightgrey);
  background-color: var(--a-color_bg--blue);
  color: var(--a-color_border--lightgrey);
}

.--bg-color_yellow .swiper-button-prev,
.--bg-color_yellow .swiper-button-next {
  border-color: var(--a-color_border--darkgrey);
  background-color: transparent;
  color: var(--a-color_text);
}

.--bg-color_yellow .swiper-button-prev:hover,
.--bg-color_yellow .swiper-button-next:hover {
  background-color: transparent;
  color: var(--a-color_red);
}

.--bg-color_yellow .swiper-button-disabled,
.--bg-color_yellow .swiper-button-disabled:hover {
  border-color: var(--a-color_border--grey);
  color: var(--a-color_border--grey);
}

body .bvi-body a.bvi-link {
  top: 0.3125rem !important;
  right: 0.3125rem !important;
}

.bvi-copyright {
  display: none !important;
}

.bvi-modal .bvi-block:nth-child(2) {
  display: none !important;
}

.bvi-images.bvi-images-cog {
  background-image: url("/assets/dist/images/button-visually-impaired-javascript-master/cog.svg") !important;
}

.bvi-images.bvi-images-eye-slash {
  background-image: url("/assets/dist/images/button-visually-impaired-javascript-master/eye-slash.svg") !important;
}

.bvi-images.bvi-images-volume-up {
  background-image: url("/assets/dist/images/button-visually-impaired-javascript-master/volume-up.svg") !important;
}

.bvi-images.bvi-images-volume-off {
  background-image: url("/assets/dist/images/button-visually-impaired-javascript-master/volume-off.svg") !important;
}

.bvi-images.bvi-images-adjust {
  background-image: url("/assets/dist/images/button-visually-impaired-javascript-master/adjust.svg") !important;
}

.bvi-images.bvi-images-minus-circle {
  background-image: url("/assets/dist/images/button-visually-impaired-javascript-master/minus-circle.svg") !important;
}

.bvi-images.bvi-images-image {
  background-image: url("/assets/dist/images/button-visually-impaired-javascript-master/image.svg") !important;
}

.bvi-images.bvi-images-minus {
  background-image: url("/assets/dist/images/button-visually-impaired-javascript-master/minus.svg") !important;
}

.bvi-images.bvi-images-eye {
  background-image: url("/assets/dist/images/button-visually-impaired-javascript-master/eye.svg") !important;
}

.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) {
  line-height: 1.15 !important;
}

.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h1,
.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h1 {
  font-size: 3rem !important;
  font-weight: 500 !important;
  line-height: 2.75rem !important;
  letter-spacing: -0.06em !important;
}

.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h1-min {
  display: inline-block !important;
  font-size: 2.75rem !important;
  font-weight: 500 !important;
  line-height: 2.75rem !important;
  letter-spacing: -0.06em !important;
}

.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h2,
.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h2 {
  font-size: 2.125rem !important;
  font-weight: 500 !important;
  line-height: 2.25rem !important;
}

.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h2 [class*="a-font_h"],
.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h2 [class*="a-font_h"] {
  display: block;
}

.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h3,
.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h3 {
  font-size: 1.75rem !important;
  font-weight: 500 !important;
  line-height: 2rem !important;
}

.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h3 [class*="a-font_h"],
.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h3 [class*="a-font_h"] {
  display: block;
}

.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h4,
.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h4 {
  font-size: 1.375rem !important;
  font-weight: 500 !important;
  line-height: 1.5rem !important;
}

.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h4 [class*="a-font_h"],
.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h4 [class*="a-font_h"] {
  display: block;
}

.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h5,
.bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h5 {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  line-height: 1.5rem !important;
}

.bvi-body[data-bvi-theme] *:not(.bvi-no-styles) {
  stroke: inherit;
  background-color: inherit !important;
  color: inherit !important;
  transition: 0s;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .a-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: unset;
  width: fit-content;
  min-width: 0;
  max-width: unset;
  padding: .25em;
  white-space: unset;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .a-button:hover {
  opacity: .75;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .a-button .icon-sprite {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .a-button .icon-sprite {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .a-button .icon-sprite {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .a-button .icon-sprite {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .a-button .icon-sprite {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .a-button .icon-sprite * {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .a-button .icon-sprite * {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .a-button .icon-sprite * {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .a-button .icon-sprite * {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .a-button .icon-sprite * {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .l-section__inner {
  background: none !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .swiper-navigation .swiper-button-prev:not(.bvi-no-styles),
.bvi-body[data-bvi-fontsize][data-bvi-theme] .swiper-navigation .swiper-button-next:not(.bvi-no-styles) {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit !important;
  color: inherit !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .swiper-navigation .swiper-button-prev:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .swiper-navigation .swiper-button-prev:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .swiper-navigation .swiper-button-prev:hover {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .swiper-navigation .swiper-button-prev:hover {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .swiper-navigation .swiper-button-prev:hover {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .swiper-navigation .swiper-button-next:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .swiper-navigation .swiper-button-next:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .swiper-navigation .swiper-button-next:hover {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .swiper-navigation .swiper-button-next:hover {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .swiper-navigation .swiper-button-next:hover {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-popup-form .l-section__inner::before,
.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-form .l-section__inner::before {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .a-input {
  height: 100%;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .a-input::placeholder {
  color: inherit !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-form__btn .a-button {
  width: 100%;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-header__top-sveden {
  font-size: 1rem !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-apply-btn {
  display: none !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-header__top,
.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-header__main {
  position: static !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-header__topmenu,
.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-header__levels {
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-header__topmenu-link {
  margin-left: 0;
  margin-right: 0.75rem;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-header__search-toggler {
  height: 100%;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .s-header__burger-icon {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .s-header__burger-icon {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .s-header__burger-icon {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .s-header__burger-icon {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .s-header__burger-icon {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-header__burger-label {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-header-menu .m-level-nav .swiper-wrapper {
  grid-template-columns: 1fr;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-menu-toggled__mainlink-toggle {
  justify-content: center;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-footer .m-nav-contacts__feedback {
  width: unset;
  height: unset;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-banner .l-section__inner {
  border: 0.0625rem solid;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-banner__title {
  font-size: 2.125rem !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-banner__bg-img,
.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-quiz__bg-img img {
  display: none !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-quiz * {
  background-color: transparent !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"] .s-quiz__text {
  padding: 0;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"] .s-quiz__btn {
  position: relative;
  margin-top: 2rem;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .s-quiz__btn {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .s-quiz__btn {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .s-quiz__btn {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .s-quiz__btn {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .s-quiz__btn {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .s-quiz__btn * {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .s-quiz__btn * {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .s-quiz__btn * {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .s-quiz__btn * {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .s-quiz__btn * {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-quiz__img {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-quiz__slide-answer:hover .m-quiz__slide-answer-label:before {
  border: 0;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-quiz__slide-back {
  padding: .5em;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-quiz__slide-back .icon-sprite {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-app-links__item:not(.bvi-no-styles) img:not(.bvi-no-styles) {
  background-color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-card-ico__title,
.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-card-ico__text {
  overflow-wrap: break-word !important;
  white-space: unset !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-card-ico__img {
  display: none !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-license__slide {
  overflow: hidden;
  height: auto;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-license__item-text {
  word-break: break-word;
}

body .bvi-body[data-bvi-theme] :not(.bvi-no-styles) button[type=button].m-tabs__btn:not(.bvi-no-styles) {
  background-color: inherit !important;
  color: inherit !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .m-tabs__btn:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .m-tabs__btn:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .m-tabs__btn:hover {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .m-tabs__btn:hover {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .m-tabs__btn:hover {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .m-tabs__btn.is-active {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .m-tabs__btn.is-active {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .m-tabs__btn.is-active {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .m-tabs__btn.is-active {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .m-tabs__btn.is-active {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-subscription .m-form {
  max-width: unset;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-subscription__image {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .accordion-item__question-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-faculty__image {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-faculties__more .a-button {
  width: fit-content;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .s-faculties__filter-label:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .s-faculties__filter-label:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .s-faculties__filter-label:hover {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .s-faculties__filter-label:hover {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .s-faculties__filter-label:hover {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-courses-list .cource-card__btn .icon-sprite,
.bvi-body[data-bvi-fontsize][data-bvi-theme] .specialty-card:before,
.bvi-body[data-bvi-fontsize][data-bvi-theme] .specialty-card__more span {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-programs-list__select {
  height: auto;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-programs-recommend__more .a-button,
.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-programs-list__more .a-button {
  width: fit-content;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .specialty-card__note {
  white-space: unset;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-intro__img-ico {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-intro__img-pic:after {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-admission-campaign__slide {
  width: 13.75rem;
  height: auto;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-teachers__card-info {
  overflow-wrap: break-word;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-teaching-staff .m-tabs__btns .swiper-wrapper {
  width: 100%;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-teachers .swiper-slide {
  max-width: unset !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-teachers__card-position,
.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-teachers__card-text {
  max-height: unset !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-map__search {
  width: auto;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-map__search .a-input {
  text-overflow: ellipsis;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-map__search .m-search {
  height: auto;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-search__btn {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-proceed-block__item {
  border: 0.0625rem solid;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-proceed-block__item-image {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-proceed-block__item-phones {
  flex-direction: column;
  align-items: flex-start;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-proceed-block__item-phone svg {
  width: 1em;
  height: 1em;
  font-size: 1rem !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-resume__list-item__skills li {
  list-style-type: disc;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-resume__list-item__skills li::before {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-form-pay__ico {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-form-pay__contracts .a-input__wrapper.--contract a {
  font-size: 0.875rem !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-help-employment__item {
  background: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .m-share .ya-share2__badge {
  background-color: currentColor !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-levels__trigger {
  background: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-contacts__logo {
  display: none !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-loyality__card,
.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-howto-earn__card {
  background: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme] .s-levels__level-item svg {
  width: 1em;
  height: 1em;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=white] .s-levels__level-title {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=black] .s-levels__level-title {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=blue] .s-levels__level-title {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=brown] .s-levels__level-title {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme=green] .s-levels__level-title {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme="black"] .s-partners__item,
.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme="black"] .s-partners__item img,
.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme="green"] .s-partners__item,
.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-theme="green"] .s-partners__item img {
  background-color: currentColor !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"] .s-partners,
.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"] .s-video-block,
.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"] .s-student-life {
  display: none !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"] .m-teachers__card-image {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"] .m-app-links__item {
  height: auto;
  padding: .25em;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"] .m-app-links__item:after {
  content: attr(aria-label);
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"][data-bvi-theme=white] .m-app-links__item {
  background-color: #000 !important;
  color: #fff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"][data-bvi-theme=black] .m-app-links__item {
  background-color: #fff !important;
  color: #000 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"][data-bvi-theme=blue] .m-app-links__item {
  background-color: #063462 !important;
  color: #9dd1ff !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"][data-bvi-theme=brown] .m-app-links__item {
  background-color: #4d4b43 !important;
  color: #f7f3d6 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"][data-bvi-theme=green] .m-app-links__item {
  background-color: #a9e44d !important;
  color: #3b2716 !important;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"] .s-download-app__img {
  display: none;
}

.bvi-body[data-bvi-fontsize][data-bvi-theme][data-bvi-images="false"] .s-download-app__desc {
  margin-left: 0;
  padding-left: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

html {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  min-width: 320px;
}

body {
  font-size: 16px;
}

ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

iframe {
  border: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

h1,
.a-font_h1 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 2.75rem;
  letter-spacing: -0.06em;
}

h1 [class*="a-font"],
.a-font_h1 [class*="a-font"] {
  display: inline-block;
}

.a-font_h1-min {
  display: inline-block;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 2.75rem;
  letter-spacing: -0.06em;
}

h2,
.a-font_h2 {
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 2.25rem;
}

h2 [class*="a-font"],
.a-font_h2 [class*="a-font"] {
  display: inline-block;
}

h3,
.a-font_h3 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2rem;
}

h3 [class*="a-font"],
.a-font_h3 [class*="a-font"] {
  display: inline-block;
}

h4,
.a-font_h4 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5rem;
}

h4 [class*="a-font"],
.a-font_h4 [class*="a-font"] {
  display: inline-block;
}

h5,
.a-font_h5 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
}

h5 [class*="a-font"],
.a-font_h5 [class*="a-font"] {
  display: inline-block;
}

h6,
.a-font_h6 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.a-font_xl {
  font-size: 1.25rem;
  line-height: 1.625rem;
}

.a-font_xl-m {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.625rem;
}

.a-font_l {
  font-size: 1.125rem;
  line-height: 1.375rem;
}

.a-font_l-m {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.a-font_m {
  font-size: 1rem;
  line-height: 1.25rem;
}

.a-font_m-m {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.a-font_s {
  font-size: 0.875rem;
  line-height: 1rem;
}

.a-font_s-m {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
}

.a-font_xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.a-font_xs-m {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
}

.a-font_button {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.a-font_button-m {
  font-size: 0.875rem;
  line-height: 1rem;
}

.a-font_button-s {
  font-size: 0.875rem;
  line-height: 0.875rem;
}

.a-font_link {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
  text-decoration-line: underline;
}

.a-font_banner-size-1 {
  font-size: 2.375rem;
  font-weight: 500;
  line-height: 2.5rem;
  letter-spacing: -0.06em;
}

.a-font_banner-size-2 {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 2.25rem;
  letter-spacing: -0.06em;
}

@font-face {
  font-family: "TT Norms";
  src: url("/assets/dist/fonts/TTNormsLight.woff2") format("woff2"), url("/assets/dist/fonts/TTNormsLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Norms";
  src: url("/assets/dist/fonts/TTNormsRegular.woff2") format("woff2"), url("/assets/dist/fonts/TTNormsRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Norms";
  src: url("/assets/dist/fonts/TTNormsMedium.woff2") format("woff2"), url("/assets/dist/fonts/TTNormsMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Norms";
  src: url("/assets/dist/fonts/TTNormsBold.woff2") format("woff2"), url("/assets/dist/fonts/TTNormsBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

:root {
  --full-width: 2560px;
}

body {
  overflow: unset;
  max-width: var(--full-width);
  margin: 0 auto;
  font-family: "TT Norms", sans-serif;
  font-size: 16px;
  color: var(--a-color_dark);
  background-color: var(--a-color_bg--blue);
  -webkit-text-size-adjust: 100%;
  font-variant-ligatures: no-common-ligatures;
}

a {
  text-decoration: none;
  color: inherit;
}

b,
strong {
  font-weight: 500;
}

.hidden,
[hidden] {
  display: none !important;
}

:root {
  --layout-width: 1300px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--a-color_bg--grey) var(--a-color_bg--blue);
}

/* Works on Chrome, Edge, and Safari */

*::-webkit-scrollbar {
  cursor: pointer;
  width: 4px;
  height: 4px;
}

*::-webkit-scrollbar-track {
  background: var(--a-color_bg--blue);
}

*::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background-color: var(--a-color_border--lightgrey);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--a-color_text--blue);
}

.wrapper {
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
}

.l-wide {
  width: 100%;
  max-width: var(--layout-width);
  margin: 0 auto;
}

table {
  border-collapse: collapse;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
}

table thead {
  background-color: var(--a-color_bg--blue);
}

table th {
  font-weight: 500;
}

table th,
table td {
  padding: 16px;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  text-align: left;
}

.menu-item-active {
  pointer-events: none;
}

.ico-color-check {
  width: 1em;
  height: 1em;
}

.ico-color-demo-1 {
  width: 1em;
  height: 1em;
}

.ico-color-demo-2 {
  width: 1em;
  height: 1em;
}

.ico-color-demo-3 {
  width: 1em;
  height: 1em;
}

.ico-color-placemark {
  width: 0.96em;
  height: 1em;
}

.ico-mono-arr-back {
  width: 0.5em;
  height: 1em;
  fill: initial;
}

.ico-mono-arr-slider-nav-next {
  width: 0.46em;
  height: 1em;
  fill: initial;
}

.ico-mono-arr-slider-nav-prev {
  width: 0.46em;
  height: 1em;
  fill: initial;
}

.ico-mono-arrrow-right {
  width: 1.17em;
  height: 1em;
  fill: initial;
}

.ico-mono-arr_down {
  width: 1.56em;
  height: 1em;
  fill: initial;
}

.ico-mono-arr_right {
  width: 0.57em;
  height: 1em;
  fill: initial;
}

.ico-mono-bottom_sticky_call {
  width: 1em;
  height: 1em;
  fill: none;
}

.ico-mono-bottom_sticky_faculties {
  width: 1em;
  height: 1em;
  fill: none;
}

.ico-mono-bottom_sticky_main {
  width: 1.04em;
  height: 1em;
  fill: none;
}

.ico-mono-bottom_sticky_request {
  width: 1em;
  height: 1em;
  fill: none;
}

.ico-mono-bottom_sticky_specialities {
  width: 1.04em;
  height: 1em;
  fill: initial;
}

.ico-mono-burger {
  width: 1.6em;
  height: 1em;
  fill: initial;
}

.ico-mono-check {
  width: 1.13em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-chevron-down {
  width: 1em;
  height: 1em;
  fill: #A0A8B1;
}

.ico-mono-clock {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-close {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-comment {
  width: 1.11em;
  height: 1em;
  fill: #181940;
}

.ico-mono-download {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-email {
  width: 1.24em;
  height: 1em;
  fill: initial;
}

.ico-mono-eye {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-figure-flat-bl-0 {
  width: 1.18em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-figure-flat-bl-1 {
  width: 1.14em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-figure-flat-bl-2 {
  width: 1.16em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-figure-flat-bl-3 {
  width: 1.19em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-figure-flat-bl-4 {
  width: 1.15em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-figure-flat-bl-5 {
  width: 1.16em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-figure-flat-full-0 {
  width: 1.46em;
  height: 1em;
  fill: initial;
}

.ico-mono-figure-flat-full-1 {
  width: 1.06em;
  height: 1em;
  fill: initial;
}

.ico-mono-figure-flat-full-2 {
  width: 1.11em;
  height: 1em;
  fill: initial;
}

.ico-mono-figure-flat-full-3 {
  width: 1.29em;
  height: 1em;
  fill: initial;
}

.ico-mono-figure-round-0 {
  width: 1em;
  height: 1em;
  fill: #F7F9FD;
}

.ico-mono-figure-round-1 {
  width: 0.99em;
  height: 1em;
  fill: #F7F9FD;
}

.ico-mono-figure-round-2 {
  width: 0.99em;
  height: 1em;
  fill: #F7F9FD;
}

.ico-mono-figure-round-3 {
  width: 0.99em;
  height: 1em;
  fill: #F7F9FD;
}

.ico-mono-figure-skew-tl-angle {
  width: 1.21em;
  height: 1em;
  fill: none;
}

.ico-mono-figure-skew-tl-circle {
  width: 1.21em;
  height: 1em;
  fill: none;
}

.ico-mono-figure-skew-tl-star {
  width: 1.21em;
  height: 1em;
  fill: none;
}

.ico-mono-figure-skew-tl-wave {
  width: 1.21em;
  height: 1em;
  fill: none;
}

.ico-mono-figure-volume-bl-angle {
  width: 1.12em;
  height: 1em;
  fill: none;
}

.ico-mono-figure-volume-bl-circle {
  width: 1.12em;
  height: 1em;
  fill: none;
}

.ico-mono-figure-volume-bl-lines {
  width: 1.17em;
  height: 1em;
  fill: none;
}

.ico-mono-figure-volume-bl-semicircle {
  width: 1.34em;
  height: 1em;
  fill: none;
}

.ico-mono-figure-volume-bl-star {
  width: 1.12em;
  height: 1em;
  fill: none;
}

.ico-mono-figure-volume-bl-wave {
  width: 1.12em;
  height: 1em;
  fill: none;
}

.ico-mono-filters {
  width: 1em;
  height: 1em;
  fill: none;
}

.ico-mono-finger-tap {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-go {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-icon-email {
  width: 1.24em;
  height: 1em;
  fill: #7C94DE;
}

.ico-mono-icon-instagram {
  width: 1em;
  height: 1em;
  fill: #7C94DE;
}

.ico-mono-icon-phone-white {
  width: 0.94em;
  height: 1em;
  fill: #F7F9FD;
}

.ico-mono-icon-phone {
  width: 1em;
  height: 1em;
  fill: #7C94DE;
}

.ico-mono-icon-pin {
  width: 0.78em;
  height: 1em;
  fill: #7C94DE;
}

.ico-mono-icon-plus {
  width: 1em;
  height: 1em;
  fill: #181940;
}

.ico-mono-link {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-logo-form {
  width: 0.91em;
  height: 1em;
  fill: initial;
}

.ico-mono-loupe-outline {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-loupe {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-main {
  width: 1em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-metro {
  width: 1.8em;
  height: 1em;
  fill: initial;
}

.ico-mono-num-1 {
  width: 0.77em;
  height: 1em;
  fill: none;
}

.ico-mono-num-2 {
  width: 0.75em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-num-3 {
  width: 0.75em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-num-4 {
  width: 0.75em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-num-5 {
  width: 0.75em;
  height: 1em;
  fill: #FF0A47;
}

.ico-mono-phone-filled {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-phone-outline {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-pin {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-placemark {
  width: 0.84em;
  height: 1em;
  fill: initial;
}

.ico-mono-play {
  width: 0.88em;
  height: 1em;
  fill: initial;
}

.ico-mono-program-how-training_0 {
  width: 1.18em;
  height: 1em;
  fill: initial;
}

.ico-mono-program-how-training_1 {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-program-how-training_2 {
  width: 1em;
  height: 1em;
  fill: initial;
}

.ico-mono-program-how-training_3 {
  width: 1.03em;
  height: 1em;
  fill: initial;
}

.ico-mono-program-how-training_4 {
  width: 1.3em;
  height: 1em;
  fill: initial;
}

.ico-mono-rune-double {
  width: 0.8em;
  height: 1em;
  fill: none;
}

.ico-mono-rune_left {
  width: 0.5em;
  height: 1em;
  fill: initial;
}

.ico-mono-rune_thin {
  width: 0.5em;
  height: 1em;
  fill: #F85969;
}

.ico-mono-share-arr {
  width: 1.2em;
  height: 1em;
  fill: initial;
}

.ico-mono-share-facebook {
  width: 1em;
  height: 1em;
  fill: #fff;
}

.ico-mono-share-twitter {
  width: 1em;
  height: 1em;
  fill: #fff;
}

.ico-mono-share-vkontakte {
  width: 1em;
  height: 1em;
  fill: #fff;
}

.ico-mono-social-telegram {
  width: 0.95em;
  height: 1em;
  fill: initial;
}

.ico-mono-social-vk {
  width: 0.95em;
  height: 1em;
  fill: initial;
}

.ico-mono-social-whatsapp {
  width: 0.95em;
  height: 1em;
  fill: initial;
}

.ico-mono-social-youtube {
  width: 0.95em;
  height: 1em;
  fill: initial;
}

.ico-mono-zoom-in-fat {
  width: 0.96em;
  height: 1em;
  fill: #FFF;
}

.ico-mono-zoom-in {
  width: 0.96em;
  height: 1em;
  fill: initial;
}

.a-button {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.375rem;
  padding: 0 1.5rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--a-borderRadius--x2);
  transition: 0.2s;
  color: var(--a-color_bg--white);
  border: 0.0625rem solid transparent;
  background-color: var(--a-color_link);
  outline: none;
}

.a-button:not(.--no-hover):not(:disabled).hover,
.a-button:not(.--no-hover):not(:disabled):hover {
  border-color: var(--a-color_yellow);
  background-color: var(--a-color_yellow);
  color: var(--a-color_dark);
}

.a-button--rounded {
  width: 2.375rem;
  height: 2.375rem;
  padding: 0;
  border-radius: 2.375rem;
}

.a-button--square {
  width: 2.375rem;
  height: 2.375rem;
  padding: 0;
}

.a-button .icon-sprite {
  height: 1rem;
  width: 1rem;
  flex: none;
}

.a-button .icon-sprite ~ * {
  margin-left: 0.5rem;
}

.a-button .icon-sprite:last-child {
  margin-right: 0;
  margin-left: 0.5rem;
}

.a-button .icon-sprite:first-child:last-child {
  margin-right: 0;
  margin-left: 0;
}

.a-button--small {
  height: 2.5rem;
  font-size: 0.875rem;
  line-height: 1;
}

.a-button--small--rounded {
  width: 2.375rem;
  height: 2.375rem;
  padding: 0;
  border-radius: 2.375rem;
}

.a-button--small--square {
  width: 2.375rem;
  height: 2.375rem;
  padding: 0;
}

.a-button--medium {
  height: 3rem;
  font-size: 0.875rem;
  line-height: 1rem;
}

.a-button--medium--rounded {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 3rem;
}

.a-button--medium--square {
  width: 3rem;
  height: 3rem;
  padding: 0;
}

.a-button--large {
  height: 3.25rem;
  font-size: 1rem;
  line-height: 1.25rem;
}

.a-button--large--rounded {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border-radius: 3.25rem;
}

.a-button--large--square {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
}

.a-button--large .icon-sprite {
  height: 1.75rem;
}

.a-button--accent {
  color: var(--a-color_bg--white);
  border: 0.0625rem solid transparent;
  background-color: var(--a-color_link);
  outline: none;
}

.a-button--accent:not(.--no-hover):not(:disabled).hover,
.a-button--accent:not(.--no-hover):not(:disabled):hover {
  border-color: var(--a-color_yellow);
  background-color: var(--a-color_yellow);
  color: var(--a-color_dark);
}

.a-button--dark {
  color: var(--a-color_bg--white);
  border: 0.0625rem solid var(--a-color_dark);
  background-color: var(--a-color_bg--dark);
}

.a-button--dark:not(.--no-hover):not(:disabled).hover,
.a-button--dark:not(.--no-hover):not(:disabled):hover {
  color: var(--a-color_dark);
  background-color: var(--a-color_yellow);
  border-color: var(--a-color_yellow);
}

.a-button--white {
  color: var(--a-color_link);
  border: 0.0625rem solid var(--a-color_bg--white);
  background-color: var(--a-color_bg--white);
}

.a-button--white:not(.--no-hover):not(:disabled).hover,
.a-button--white:not(.--no-hover):not(:disabled):hover {
  border-color: var(--a-color_yellow);
}

.a-button--ghost {
  color: inherit;
  border: 0.0625rem solid;
  background-color: transparent;
}

.a-button--ghost:not(.--no-hover):not(:disabled).hover,
.a-button--ghost:not(.--no-hover):not(:disabled):hover {
  border-color: var(--a-color_yellow);
}

.a-button--ghost-grey {
  color: var(--a-color_text);
  border: 0.0625rem solid var(--a-color_border--grey);
  background-color: var(--a-color_bg--white);
}

.a-button--ghost-grey:not(.--no-hover):not(:disabled).hover,
.a-button--ghost-grey:not(.--no-hover):not(:disabled):hover {
  border-color: var(--a-color_yellow);
}

.a-button--ghost-accent {
  color: var(--a-color_link);
  border: 0.0625rem solid var(--a-color_link);
  background-color: transparent;
}

.a-button--ghost-accent:not(.--no-hover):not(:disabled).hover,
.a-button--ghost-accent:not(.--no-hover):not(:disabled):hover {
  border-color: var(--a-color_yellow);
}

.a-button--ghost-grey {
  color: var(--a-color_text);
  border: 0.0625rem solid var(--a-color_border--grey);
  background-color: var(--a-color_bg--white);
}

.a-button--ghost-grey:not(.--no-hover):not(:disabled).hover,
.a-button--ghost-grey:not(.--no-hover):not(:disabled):hover {
  border-color: var(--a-color_link);
  background-color: var(--a-color_bg--red);
  color: var(--a-color_text--white);
}

.a-button--clear {
  color: var(--a-color_text);
  border: 0.0625rem solid transparent;
  background-color: transparent;
}

.a-button--clear:not(.--no-hover):not(:disabled).hover,
.a-button--clear:not(.--no-hover):not(:disabled):hover {
  background-color: transparent;
}

.a-button--link {
  height: unset;
  padding: 0;
  border: 0.0625rem solid transparent;
  background-color: transparent;
  color: var(--a-color_text);
}

.a-button--link:not(.--no-hover):not(:disabled).hover,
.a-button--link:not(.--no-hover):not(:disabled):hover {
  background-color: transparent;
}

.a-button.disabled,
.a-button:disabled {
  cursor: default;
  color: var(--a-color_active);
  background-color: var(--a-color_disabled);
  border-color: transparent;
}

.a-button__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  transition: .2s;
}

.a-button__ico .icon-sprite {
  width: 100%;
  height: 100%;
  color: inherit;
}

.a-input {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 2.75rem;
  padding: 0.75rem var(--a-padding--x4);
  border: 0.0625rem solid var(--a-color_thumbnail);
  border-radius: var(--a-borderRadius--x2);
  box-sizing: border-box;
  outline: none;
  font-size: inherit;
  color: var(--a-color_text);
  transition: 0.2s;
}

.a-input__wrapper {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-shrink: 1;
}

.a-input__wrapper .icon-sprite {
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  font-size: 1rem;
}

.a-input.vti__dropdown {
  display: none;
}

.a-input--large {
  height: 3rem;
}

.a-input--medium {
  height: 2.75rem;
}

.a-input--small {
  height: 2.5rem;
}

.a-input--phone {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.a-input--textarea {
  min-height: 11.25rem;
  padding: 0.75rem 1rem;
  resize: vertical;
  overflow-y: hidden;
}

.a-input::placeholder {
  color: var(--a-color_text--light);
}

.a-input--error {
  color: var(--a-color_link);
}

.a-input--error::placeholder {
  color: var(--a-color_link);
}

.a-input--error,
.a-input--error:focus {
  border: 0.0625rem solid var(--a-color_link);
}

.a-input:focus {
  border: 0.0625rem solid var(--a-color_border--grey);
  outline: none;
}

.a-input:disabled {
  cursor: auto;
  color: var(--a-color_border--grey);
  border: 0.0625rem solid var(--a-color_bg--blue);
  background-color: var(--a-color_bg--blue);
}

.a-input:disabled + .a-input__icon {
  filter: grayscale(1);
}

.a-input__label {
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0;
  color: inherit;
}

.a-input__label--error {
  color: var(--a-color_link);
}

.a-select {
  position: relative;
}

.a-select select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  min-height: 2.75rem;
  margin: 0;
  padding: 0.5rem 3.25rem 0.5rem 1rem;
  border: 0.0625rem solid var(--a-color_thumbnail);
  border-radius: var(--a-borderRadius--x2);
  background-color: var(--a-color_bg--white);
  font-size: inherit;
  color: var(--a-color_secondary);
  cursor: pointer;
}

.a-select select.--filter {
  height: 3rem;
  border-color: var(--a-color_border--grey);
  font-weight: 500;
}

.a-select select[disabled] {
  border-color: var(--a-color_border--lightgrey);
  background-color: var(--a-color_bg--blue);
  color: var(--a-color_text--light);
  cursor: default;
}

.a-select select::-ms-expand {
  display: none;
}

.a-select select:focus {
  outline: none;
}

.a-select select option {
  color: var(--a-color_secondary);
  background-color: var(--a-color_bg--white);
}

.a-select select option[disabled] {
  color: var(-a-color_text--blue);
}

.a-select select option[selected] {
  color: var(--a-color_text--grey);
}

.a-select select::placeholder,
.a-select select option:first-child[disabled="disabled"] {
  color: var(--a-color_text--light);
}

.a-select::after {
  cursor: pointer;
  position: absolute;
  top: 0.0625rem;
  right: 0.0625rem;
  width: 2.75rem;
  height: calc(100% - 2px);
  background: var(--a-color_bg--blue) url("data:image/svg+xml,%3Csvg width='14' height='7' viewBox='0 0 14 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 6L13 1' stroke='%239BA0BA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center;
  transition: 0.25s all ease;
  border-top-right-radius: var(--a-borderRadius--x2);
  border-bottom-right-radius: var(--a-borderRadius--x2);
  border-left: 0;
  content: "";
  pointer-events: none;
}

.a-uikit-select {
  position: relative;
  display: block;
}

.a-uikit-select > input[disabled] + span {
  background-color: var(--a-color_bg--blue);
  pointer-events: none;
}

.a-uikit-select__input {
  cursor: pointer;
  padding-right: 2.5rem;
  appearance: none;
  background-position: right 1rem center;
  resize: none;
}

.a-uikit-select__input::after {
  background: var(--a-color_bg--white);
}

.a-uikit-select__input::before {
  z-index: 1;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  width: 0.75rem;
  height: 0.3125rem;
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml,<svg width="14" height="7" viewBox="0 0 14 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 6L13 1" stroke="%23A8B2C7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.a-uikit-select__input._open {
  border-radius: var(--a-borderRadius--x2) var(--a-borderRadius--x2) 0 0;
}

.a-uikit-select__input._checked,
.a-uikit-select__input._other {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.a-uikit-select__input._checked span,
.a-uikit-select__input._other span {
  color: var(--a-color_text--grey);
}

.a-uikit-select__input:focus {
  border-color: var(--a-color_link);
}

.a-uikit-select__input input {
  display: none;
  width: 100%;
  border: none;
  outline: none;
}

.a-uikit-select__input input:focus {
  outline: none;
}

.a-uikit-select__input._other input {
  display: block;
  outline: none;
}

.a-uikit-select__placeholder {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  pointer-events: none;
  color: var(--a-color_text--light);
}

.a-uikit-select__input._other .a-uikit-select__placeholder {
  display: none;
}

.a-uikit-select.error .a-uikit-select__input {
  border-color: var(--a-color_link);
}

.a-uikit-select__list {
  overflow: hidden;
  z-index: 2;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: flex;
  max-height: 0;
  margin-top: -0.0625rem;
  border: 0 solid var(--a-color_thumbnail);
  border-radius: 0 0 var(--a-borderRadius--def) var(--a-borderRadius--def);
  background-color: var(--a-color_bg--white);
}

.a-uikit-select__list_select {
  flex-direction: column;
}

.a-uikit-select__list_choose {
  text-align: center;
  flex-wrap: wrap;
}

.a-uikit-select__list-option {
  position: relative;
  padding: var(--a-padding--x2) var(--a-padding--x5);
  transition: 0.2s;
  flex: 1;
}

.a-uikit-select__list-option:hover {
  background-color: var(--a-color_bg--blue);
}

.a-uikit-select__list-option_other {
  text-align: left;
}

.a-uikit-select__list-option input {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.a-uikit-select__list-option input[disabled] + span {
  color: var(--a-color_text--blue);
  pointer-events: none;
}

.a-uikit-select__list-option.--popular::after {
  content: "Популярно";
  position: absolute;
  right: var(--a-padding--x5);
  color: var(--a-color_red);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
}

.a-uikit-select__input._open ~ .a-uikit-select__list {
  overflow: auto;
  max-height: 19.375rem;
  padding: 0.75rem 0;
  border-width: 0.0625rem;
}

.m-form {
  position: relative;
  display: flex;
  width: 100%;
  border-radius: var(--a-borderRadius--x16);
  flex-wrap: wrap;
}

.m-form.--bg-color_white {
  color: var(--a-color_text);
  background: var(--a-color_bg--white);
}

.m-form.--bg-color_white .m-form__privacy-checkbox:checked ~ .m-form__privacy-ico {
  background-color: var(--a-color_bg--white);
}

.m-form.--bg-color_white .ico-mono-check {
  fill: var(--a-color_red);
}

.m-form.--bg-color_dark {
  color: var(--a-color_bg--white);
  background-color: transparent;
}

.m-form.--bg-color_dark .m-form__privacy-text {
  color: var(--a-color_white);
}

.m-form.--bg-color_dark .m-form__privacy-text a {
  color: var(--a-color_white);
}

.m-form.--bg-color_dark .m-form__privacy-ico {
  border-color: var(--a-color_white);
  background-color: var(--a-color_bg--white);
}

.m-form.--bg-color_dark .m-form__privacy-checkbox:checked ~ .m-form__privacy-ico {
  border-color: var(--a-color_white);
  background-color: var(--a-color_white);
}

.m-form.--bg-color_dark .m-form__privacy-checkbox:checked ~ .m-form__privacy-ico svg {
  fill: var(--a-color_red);
}

.m-form.--bg-color_grey {
  color: var(--a-color_bg--white);
  background-color: var(--a-color_border--grey);
}

.m-form.--bg-color_lightgrey {
  color: var(--a-color_text);
  background: var(--a-color_bg--blue);
  border: 0.0625rem solid var(--a-color_border--lightgrey);
}

.m-form.--bg-color_red {
  color: var(--a-color_bg--white);
  background-color: transparent;
}

.m-form.--bg-color_red .m-form__privacy-text {
  color: var(--a-color_white);
}

.m-form.--bg-color_red .m-form__privacy-text a {
  color: var(--a-color_white);
}

.m-form.--bg-color_red .m-form__privacy-ico {
  border-color: var(--a-color_bg--white);
  background-color: var(--a-color_bg--white);
}

.m-form.--bg-color_red .m-form__privacy-checkbox:checked ~ .m-form__privacy-ico {
  background-color: var(--a-color_bg--white);
  border-color: var(--a-color_bg--white);
}

.m-form.--bg-color_red .m-form__privacy-checkbox:checked ~ .m-form__privacy-ico svg {
  fill: var(--a-color_red);
}

.m-form.--bg-color_red .ico-mono-check {
  fill: var(--a-color_bg--white);
}

.m-form__box {
  width: 100%;
  margin: 0 0 1.5rem;
}

.m-form__title {
  font-weight: 500;
}

.m-form__subtitle {
  letter-spacing: -0.01em;
}

.m-form__title + .m-form__subtitle {
  margin-top: 1rem;
}

.m-form__inner {
  flex: none;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.m-form .a-input__wrapper {
  position: relative;
  min-width: 0;
  margin: 0 0 1rem;
  flex: 1;
}

.m-form .a-input.error,
.m-form .a-input.error:focus {
  border-color: var(--a-color_red);
}

.m-form__btn {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 1rem;
  flex: 1;
}

.m-form__btn .a-button {
  width: 100%;
  border: none;
  font-size: 0.875rem;
  line-height: 1rem;
  white-space: nowrap;
  transition: 0.2s;
}

.m-form__btn .a-button :hover {
  opacity: 0.8;
}

.m-form label.error {
  display: none !important;
}

.m-form__required {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--a-color_text--grey);
  width: 100%;
}

.m-form__privacy {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.m-form__privacy-checkbox,
.m-form__privacy-ico {
  width: 0.75rem;
  height: 0.75rem;
}

.m-form__privacy-checkbox {
  z-index: 1;
  position: absolute;
  display: block;
  opacity: 0;
}

.m-form__privacy-ico {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.125rem 0.375rem 0 0;
  background-color: var(--a-color_white);
  border: 0.0625rem solid var(--a-color_text--blue);
  border-radius: 0.25rem;
  transition: 0.2s;
  flex: none;
}

.m-form__privacy-ico svg {
  width: 0.75rem;
  opacity: 0;
  transition: var(--a-color_link);
}

.m-form__privacy-checkbox:checked ~ .m-form__privacy-ico {
  border-color: var(--a-color_link);
}

.m-form__privacy-checkbox:checked ~ .m-form__privacy-ico svg {
  opacity: 1;
  fill: red;
}

.m-form__privacy-text {
  display: block;
  color: inherit;
  opacity: 1;
}

.m-form__privacy-text a {
  cursor: pointer;
  color: inherit;
}

.m-phones {
  display: inline-flex;
}

.m-phones a {
  margin-left: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.m-phones a:hover {
  color: var(--a-color_link);
}

.m-phones a:first-child {
  margin-left: 0;
}

.m-phones a .icon-sprite {
  width: 0.9375rem;
  height: 0.9375rem;
}

.m-search {
  position: relative;
  display: flex;
  color: inherit;
}

.m-search .a-input {
  height: 100%;
}

.m-search .a-input__wrapper {
  flex: 1;
}

.m-search__btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 100%;
  border: none;
  background-color: transparent;
  font-size: 1.125rem;
  cursor: pointer;
}

.m-search__btn .icon-sprite {
  width: 1rem;
  height: 1rem;
}

.l-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-section.my-0 {
  margin: 0;
}

.l-section__inner {
  overflow: hidden;
  padding: var(--layout-v-padding) var(--layout-h-padding);
  background-color: var(--a-color_bg--white);
}

.l-section__inner.--bg-color_transparent {
  background-color: transparent;
}

.l-section__inner.--bg-color_white {
  background-color: var(--a-color_bg--white);
}

.l-section__inner.--bg-color_blue {
  background-color: var(--a-color_bg--blue);
  color: var(--a-color_text);
}

.l-section__inner.--bg-color_dark {
  background-color: var(--a-color_bg--dark);
  color: var(--a-color_bg--white);
}

.l-section__inner.--bg-color_grey {
  background-color: var(--a-color_border--grey);
  color: var(--a-color_bg--white);
}

.l-section__inner.--bg-color_red {
  background-color: var(--a-color_bg--red);
  color: var(--a-color_bg--white);
}

.l-section__inner.--bg-color_yellow {
  background-color: var(--a-color_bg--yellow);
}

.px-0 .l-section__inner {
  padding-right: 0;
  padding-left: 0;
}

.py-0 .l-section__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.br-0 .l-section__inner {
  border-radius: 0;
}

.l-section__title {
  margin-bottom: 1.5rem;
}

.l-section__title.my-0 {
  margin: 0;
}

.l-section--full {
  display: block;
}

.l-section--full .l-section__inner {
  overflow: unset;
}

.l-section--full.br-0 .l-section__inner {
  border-radius: 0;
}

.m-app-links {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--a-color_active);
}

.m-app-links__title {
  margin: 0 0 0.5rem;
}

.m-app-links__title br {
  display: none;
}

.m-app-links__wrapper {
  display: flex;
  flex: none;
}

.m-app-links__item {
  margin-left: 0.75rem;
  border-radius: var(--a-borderRadius--x2);
  background-color: var(--a-color_active);
  color: var(--a-color_bg--white);
  outline: none;
  transition: 0.2s;
}

.m-app-links__item:hover {
  background-color: var(--a-color_text);
  opacity: 0.8;
}

.m-app-links__item:first-child {
  margin-left: 0;
}

.m-app-links__item img,
.m-app-links__item svg {
  width: auto;
  height: 2.125rem;
  vertical-align: top;
}

.m-apply-btn {
  border-radius: var(--a-borderRadius--def);
  white-space: nowrap;
  color: var(--a-color_red);
}

.--no-quiz .m-apply-btn {
  display: none !important;
}

.m-level-nav .swiper-container {
  overflow: visible;
  width: 100%;
  margin: 0;
}

.m-level-nav .swiper-slide:last-child {
  margin-right: 0 !important;
}

.m-level-nav .swiper-container:not(.swiper-container-initialized) .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.m-level-nav__link {
  transition: color 0.2s;
}

.m-level-nav__link:hover {
  color: var(--a-color_link);
}

.m-level-nav__link.menu-item-active {
  color: var(--a-color_link);
}

.m-menu-toggled {
  overflow: hidden;
  padding: 0 var(--layout-h-padding);
  border-bottom: 0.0625rem solid var(--a-color_text--blue);
}

.s-grid-menu__col:last-child .m-menu-toggled:last-child {
  border: none;
}

.m-menu-toggled:last-child {
  margin: 0;
}

.m-menu-toggled._opened {
  margin: 0 0 1rem;
}

.m-menu-toggled__mainlink {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 2.75rem;
  margin: 0;
}

.m-menu-toggled__mainlink > a {
  transition: color 0.2s;
}

.m-menu-toggled__mainlink > a:hover {
  color: var(--a-color_link);
}

.m-menu-toggled__mainlink > a.menu-item-active {
  color: var(--a-color_link);
}

.m-menu-toggled__mainlink-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 2rem;
  height: 2rem;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}

.m-menu-toggled__mainlink-toggle .icon-sprite {
  width: 1rem;
  height: 0.75rem;
}

.m-menu-toggled._opened .m-menu-toggled__mainlink {
  margin-bottom: 0.5rem;
}

.m-menu-toggled._opened .m-menu-toggled__mainlink-toggle .icon-sprite {
  transform: rotate(180deg);
}

.m-menu-toggled__link {
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  max-height: 0;
  color: var(--a-color_text--grey);
  opacity: 0;
  transition: 0.2s;
}

.m-menu-toggled__link.--sitemap {
  display: none;
}

.m-menu-toggled__link.menu-item-active {
  color: var(--a-color_link);
}

.m-menu-toggled__link:hover {
  color: var(--a-color_link);
}

.m-menu-toggled._opened .m-menu-toggled__link {
  max-height: max-content;
  margin: 0 0 1rem;
  opacity: 1;
}

.m-menu-toggled__close {
  display: none;
  width: 100%;
  padding: 0 0 0.75rem;
  border: none;
  background-color: transparent;
  text-align: left;
  color: var(--a-color_link);
}

.m-menu-toggled._opened .m-menu-toggled__close {
  display: block;
}

.m-menu-toggled._type-btns {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.m-menu-toggled._type-btns .m-menu-toggled__link {
  border-radius: var(--a-borderRadius--x8);
  background-color: var(--a-color_bg--blue);
  font-weight: 500;
  color: var(--a-color_text);
  transition: 0.2s;
}

.m-menu-toggled._type-btns .m-menu-toggled__link:last-of-type {
  margin-right: 0;
}

.m-menu-toggled._type-btns .m-menu-toggled__link:hover {
  background-color: var(--a-color_link);
  color: var(--a-color_bg--white);
}

.m-menu-toggled._type-btns .m-menu-toggled__link.menu-item-active {
  background-color: var(--a-color_link);
  color: var(--a-color_bg--white);
}

.m-menu-toggled._type-btns .m-menu-toggled__link br {
  display: none;
}

.m-menu-toggled._type-btns._opened .m-menu-toggled__link {
  min-height: 2.5rem;
  margin-right: 0.5rem;
  padding: 0.625rem 1rem;
}

.m-nav-contacts {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.25rem 0;
  margin: 0;
  /* address */
  /* schedule */
  /* phones */
  /* feedback */
}

.m-nav-contacts__title {
  display: block;
  margin: 0 0 1rem;
}

.m-nav-contacts__address {
  display: block;
  margin: 0.875rem 0 0;
}

.m-nav-contacts__address:first-child {
  margin: 0;
}

.m-nav-contacts__address-ico {
  display: block;
}

.m-nav-contacts__address-ico svg {
  width: 1.125rem;
  height: 0.625rem;
  margin-right: 0.625rem;
  color: var(--a-color_link);
}

.m-nav-contacts__address-text {
  display: block;
  margin: 0.375rem 0 0;
  color: var(--a-color_text--blue);
}

.m-nav-contacts__schedule {
  display: block;
  margin: 0.25rem 0;
}

.m-nav-contacts__schedule i {
  display: inline-block;
  min-width: 3.5rem;
  padding-right: 0.75rem;
  color: var(--a-color_active);
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}

.m-nav-contacts__schedule b {
  font-weight: 400;
}

.m-nav-contacts .m-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.m-nav-contacts .m-phones > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  margin-top: 0.5rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.m-nav-contacts .m-phones > a:first-child {
  margin: 0;
}

.m-nav-contacts .m-phones > a svg {
  width: 0.75rem;
  height: 0.75rem;
  margin: 0 1rem 0 0;
  color: var(--a-color_active);
}

.m-nav-contacts__section_feedback {
  margin: auto 0 0;
}

.m-nav-contacts__section_feedback .a-button {
  width: unset;
  max-width: unset;
  min-width: 10.25rem;
  height: 2.75rem;
}

.m-quiz {
  position: relative;
  flex: 1;
  height: 100%;
}

.m-quiz__img {
  display: none;
}

.m-quiz__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  opacity: 1;
}

.m-quiz__img img:last-child {
  top: 50%;
  opacity: 0;
}

.m-quiz__img img[src=""] {
  display: none;
}

.m-quiz__img.--quiz-animated img {
  animation-duration: .35s;
  animation-iteration-count: 1;
}

.m-quiz__img.--quiz-animated img:first-child {
  animation-name: quiz-next-first;
}

.m-quiz__img.--quiz-animated img:last-child {
  animation-name: quiz-next-last;
}

.m-quiz__img.--quiz-animated-back img:first-child {
  animation-name: quiz-prev-first;
}

.m-quiz__img.--quiz-animated-back img:last-child {
  animation-name: quiz-prev-last;
}

@keyframes quiz-next-first {
  from {
    top: 0;
    left: 0;
    opacity: 1;
  }

  to {
    top: 0;
    left: 100%;
    opacity: 0;
  }
}

@keyframes quiz-next-last {
  from {
    left: 0;
    top: 50%;
    opacity: 0;
  }

  to {
    left: 0;
    top: 0;
    opacity: 1;
  }
}

@keyframes quiz-prev-first {
  from {
    left: 0;
    top: 0;
    opacity: 1;
  }

  to {
    left: 0;
    top: 100%;
    opacity: 0;
  }
}

@keyframes quiz-prev-last {
  from {
    left: 50%;
    top: 0;
    opacity: 0;
  }

  to {
    left: 0;
    top: 0;
    opacity: 1;
  }
}

.m-quiz__title {
  margin: 0 0 1.25rem;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 2.75rem;
  color: var(--a-color_red);
}

.m-quiz__slider {
  overflow: visible;
  position: static;
}

.m-quiz__slide {
  position: relative;
  align-items: center;
  visibility: hidden;
  transition: 0s;
}

.m-quiz__slide.swiper-slide-active {
  z-index: 2;
  visibility: visible;
}

.m-quiz__slide-question {
  display: flex;
  flex-direction: column;
  margin: 0 0 1rem;
  font-weight: 500;
}

.m-quiz__slide-answers {
  display: grid;
  grid-gap: 0.75rem;
}

.m-quiz__slide-answers-next {
  height: 100%;
}

.m-quiz__slide-answer {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.875rem;
  padding: 0.625rem 1rem;
  border-radius: var(--a-borderRadius--x2);
  background: var(--a-color_bg--input);
  color: var(--a-color_text);
}

.m-quiz__slide-answer input {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.m-quiz__slide-answer-label {
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.m-quiz__slide-answer-label:before {
  content: "";
  flex: none;
  width: 1rem;
  height: 1rem;
  margin-right: 0.625rem;
  border: 0.3125rem solid var(--a-color_bg--white);
  box-shadow: 0 0 0 0.0625rem var(--a-color_thumbnail);
  background: var(--a-color_bg--white);
  transition: .2s;
}

.m-quiz__slide-answer input[type="radio"] ~ .m-quiz__slide-answer-label:before {
  border-radius: 50%;
}

.m-quiz__slide-answer input[type="checkbox"] ~ .m-quiz__slide-answer-label:before {
  border-radius: 0.25rem;
}

.m-quiz__slide-answer:hover .m-quiz__slide-answer-label:before {
  box-shadow: 0 0 0 0.0625rem var(--a-color_link);
}

.m-quiz__slide-answer input:checked ~ .m-quiz__slide-answer-label:before {
  background: var(--a-color_link);
}

.m-quiz__slide-answer.--number {
  position: relative;
  flex: none;
  display: flex;
  width: 9rem;
  padding: 0;
  background: var(--a-color_bg--white);
}

.m-quiz__slide-answer.--number input {
  position: static;
  flex: 1;
  width: 100%;
  height: 100%;
  margin: 0 -0.0625rem;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  background-color: var(--a-color_bg--white);
  text-align: center;
  outline: none;
  opacity: 1;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

.m-quiz__slide-answer.--number input::-webkit-outer-spin-button,
.m-quiz__slide-answer.--number input::-webkit-inner-spin-button {
  display: none;
}

.m-quiz__slide-answer.--number input::-webkit-input-placeholder {
  color: var(--a-color_text--light);
}

.m-quiz__slide-answer.--number input::-moz-placeholder {
  color: var(--a-color_text--light);
}

.m-quiz__slide-answer.--number input:-moz-placeholder {
  color: var(--a-color_text--light);
}

.m-quiz__slide-answer.--number input:-ms-input-placeholder {
  color: var(--a-color_text--light);
}

.m-quiz__slide-answer.--number button {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  background-color: var(--a-color_bg--white);
  font-size: 0;
  color: var(--a-color_active);
  transition: .2s;
}

.m-quiz__slide-answer.--number button:hover {
  color: var(--a-color_red);
  cursor: pointer;
}

.m-quiz__slide-answer.--number button:active {
  background-color: var(--a-color_bg--blue);
}

.m-quiz__slide-answer.--number button:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.1875rem 0.375rem 0.1875rem 0;
  border-color: transparent currentColor transparent transparent;
}

.m-quiz__slide-answer.--number button:first-child {
  border-radius: 0.5rem 0 0 0.5rem;
}

.m-quiz__slide-answer.--number button:first-child:after {
  transform: rotate(0);
}

.m-quiz__slide-answer.--number button:last-child {
  border-radius: 0 0.5rem 0.5rem 0;
}

.m-quiz__slide-answer.--number button:last-child:after {
  transform: rotate(180deg);
}

.m-quiz__slide-back {
  margin: 1.5rem 0 0.75rem;
  background: none;
  border: none;
  color: var(--a-color_border--grey);
  cursor: pointer;
}

.m-quiz__slide-back .icon-sprite {
  width: 0.25rem;
  height: 0.625rem;
  margin-right: 0.375rem;
}

.m-quiz__slide-back:hover {
  color: var(--a-color_link);
}

.m-quiz__slide_0 .m-quiz__slide-back {
  display: none;
}

.m-quiz > .swiper-container-initialized {
  position: static;
}

.m-quiz > .swiper > .swiper-pagination {
  margin: 1.25rem 0 0;
}

.m-quiz > .swiper > .swiper-pagination > .swiper-pagination-bullet {
  flex: none;
  width: 0.375rem;
  height: 0.375rem;
  margin: 0 0.125rem;
  background-color: var(--a-color_bg--grey);
  cursor: default;
}

.m-quiz > .swiper > .swiper-pagination > .swiper-pagination-bullet-active {
  width: 2rem;
  background-color: var(--a-color_yellow);
  opacity: 1;
}

.m-quiz .m-form {
  max-width: 56.9375rem;
  background-color: transparent;
}

.m-quiz .m-form__box {
  margin: 0 0 1rem;
}

.m-quiz .m-form__subtitle {
  margin-top: 0.5rem;
}

.m-quiz .m-form__privacy-text {
  color: var(--a-color_text);
}

.m-quiz[data-slide="last"] .m-quiz__img {
  display: none;
}

.m-quiz[data-slide="last"] .swiper-pagination {
  display: none;
}

.m-social-links {
  display: flex;
  flex-direction: column;
  color: var(--a-color_active);
}

.m-social-links__title {
  margin: 0 0 0.5rem;
}

.m-social-links__wrapper {
  display: flex;
  flex: none;
}

.m-social-links__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-left: 0.5rem;
  color: var(--a-color_bg--white);
  background-color: var(--a-color_active);
  border-radius: 50%;
  outline: none;
  font-size: 0;
  transition: background-color 0.2s;
}

.m-social-links__item:hover {
  background-color: var(--a-color_text);
}

.m-social-links__item:first-child {
  margin-left: 0;
}

.m-social-links__item svg {
  width: auto;
  max-width: 1.25rem;
  height: auto;
  max-height: 1.25rem;
}

.m-article-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--a-color_bg--blue);
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--def);
}

.m-article-card:hover {
  color: var(--a-color_red);
}

.m-article-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1.5rem;
}

.m-article-card__image {
  overflow: hidden;
  flex: none;
  aspect-ratio: 1.5;
}

.m-article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.m-article-card__tag {
  margin: 0 0 1rem;
  padding: 0.5rem 0.75rem;
  border: 0.0625rem solid var(--a-color_border--grey);
  border-radius: 0.5rem;
}

.m-article-card__title {
  margin: 0.5rem 0 2rem;
  transition: .2s;
}

.m-article-card__date {
  margin: auto 0 0;
  color: #11253D;
}

.accordion-item {
  width: 100%;
}

.accordion-item:not(:last-child) {
  border-bottom: 0.0625rem solid var(--a-color_thumbnail);
}

.accordion-item:first-child .accordion-item__question {
  padding-top: 0;
}

.accordion-item__question {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}

.accordion-item__question.--has-answer {
  cursor: pointer;
}

.accordion-item__question-title {
  font-weight: 500;
}

.accordion-item__question-icon {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

.accordion-item__question-icon > .icon-sprite {
  width: 100%;
  height: 100%;
  transition: 0.2s;
}

.accordion-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: 0.2s;
}

.accordion-item__answer a {
  color: var(--a-color_link);
}

.accordion-item__answer b {
  font-weight: 500;
}

.accordion-item__answer ul {
  list-style: inside none;
}

.accordion-item__answer ul li {
  position: relative;
  margin: 0.25rem 0;
  padding-left: var(--a-padding--x4);
}

.accordion-item__answer ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
}

.accordion-item__answer ol {
  margin-left: 1rem;
}

.accordion-item__answer ol li {
  margin: 0.25rem 0;
  padding-left: 0.5rem;
}

.accordion-item__answer-text {
  color: var(--a-color_text--grey);
}

.accordion-item__answer-wrapper {
  padding: 0 0 var(--a-padding--x4);
}

.accordion-item.is-active > .accordion-item__question .icon-sprite {
  transform: rotate(180deg);
}

.m-breadcrumbs {
  overflow: visible;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  margin: 0 0 1.5rem;
  color: var(--a-color_text--light);
  transition: .2s;
}

.m-breadcrumbs .swiper-slide {
  display: flex;
  width: auto;
}

.m-breadcrumbs .swiper-slide:not(:first-child):before {
  content: '/';
  margin-right: 0.25rem;
}

.m-breadcrumbs-link {
  white-space: nowrap;
  color: var(--a-color_secondary);
}

.m-breadcrumbs-link a {
  color: var(--a-color_text--light);
}

.m-breadcrumbs-link a:hover {
  color: var(--a-color_link);
}

.m-card-ico {
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: var(--a-padding--x5) var(--a-padding--x4);
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--def);
  background-color: var(--a-color_bg--blue);
  color: var(--a-color_text);
  transition: .2s all ease;
}

.m-card-ico__title {
  color: var(--a-color_text);
}

.m-card-ico__title span {
  display: inline-block;
}

.m-card-ico__text span {
  display: inline-block;
}

.m-card-ico__text ul {
  list-style: none;
}

.m-card-ico__text ul br {
  display: none;
}

.m-card-ico__text ul li {
  position: relative;
  padding-left: 0.625rem;
}

.m-card-ico__text ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.m-card-ico__text ul li::before {
  position: absolute;
  top: -0.125rem;
  left: 0;
  content: "•";
}

.m-card-ico__title + .m-card-ico__text {
  margin-top: 0.75rem;
}

.m-card-ico__img {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
  width: 5.5rem;
  height: 4.75rem;
}

.m-card-ico__img svg,
.m-card-ico__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.m-card-ico--min {
  overflow: hidden;
  position: relative;
  width: 9.5rem;
  height: 9.5rem;
  padding: var(--a-padding--x3);
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--def);
  background-color: var(--a-color_bg--blue);
  color: var(--a-color_text);
  transition: .2s all ease;
}

.m-card-ico--min .m-card-ico__title span {
  display: inline-block;
}

.m-card-ico--min .m-card-ico__text span {
  display: inline-block;
}

.m-card-ico--min .m-card-ico__title + .m-card-ico__text {
  margin-top: 0.25rem;
}

.m-card-ico--min .m-card-ico__img {
  z-index: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 4.5rem;
  height: 3.875rem;
  transform: scale(-1, 1);
}

.m-card-ico--min .m-card-ico__img svg,
.m-card-ico--min .m-card-ico__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-case-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--def);
  background: var(--a-color_bg--blue);
}

.m-case-card__wrapper {
  flex: 1;
  display: flex;
  padding: var(--a-padding--x4) var(--a-padding--x5);
  flex-direction: column;
}

.m-case-card__image {
  flex: none;
  height: 9.75rem;
}

.m-case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.m-case-card__info {
  margin-bottom: auto;
}

.m-case-card__title ~ .m-case-card__text {
  margin: 0.5rem 0 0;
}

.m-case-card__more {
  margin: 1rem 0 0;
}

.m-content-banner {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 0 1.5rem;
  padding: 1.5rem 1rem;
  border-radius: var(--a-borderRadius--def);
  background-color: var(--a-color_white);
}

.m-content-banner__content {
  z-index: 1;
  position: relative;
}

.m-content-banner__title {
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.m-content-banner__text {
  max-width: 75%;
  margin: 0 0 1.5rem;
}

.m-content-banner__btn {
  width: 100%;
  max-width: 18.75rem;
  margin: auto 0 0;
}

.m-content-banner__img {
  display: none;
}

.m-content-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.m-content-banner__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-content-banner__bg img {
  max-width: unset;
}

.m-content-banner.--bg-red {
  background-color: var(--a-color_red);
  color: var(--a-color_white);
}

.m-content-banner.--bg-red .m-content-banner {
  color: inherit;
}

.m-content-banner.--bg-red .m-content-banner__content {
  color: inherit;
}

.m-content-banner.--bg-red .m-content-banner__btn {
  color: var(--a-color_red);
  background-color: var(--a-color_white);
}

.m-content-banner.--bg-red .m-content-banner__btn:hover {
  color: var(--a-color_dark);
  background-color: var(--a-color_yellow);
  border-color: var(--a-color_yellow);
}

.m-factoid__title {
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.m-factoid__text {
  color: var(--a-color_border--grey);
}

.m-factoid.--size_big {
  padding: var(--a-padding--x5);
}

.m-factoid.--size_big .m-factoid__title {
  margin-bottom: 0.75rem;
}

.m-factoid.--bgcolor_white {
  background-color: var(--a-color_bg--white);
}

.m-faculty {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  padding: var(--a-padding--x3) var(--a-padding--x4);
  background: var(--a-color_bg--blue);
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--x3);
  transition: .2s;
  gap: 1.25rem;
}

.m-faculty:hover {
  color: var(--a-color_bg--white);
  background-color: var(--a-color_bg--red);
}

.m-faculty:hover .m-faculty__count {
  color: var(--a-color_bg--white);
}

.m-faculty:hover img,
.m-faculty:hover svg {
  filter: brightness(0) invert(1);
}

.m-faculty__info {
  z-index: 1;
  position: relative;
}

.m-faculty__image {
  z-index: 0;
  position: relative;
  flex: none;
  align-self: flex-center;
  width: 2.875rem;
  height: 2.875rem;
}

.m-faculty__image img,
.m-faculty__image svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.m-faculty__image svg * {
  stroke-width: .5;
}

.m-faculty__title {
  display: block;
  margin-bottom: 0.5rem;
}

.m-faculty__count {
  display: block;
  color: var(--a-color_text--grey);
  transition: .2s;
}

.m-license {
  color: inherit;
  overflow: visible;
}

.m-license .swiper-slide {
  display: flex;
  width: 17.5rem;
  min-height: 8.125rem;
}

.m-license-card {
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: auto;
  width: 100%;
  padding: 1.25rem 0;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--def);
  background-color: var(--a-color_bg--blue);
  transition: .2s;
}

.m-license-card:focus-visible {
  outline: none;
}

.m-license-card:hover {
  background-color: var(--a-color_bg--dark);
  color: var(--a-color_bg--white);
}

.m-license-card__img {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.m-license-card__img img {
  z-index: 1;
  position: relative;
  flex: none;
  height: 5rem;
  width: 3.25rem;
}

.m-license-card__text {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding-right: 0.625rem;
}

.m-license-card__title {
  margin-bottom: 0.3125rem;
}

.m-license-card__title br {
  display: none;
}

.m-license-card__descr {
  color: var(--a-color_text--blue);
}

.m-license-card__descr br {
  display: none;
}

.m-map {
  display: block;
  grid-gap: 1rem;
}

.m-map.--visible {
  display: grid;
}

.m-map .m-tabs {
  display: none;
}

.m-map .m-tabs .swiper-wrapper {
  width: 100%;
  transform: none !important;
}

.m-map .m-tabs .swiper-slide {
  flex: 1;
}

.m-map.--visible .m-tabs {
  display: block;
}

.m-map__search {
  position: relative;
  z-index: 10;
  width: 100%;
}

.m-map__search .m-search {
  height: 2.25rem;
}

.m-map__search .m-search__btn {
  height: auto;
}

.m-map__search .m-search.--focused .a-input {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  transition: 0s;
}

.m-map__search-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 0;
  margin-top: -0.0625rem;
  border: 0.0625rem solid var(--a-color_border--grey);
  border-radius: 0 0 var(--a-borderRadius--def) var(--a-borderRadius--def);
  background-color: var(--a-color_bg--white);
  opacity: 0;
  transition: .2s;
}

.m-map__search-list > * {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.m-map__search-list > *:hover {
  color: var(--a-color_link);
}

.m-search.--focused ~ .m-map__search-list {
  max-height: 18.75rem;
  opacity: 1;
}

.m-map__map {
  display: none;
  grid-column: 1 / -1;
  overflow: hidden;
  width: 100%;
  height: 17.5rem;
  border-radius: var(--a-borderRadius--def);
}

.m-map.--visible .m-map__map {
  display: block;
}

.m-menu-tabs__btns {
  overflow: visible;
  display: flex;
}

.m-menu-tabs__btns .swiper-wrapper {
  display: flex;
  align-items: center;
  width: min-content;
  margin: 0;
}

.m-menu-tabs__btn {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 2.75rem;
  margin-right: -0.0625rem;
  padding: 0 var(--a-padding--x6);
  border: 0.0625rem solid var(--a-color_thumbnail);
  background-color: var(--a-color_bg--white);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  color: var(--a-color_secondary);
}

.m-menu-tabs__btn:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.m-menu-tabs__btn:last-child {
  margin-right: 0;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.m-menu-tabs__btn:hover {
  z-index: 1;
  color: var(--a-color_link);
}

.m-menu-tabs__btn.is-active {
  z-index: 1;
  border-color: var(--a-color_link);
  background-color: var(--a-color_link);
  color: var(--a-color_bg--white);
  cursor: default;
}

.m-share {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.m-share__label {
  margin-left: 1rem;
  color: var(--a-color_text--light);
}

.m-share .ya-share2__list {
  display: flex;
}

.m-share .ya-share2__item {
  margin-left: 0.75rem;
}

.m-share .ya-share2__item:first-child {
  margin: 0;
}

.m-share .ya-share2__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0.375rem;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: 0.5rem;
  background-color: var(--a-color_bg--white);
  color: var(--a-color_active);
  transition: .2s;
}

.m-share .ya-share2__link:hover {
  color: var(--a-color_text);
}

.m-share .ya-share2__title {
  display: none;
}

.m-share .ya-share2__badge {
  width: 100%;
  height: 100%;
  background-color: currentColor;
}

.m-share .ya-share2__item_service_whatsapp .ya-share2__badge {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="20" height="21"><path fill="rgb(255,255,255)" d="M20 10.375V21H0v-.5l5.25-1.375c1.5.75 3.125 1.25 4.75 1.25 5.5 0 10-4.5 10-10zM15.875 4.75c1.625 1.625 2.375 3.625 2.375 5.875 0 4.375-3.625 8.125-8.25 8.125-1.5 0-3-.375-4.25-1.125L5.5 17.5l-3.125.875.875-3L3 15c-.875-1.375-1.25-2.875-1.25-4.375 0-4.5 3.75-8.25 8.25-8.25 2.25 0 4.25.875 5.875 2.375zm-.75 8.5c-.125-.625-.375-.625-.625-.75s-1.5-.75-1.75-.75c-.25-.125-.375-.125-.5.125s-.625.75-.75 1c-.125.125-.25.125-.5.125-.25-.125-1-.375-2-1.25-.75-.625-1.25-1.5-1.375-1.75s0-.375.125-.5l.375-.375c.125-.125.125-.25.25-.375s0-.25 0-.375S7.875 7 7.625 6.5c-.125-.375-.375-.375-.5-.375h-.5c-.125 0-.375 0-.625.25s-.875.875-.875 2.125.875 2.375 1 2.625c.125.125 1.75 2.75 4.25 3.75 2.125.875 2.5.625 3 .625s1.5-.625 1.625-1.125c.25-.625.25-1.125.125-1.125zM0 10.5v10l1.375-5C.5 14 0 12.25 0 10.5zM0 0v10.5C0 5 4.5.5 10 .5c2.625 0 5.125 1 7 2.875s3 4.375 3 7V0H0z"/></svg>');
}

.m-share .ya-share2__item_service_telegram .ya-share2__badge {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="20" height="21"><path fill="rgb(255,255,255)" d="M0 0v21h20V0H0zm16.559 16.385c-.226 1.2-.666 1.602-1.095 1.641-.733.066-1.332-.356-1.993-.83a15.95 15.95 0 0 0-.539-.373c-.736-.483-1.306-.869-1.875-1.258-.522-.355-1.044-.711-1.698-1.142-1.36-.896-.792-1.446-.032-2.177.123-.118.251-.242.376-.371.235-.228.474-.451.716-.672 1.24-1.152 3.632-3.378 3.692-3.635.011-.043.021-.2-.073-.283-.095-.084-.231-.055-.332-.032-.142.031-2.392 1.518-6.749 4.461-.639.438-1.217.651-1.736.64-.571-.012-1.67-.321-2.487-.588a32.219 32.219 0 0 0-.351-.111c-.829-.26-1.44-.451-1.379-.939.036-.288.434-.583 1.191-.884C6.859 7.8 9.97 6.459 11.526 5.813c4.445-1.848 5.367-2.169 5.971-2.179.133-.002.43.031.619.187a.68.68 0 0 1 .23.433c.03.208.041.419.026.629-.242 2.529-1.285 8.668-1.813 11.502z"/></svg>');
}

.m-share .ya-share2__item_service_vkontakte .ya-share2__badge {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="20" height="21"><path fill="rgb(255,255,255)" d="M0 0v21h20V0H0zm17.835 12.547c1.601 1.485 1.933 2.208 1.987 2.298h.001c.661 1.099-.736 1.186-.736 1.186l-2.67.036s-.575.115-1.33-.404c-.998-.686-1.94-2.469-2.675-2.236-.745.236-.721 1.84-.721 1.84s.006.344-.164.525c-.185.199-.545.239-.545.239H9.787s-2.638.159-4.962-2.261C2.293 11.131.055 5.897.055 5.897s-.129-.343.011-.509c.157-.186.587-.199.587-.199l2.857-.017s.27.045.463.186c.159.116.247.334.247.334s.462 1.168 1.073 2.225c1.194 2.064 1.75 2.515 2.157 2.294.591-.323.413-2.917.413-2.917s.012-.942-.297-1.361c-.238-.326-.689-.42-.888-.446-.161-.022.103-.395.445-.563.515-.251 1.423-.266 2.495-.255.837.009 1.077.061 1.403.14.985.238.652 1.156.652 3.36 0 .705-.128 1.699.381 2.028.219.141.756.021 2.094-2.253.636-1.077 1.111-2.345 1.111-2.345s.104-.225.266-.322c.166-.099.389-.069.389-.069l3.005-.018s.904-.107 1.05.3c.154.428-.337 1.428-1.566 3.066-2.018 2.689-2.243 2.436-.568 3.991z"/></svg>');
}

.m-share .ya-share2__copied-tooltip {
  display: none;
  font-size: 0;
}

.specialty-card {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 9rem;
  padding: var(--a-padding--x4);
  border: 0.0625rem solid var(--a-color_thumbnail);
  border-radius: var(--a-borderRadius--x3);
  transition: .2s;
  background-color: var(--a-color_bg--blue);
}

.specialty-card:hover {
  border-color: var(--a-color_bg--red);
  background-color: var(--a-color_bg--red);
  color: var(--a-color_white);
}

.specialty-card:hover .specialty-card__top,
.specialty-card:hover .specialty-card__title,
.specialty-card:hover .specialty-card__place {
  color: inherit;
}

.specialty-card__top {
  flex: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin: 0 0 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--a-color_text--grey);
  cursor: default;
}

.specialty-card__tags {
  display: flex;
  align-items: center;
}

.specialty-card__new {
  display: inline-flex;
  margin-right: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 1.25rem;
  background-color: var(--a-color_red);
  text-transform: uppercase;
  color: var(--a-color_white);
  transition: .2s;
}

.specialty-card:hover .specialty-card__new {
  background-color: var(--a-color_white);
  color: var(--a-color_red);
}

.specialty-card__place {
  display: inline-flex;
  align-items: center;
  color: var(--a-color_red);
}

.specialty-card__place svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

.specialty-card__new,
.specialty-card__place {
  margin-bottom: 0.75rem;
  cursor: default;
}

.specialty-card__note + .specialty-card__label {
  position: relative;
  padding-left: 1.25rem;
}

.specialty-card__note + .specialty-card__label::after {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1rem;
  transform: translateY(-50%);
  content: "/";
}

.specialty-card__label span {
  display: inline-flex;
  align-items: center;
}

.specialty-card__label span:not(:first-child):before {
  content: '•';
  margin: 0 0.5rem;
}

.specialty-card__title {
  flex: none;
  width: 100%;
  margin: 0 0 2rem;
  color: var(--a-color_secondary);
  cursor: default;
}

.specialty-card__price {
  margin: auto 0 1rem;
}

.specialty-card__bottom {
  display: flex;
  align-items: center;
  height: 2.375rem;
  margin: auto 0 0;
}

.specialty-card__price + .specialty-card__bottom {
  margin-top: 0;
}

.specialty-card__more {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  margin: auto 1rem 0 0;
  padding: 0 0.875rem;
  font-weight: 500;
  color: var(--a-color_white);
  transition: .2s;
}

.specialty-card__more svg.icon-sprite:last-child {
  display: inline-block;
  width: 0.3125rem;
  height: 0.6875rem;
  margin-left: 0.625rem;
}

.specialty-card:hover .specialty-card__more {
  border-color: var(--a-color_white);
  background-color: var(--a-color_white);
  color: var(--a-color_red);
}

.specialty-card__apply {
  height: 100%;
}

.specialty-card:hover .specialty-card__apply {
  border-color: var(--a-color_white);
  color: var(--a-color_white);
}

.specialty-card:hover .specialty-card__more:hover,
.specialty-card:hover .specialty-card__apply:hover,
.specialty-card__more:hover,
.specialty-card__apply:hover {
  border-color: var(--a-color_yellow);
  background-color: var(--a-color_yellow);
  color: var(--a-color_dark);
}

.m-tabs__btns {
  overflow: visible;
  display: flex;
}

.m-tabs__btns .swiper-wrapper {
  display: flex;
  align-items: center;
  width: min-content;
  margin: 0;
}

.m-tabs__btn {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 2.75rem;
  margin-right: -0.0625rem;
  padding: 0 var(--a-padding--x6);
  border: 0.0625rem solid var(--a-color_thumbnail);
  background-color: var(--a-color_bg--white);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  color: var(--a-color_secondary);
}

.m-tabs__btn:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.m-tabs__btn:last-child {
  margin-right: 0;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.m-tabs__btn:hover {
  z-index: 1;
  color: var(--a-color_link);
}

.m-tabs__btn.is-active {
  z-index: 1;
  border-color: var(--a-color_link);
  background-color: var(--a-color_link);
  color: var(--a-color_bg--white);
  cursor: default;
}

.m-tabs__tab {
  display: none;
  margin-top: 1.5rem;
}

.m-tabs__tab.is-active {
  display: block;
}

.m-tabs__tab ul {
  list-style: inside none;
}

.m-tabs__tab ul li {
  position: relative;
  padding-left: var(--a-padding--x4);
}

.m-tabs__tab ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.m-tabs__tab ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
}

.m-teachers.swiper-container {
  overflow: visible;
}

.m-teachers .swiper-wrapper {
  transition-duration: .3s !important;
}

.m-teachers .swiper-slide {
  flex: 1;
  height: auto;
  margin-right: 1rem;
}

.m-teachers .swiper-slide:last-child {
  margin: 0;
}

.m-teachers__card {
  overflow: hidden;
  position: relative;
  display: flex;
  height: 100%;
  min-height: 23.75rem;
  min-width: 17.5rem;
  padding: var(--a-padding--x4);
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--x3);
  background-color: var(--a-color_white);
  flex-direction: column;
  touch-action: none;
}

.m-teachers__card-image {
  overflow: hidden;
  flex: none;
  width: 8rem;
  height: 10.75rem;
  border-radius: var(--a-borderRadius--x2);
  background-color: var(--a-color_bg--blue);
  margin-bottom: 1rem;
}

.m-teachers__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.m-teachers__card-info {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.m-teachers__card-title {
  margin-bottom: 0.5rem;
  color: var(--a-color_secondary);
}

.m-teachers__card-position {
  overflow: auto;
  margin-bottom: 1rem;
  color: var(--a-color_text--light);
  max-height: 9.375rem;
  touch-action: none;
}

.m-teachers__card-position > ul {
  list-style: none;
  padding-left: 0.5rem;
}

.m-teachers__card-position > ul > li {
  position: relative;
  margin: 0.25rem 0 0 0.875rem;
}

.m-teachers__card-position > ul > li:first-child {
  margin-top: 0;
}

.m-teachers__card-position > ul > li::before {
  content: '';
  position: absolute;
  left: -0.875rem;
  top: 0.5rem;
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: currentColor;
}

.m-teachers__card-text {
  max-height: 6.25rem;
  overflow-y: auto;
  padding: 0 0.5rem 0 0;
  padding: 0;
  touch-action: pan-y;
  color: var(--a-color_text--grey);
}

.m-teachers__card-text a:hover {
  opacity: 0.7;
}

.m-teachers__card-text > ul {
  list-style: none;
}

.m-teachers__card-text > ul > li {
  position: relative;
  padding-left: var(--a-padding--x4);
}

.m-teachers__card-text > ul > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "—";
}

.m-teachers.--big-card .m-teachers__card-text {
  max-height: 15.125rem;
  color: var(--a-color_secondary);
}

.m-up {
  display: none;
  position: fixed;
  top: auto;
  left: auto;
  bottom: 3.75rem;
  right: 0.5rem;
  z-index: 100;
  border-color: var(--a-color_border--darkgrey);
  background-color: var(--a-color_white);
}

.m-up.--visible {
  display: flex;
}

.m-up:hover {
  border-color: var(--a-color_red);
  background-color: var(--a-color_white);
  color: var(--a-color_red);
}

.m-up svg {
  transform: rotate(180deg);
}

.m-video-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.m-video-card__img {
  overflow: hidden;
  width: 100%;
  height: 11.25rem;
  border-radius: var(--a-borderRadius--x3);
}

.m-video-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-video-card__box {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.m-video-card__button {
  position: absolute;
  bottom: 0.625rem;
  left: 0.625rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  outline: none;
  transition: .2s;
}

.m-video-card:hover .m-video-card__button {
  transform: scale(1.25);
}

.m-video-card__title {
  margin: 0.5rem 0;
}

.m-video-card__label {
  font-weight: 400;
  color: var(--a-color_text--grey);
}

.m-graduate-card {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--def);
}

.m-graduate-card__img {
  overflow: hidden;
  flex: none;
  width: 100%;
  aspect-ratio: 1.5;
  max-height: 13.5rem;
}

.m-graduate-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.m-graduate-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1.5rem;
  color: var(--a-color_secondary);
}

.m-graduate-card__title {
  margin: 0 0 0.5rem;
}

.m-graduate-card__date {
  margin: 0 0 1.25rem;
  color: var(--a-color_text--light);
}

.m-graduate-card__block {
  margin: 0 0 0.75rem;
  overflow-y: auto;
  padding: 0;
  touch-action: pan-y;
}

.m-graduate-card__block:last-child {
  margin: auto 0 0;
}

.m-graduate-card__block.--text {
  margin-top: 0;
}

.m-graduate-card__block a:hover {
  opacity: 0.7;
}

.m-graduate-card__block > ul {
  list-style: none;
}

.m-graduate-card__block > ul > li {
  position: relative;
  padding-left: var(--a-padding--x4);
}

.m-graduate-card__block > ul > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "—";
}

.s-header {
  overflow: hidden;
  position: relative;
  min-height: 9.125rem;
  padding-top: 0;
  padding-bottom: 0;
}

.s-header__top {
  display: flex;
  align-items: center;
  margin: 0;
  border-bottom: 0.0625rem solid var(--a-color_text--blue);
}

.s-header__top > * {
  flex: 1;
}

.s-header__top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--a-padding--x2) 0;
}

.s-header__top-sveden {
  transition: color 0.2s;
}

.s-header__top-sveden:hover {
  color: var(--a-color_link);
}

.s-header__top-eyes {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
}

.s-header__top-eyes:hover {
  color: var(--a-color_link);
}

.s-header__top-eyes span {
  display: none;
}

.s-header__top-eyes .icon-sprite {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  order: 1;
}

.s-header__top .m-phones {
  display: none;
}

.s-header__main {
  top: -3.125rem;
  margin: 0;
  border-radius: 0;
}

.is-scrolled .s-header__main {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding-right: var(--scroll-width);
  box-shadow: 0 0.0625rem 0.0625rem var(--a-color_bg--blue);
  transition: top 0.2s;
  border-color: transparent;
  background-color: var(--a-color_bg--white);
}

.menu-opened .s-header__main {
  border-bottom-color: var(--a-color_bg--blue);
}

.s-header__main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--a-padding--x3) 0;
  flex-wrap: wrap;
}

.s-header__main .m-level-nav {
  overflow: visible;
  position: relative;
  width: 100%;
  margin: 1rem 0 0;
}

.s-header__main .m-level-nav .swiper-slide {
  width: auto;
  margin-right: 1.5rem;
}

.s-header__main .m-level-nav__link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.s-header__main .m-level-nav__link:hover {
  color: var(--a-color_link);
}

.s-header__logo {
  display: flex;
  align-items: center;
  width: auto;
  margin-right: 1.25rem;
  flex: none;
}

.s-header__logo svg {
  display: block;
  width: 7.8125rem;
  height: auto;
  object-fit: contain;
  flex: none;
  width: 11.875rem;
  height: 2rem;
}

.s-header__topmenu {
  display: none;
}

.s-header__topmenu-link {
  margin-left: 1rem;
  transition: color 0.2s;
}

.s-header__topmenu-link:hover {
  color: var(--a-color_link);
}

.s-header__topmenu-link:first-child {
  margin-left: 0;
}

.s-header__topmenu-link.menu-item-active {
  color: var(--a-color_link);
}

.s-header__tools {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin: 0 -0.625rem 0 0;
}

.s-header__tools .m-phones {
  color: var(--a-color_border--darkgrey);
}

.s-header__tools .m-phones__link {
  width: 2.5rem;
  height: 2.5rem;
}

.s-header__burger {
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.25rem;
  color: var(--a-color_link);
  background: none;
  border: none;
  border-radius: var(--a-borderRadius--def);
  outline: none;
}

.s-header__burger:hover {
  color: var(--a-color_secondary);
}

.s-header__burger-label {
  display: none;
}

.s-header__burger-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1.5rem;
  height: 1rem;
  flex-direction: column;
}

.s-header__burger-icon ins {
  width: 100%;
  height: 0.125rem;
  border-radius: 0.125rem;
  transition: .2s;
  background-color: currentColor;
}

.menu-opened .s-header__burger-icon ins {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.menu-opened .s-header__burger-icon ins {
  transform: rotate(-45deg);
}

.menu-opened .s-header__burger-icon ins:first-child {
  opacity: 0;
}

.menu-opened .s-header__burger-icon ins:last-child {
  transform: rotate(45deg);
}

.s-header__search {
  position: relative;
  align-self: stretch;
  margin-left: 0.25rem;
}

.s-header__search-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--a-color_border--darkgrey);
  border: none;
  transition: color 0.2s;
}

.s-header__search-toggler .icon-sprite {
  width: 1.25rem;
  height: 1.25rem;
}

.s-header__search .m-search {
  overflow: hidden;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  display: flex;
  width: 0;
  height: 100%;
}

.s-header.--visible-search .s-header__tools {
  flex: 1;
}

.s-header.--visible-search .s-header__search-toggler {
  display: none;
}

.s-header.--visible-search .s-header__topmenu {
  display: none;
}

.s-header.--visible-search .s-header__search {
  flex: 1;
}

.s-header.--visible-search .s-header__search .m-search {
  z-index: 1;
  width: 100%;
}

.s-header__top .m-apply-btn {
  display: none;
}

.s-header__tools .m-apply-btn {
  position: relative;
  left: 0.75rem;
  display: none;
  height: 2.125rem;
  margin: 0 auto;
}

.is-scrolled .s-header__tools .m-apply-btn {
  display: inline-flex;
}

.--visible-search .s-header__tools .m-apply-btn {
  display: none;
}

.menu-opened {
  overflow: hidden !important;
  height: 100%;
  padding-right: var(--scroll-width);
}

.s-header-menu {
  z-index: -1;
  position: fixed;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 0;
  border-top: 0.0625rem solid var(--a-color_text--blue);
  opacity: 0;
  transition: max-height 0.2s;
  background-color: rgba(0, 0, 0, 0.5);
}

.menu-opened .s-header-menu {
  overflow: auto;
  z-index: 100;
  max-height: 100vh;
  margin: 0;
  padding-top: 0;
  opacity: 1;
}

.s-header-menu .l-section__inner {
  margin: 0 1rem;
  padding: 0;
}

.s-header-menu .m-level-nav {
  margin: 0 0 0.75rem;
  padding: 0.75rem var(--layout-h-padding);
  background-color: var(--a-color_bg--blue);
}

.s-header-menu .m-level-nav .swiper-wrapper {
  display: grid;
  grid-gap: 0 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

.s-header-menu .m-level-nav__link {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  min-height: 2.5rem;
  margin: 0;
}

.s-header-menu .s-grid-menu__sitemap {
  min-height: 2.75rem;
  margin-left: var(--layout-h-padding);
}

.s-header-menu__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0 var(--layout-h-padding) 1.25rem;
}

.s-header-menu .m-social-links {
  margin: 0.5rem 0;
  margin-right: 2rem;
}

.s-header-menu .m-social-links__title {
  display: none;
}

.s-header-menu .m-app-links {
  margin: 0.5rem 0;
}

.s-header-menu .m-app-links__title {
  display: none;
}

.s-grid-menu__sitemap {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  font-weight: 500;
  color: var(--a-color_link);
}

.s-footer {
  --contactsWidth: 322px;
  --contactsGap: 40px;
  overflow: hidden;
  margin: 0;
}

.s-footer .l-section__inner {
  padding: 2rem var(--layout-h-padding);
}

.s-footer .m-level-nav {
  overflow: visible;
  width: 100%;
  padding: 1.75rem 0;
  border-bottom: 0.0625rem solid var(--a-color_border--darkgrey);
}

.s-footer .m-level-nav__link {
  display: block;
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.s-footer .m-level-nav__link:hover {
  color: var(--a-color_link);
}

.s-footer .m-level-nav .swiper-wrapper {
  justify-content: space-between;
}

.s-footer .m-level-nav .swiper-slide {
  width: auto;
  margin-right: 1.25rem;
}

.s-footer__main {
  width: 100%;
  margin: 1.25rem 0;
}

.s-footer__main .m-menu-toggled {
  padding: 0;
  border-bottom-color: var(--a-color_secondary);
}

.s-footer__main .m-menu-toggled__link {
  color: var(--a-color_thumbnail);
}

.s-footer__main .m-menu-toggled__link.menu-item-active {
  color: var(--a-color_link);
}

.s-footer__policy {
  display: flex;
  width: 100%;
  margin: 1.25rem 0 0;
  flex-direction: column;
}

.s-footer__policy-item {
  margin: 1rem 0 0;
  text-decoration: none;
  color: var(--a-color_active);
  transition: 0.2s;
  user-select: none;
}

.s-footer__policy-item:first-child {
  margin: 0;
}

.s-footer__policy a:hover {
  color: var(--a-color_link);
}

.s-footer .m-social-links__title {
  display: none;
}

.s-footer .m-social-links__item {
  background-color: transparent;
}

.s-footer .m-app-links {
  margin: 1rem 0 0;
}

.s-footer .m-app-links__title {
  display: none;
}

.s-footer .m-app-links__item {
  background-color: var(--a-color_secondary);
}

.s-footer .m-nav-contacts {
  margin: 1rem 0 1.25rem;
  padding: 1.5rem 0 0;
  border-top: 0.0625rem solid var(--a-color_border--darkgrey);
}

.s-events-sticker {
  overflow: hidden;
  position: fixed;
  top: auto;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: fit-content;
  padding: 1rem;
  border-radius: var(--a-borderRadius--def);
  background-color: var(--a-color_bg--dark);
  color: var(--a-color_text--white);
  transition: margin-bottom .2s;
}

.s-events-sticker__date {
  display: flex;
  align-items: center;
  margin: 0 2.5rem 0 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.s-events-sticker__date > *:nth-child(2) {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 0.125rem solid;
}

.s-events-sticker__text {
  margin: 1rem 0 0;
}

.s-events-sticker__text-title {
  margin: 0 0 0.75rem;
}

.s-events-sticker__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 27.5rem;
  min-height: 3rem;
  margin: 1rem 0 0;
  border: none;
  background-color: var(--a-color_yellow);
  color: var(--a-color_text);
}

.s-events-sticker__link:hover {
  background-color: var(--a-color_bg--red);
  color: var(--a-color_text--white);
}

.s-events-sticker__toggler {
  position: absolute;
  left: auto;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: var(--a-color_border--darkgrey);
  transition: color .15s;
}

.s-events-sticker__toggler:hover {
  color: var(--a-color_red);
}

.s-events-sticker__toggler-show,
.s-events-sticker__toggler-hide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  background-color: var(--a-color_bg--blue);
  cursor: pointer;
}

.s-events-sticker__toggler-hide {
  display: none;
}

.s-events-sticker.--hidden {
  display: block;
  max-height: 3.875rem;
  padding: 1.25rem 1rem;
  padding-right: 5rem;
  background-image: none;
}

.--hidden .s-events-sticker__text,
.--hidden .s-events-sticker__link {
  display: none;
}

.--hidden .s-events-sticker__toggler {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.--hidden .s-events-sticker__toggler > * {
  position: absolute;
  left: auto;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.--hidden .s-events-sticker__toggler-show {
  display: none;
}

.--hidden .s-events-sticker__toggler-hide {
  display: flex;
}

.s-form + .s-form {
  display: none;
}

.fancybox__container .s-form {
  padding: 0;
  background: transparent;
}

.s-form__popup {
  overflow: hidden;
  display: none;
  padding: 0;
  border-radius: var(--a-borderRadius--def);
  background: transparent;
}

.s-form__popup .l-section {
  margin: 0;
}

.s-form__popup .m-form__title {
  padding-right: 2.125rem;
}

.s-form .l-section__inner {
  padding: var(--a-padding--x8) var(--layout-h-padding);
}

.s-form--logo .l-section__inner {
  position: relative;
  overflow: hidden;
}

.s-form--logo .l-section__inner.--bg-color_red::before {
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='252' viewBox='0 0 220 252' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M169.188 177.106L96.1797 135.29L128.121 56.1533L138.223 61.5417L148.607 100.295L134.073 124.751L133.763 125.273L134.288 125.577L159.253 140.027L169.188 177.106ZM223.371 176.846L223.951 176.69L223.795 176.111L186.39 36.512L186.235 35.9325L185.655 36.0878L46.0565 73.4931L45.4769 73.6484L45.6322 74.2279L83.0376 213.827L83.1928 214.406L83.7724 214.251L223.371 176.846ZM205.736 1.66995L257.882 196.28L63.2573 248.43L52.952 242.717L11.5147 54.0409L195.306 -4.02897L205.736 1.66995Z' fill='%23E20B41' stroke='%230D1140' stroke-width='1.2'/%3E%3Cpath d='M85.4389 129.387L127.717 56.7387L137.796 94.3507L123.262 118.807L122.952 119.329L123.477 119.633L148.442 134.084L158.377 171.163L85.4389 129.387ZM212.56 170.902L213.14 170.746L212.984 170.167L175.579 30.5682L175.424 29.9887L174.844 30.144L35.2455 67.5493L34.6659 67.7046L34.8212 68.2841L72.2266 207.883L72.3818 208.462L72.9614 208.307L212.56 170.902ZM195.014 -3.94242L247.071 190.336L52.7917 242.393L0.734847 48.1144L195.014 -3.94242Z' fill='%23FF0A47' stroke='%230D1140' stroke-width='1.2'/%3E%3Cpath d='M45.3954 73.686L34.3161 67.4711' stroke='%230D1140' stroke-width='1.2'/%3E%3Cpath d='M148.348 100.142L137.269 93.927' stroke='%230D1140' stroke-width='1.2'/%3E%3C/svg%3E");
}

.s-form--logo .l-section__inner.--bg-color_dark::before {
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='239' viewBox='0 0 200 239' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M169.188 163.82L96.1799 122.004L128.122 42.8668L138.223 48.2551L148.607 87.008L134.073 111.465L133.763 111.986L134.289 112.29L159.253 126.741L169.188 163.82ZM223.371 163.559L223.951 163.404L223.795 162.824L186.39 23.2255L186.235 22.6459L185.655 22.8012L46.0567 60.2065L45.4772 60.3618L45.6325 60.9414L83.0378 200.54L83.1931 201.12L83.7726 200.964L223.371 163.559ZM205.736 -11.6166L257.882 182.994L63.2576 235.143L52.9523 229.43L11.5149 40.7544L195.306 -17.3155L205.736 -11.6166Z' fill='%230D1140' stroke='white' stroke-width='1.2'/%3E%3Cpath d='M85.4389 116.101L127.717 43.4528L137.795 81.0649L123.262 105.521L122.952 106.043L123.477 106.347L148.442 120.798L158.377 157.877L85.4389 116.101ZM212.56 157.616L213.14 157.46L212.984 156.881L175.579 17.2823L175.424 16.7028L174.844 16.8581L35.2455 54.2634L34.6659 54.4187L34.8212 54.9982L72.2266 194.597L72.3818 195.176L72.9614 195.021L212.56 157.616ZM195.014 -17.2283L247.071 177.051L52.7917 229.107L0.734847 34.8286L195.014 -17.2283Z' fill='%230D1140' stroke='white' stroke-width='1.2'/%3E%3Cpath d='M45.3954 60.3995L34.3161 54.1846' stroke='white' stroke-width='1.2'/%3E%3Cpath d='M148.348 86.8556L137.269 80.6406' stroke='white' stroke-width='1.2'/%3E%3C/svg%3E%0A");
}

.s-banner .l-section__inner {
  position: relative;
  display: flex;
  padding-top: 1.5rem;
  padding-bottom: 19.875rem;
  flex-direction: column;
  background-color: var(--a-color_white);
}

.s-banner__img {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20rem;
  max-width: 20rem;
  margin: 0 auto;
}

.s-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.s-banner__title {
  z-index: 1;
  position: relative;
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 2.25rem;
  color: var(--a-color_red);
  flex-direction: column;
}

.s-banner__description {
  z-index: 1;
  position: relative;
  min-height: 5em;
}

.s-banner__title ~ .s-banner__description {
  margin: 1.25rem 0 0;
}

.s-banner__btn {
  z-index: 1;
  position: absolute;
  top: auto;
  right: var(--layout-h-padding);
  bottom: 1.25rem;
  left: var(--layout-h-padding);
  max-width: 22.5rem;
  min-width: 11.4375rem;
  margin: 0 auto;
  font-weight: 500;
}

.s-banner__btn:hover {
  color: var(--a-color_dark);
  background-color: var(--a-color_yellow);
  border-color: var(--a-color_yellow);
}

.s-banner__btn .icon-sprite {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 0.625rem;
}

.s-banner__bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.s-banner__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.s-banner--red {
  color: var(--a-color_white);
}

.s-banner--red .l-section__inner {
  background-color: var(--a-color_red);
}

.s-banner--red .s-banner__title {
  color: inherit;
}

.s-banner--red .s-banner__description {
  color: inherit;
}

.s-banner--red .s-banner__btn {
  color: var(--a-color_red);
  background-color: var(--a-color_white);
}

.s-banner--red .s-banner__btn:hover {
  color: var(--a-color_dark);
  background-color: var(--a-color_yellow);
  border-color: var(--a-color_yellow);
}

.s-banner--yellow {
  color: var(--a-color_text);
}

.s-banner--yellow .l-section__inner {
  background-color: var(--a-color_bg--yellow);
}

.s-banner--yellow .s-banner__title {
  color: inherit;
}

.s-banner--yellow .s-banner__description {
  color: inherit;
}

.s-banner--yellow .s-banner__btn {
  color: var(--a-color_bg--yellow);
  background-color: var(--a-color_text);
}

.s-banner--yellow .s-banner__btn:hover {
  color: var(--a-color_dark);
  background-color: var(--a-color_yellow);
  border-color: var(--a-color_yellow);
}

.s-banner--yellow .s-banner__btn {
  color: var(--a-color_bg--white);
  border: 0.0625rem solid transparent;
  background-color: var(--a-color_link);
  outline: none;
}

.s-banner--yellow .s-banner__btn.hover,
.s-banner--yellow .s-banner__btn:hover {
  color: var(--a-color_bg--white);
  background-color: var(--a-color_bg--dark);
}

.s-breadcrumbs .l-section__inner {
  padding: 1rem var(--layout-h-padding) 1.5rem;
}

.s-breadcrumbs .m-breadcrumbs {
  margin: 0;
}

.s-quiz {
  overflow: hidden;
  margin: 0;
}

.s-quiz#quizBottom {
  margin: 0;
}

.s-quiz .l-section__inner {
  background-color: var(--a-color_white);
}

.s-quiz .l-wide {
  position: relative;
}

.s-quiz__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  height: auto;
  width: 100%;
  padding: 1rem 0 1rem;
  flex-direction: column;
}

.s-quiz__slider {
  overflow: visible;
  height: 100%;
  width: 100%;
  padding: 0 0 1.75rem;
}

.s-quiz__slider > .swiper-wrapper {
  overflow: visible;
}

.s-quiz__slider > .swiper-wrapper > .swiper-slide {
  visibility: hidden;
  opacity: 0;
  display: flex;
  width: 100%;
  transition: opacity .2s;
}

.s-quiz__slider > .swiper-wrapper > .swiper-slide .s-quiz__btn {
  transition: 0s;
}

.s-quiz__slider > .swiper-wrapper > .swiper-slide.swiper-slide-visible {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

.s-quiz__slider > .swiper-wrapper > .swiper-slide.swiper-slide-visible .s-quiz__btn {
  transition: .2s;
}

.s-quiz__slider .swiper-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  left: calc(-1 * var(--layout-h-padding));
  right: calc(-1 * var(--layout-h-padding));
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0 var(--layout-h-padding);
  background-color: var(--a-color_bg--white);
}

.s-quiz__slider .swiper-bottom .swiper-pagination {
  flex: 1;
  margin: 0;
}

.s-quiz__slider .swiper-bottom .swiper-button-prev,
.s-quiz__slider .swiper-bottom .swiper-button-next {
  display: none;
  width: 2.375rem;
  height: 2.375rem;
}

.s-quiz__text {
  z-index: 1;
  position: relative;
  height: 100%;
  padding-bottom: 21.25rem;
}

.s-quiz__title {
  margin: 0 0 1.25rem;
  color: var(--a-color_red);
  letter-spacing: -0.06em;
}

.s-quiz__title:empty {
  margin: 0;
}

.s-quiz__title .a-font_h2 {
  letter-spacing: 0;
}

.s-quiz__subtitle {
  display: block;
  margin: 0 0 0.75rem;
  color: var(--a-color_red);
}

.s-quiz__description {
  max-width: 17.5rem;
}

.s-quiz__btn {
  z-index: 1;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 22.5rem;
  margin: 0 auto;
  font-weight: 500;
}

.s-quiz__btn--simple {
  bottom: 1rem;
}

.s-quiz__btn:hover {
  color: var(--a-color_dark);
  background-color: var(--a-color_yellow);
  border-color: var(--a-color_yellow);
}

.s-quiz__btn .icon-sprite {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 0.625rem;
}

.s-quiz__img {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: calc(-1 * var(--layout-h-padding));
  display: block;
  width: 100vw;
  max-width: 26rem;
  height: 21.75rem;
  margin: 0 auto;
}

.s-quiz__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.s-quiz__bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  width: 100vw;
  height: 100%;
  max-width: var(--full-width);
}

.s-quiz__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}

.s-quiz .m-breadcrumbs {
  margin: 1rem 0 0;
}

.s-quiz .m-quiz {
  display: none;
}

.s-quiz.--show-quiz .s-quiz__slider {
  padding-bottom: 0;
}

.s-quiz.--show-quiz .m-quiz {
  display: block;
}

.s-quiz.--show-quiz .s-quiz__inner {
  padding-bottom: 0.75rem;
}

.s-quiz.--show-quiz .s-quiz__text,
.s-quiz.--show-quiz .s-quiz__img,
.s-quiz.--show-quiz .swiper-bottom {
  display: none;
}

.s-quiz--bg-red {
  color: var(--a-color_white);
}

.s-quiz--bg-red .l-section__inner {
  background-color: var(--a-color_red);
}

.s-quiz--bg-red .s-quiz__title {
  color: inherit;
}

.s-quiz--bg-red .s-quiz__subtitle {
  color: inherit;
}

.s-quiz--bg-red .s-quiz__description {
  color: inherit;
}

.s-quiz--bg-red .s-quiz__btn {
  color: var(--a-color_red);
  background-color: var(--a-color_white);
}

.s-quiz--bg-red .s-quiz__btn:hover {
  color: var(--a-color_dark);
  background-color: var(--a-color_yellow);
  border-color: var(--a-color_yellow);
}

.s-quiz--bg-yellow {
  color: var(--a-color_text);
}

.s-quiz--bg-yellow .l-section__inner {
  background-color: var(--a-color_bg--yellow);
}

.s-quiz--bg-yellow .s-quiz__title {
  color: inherit;
}

.s-quiz--bg-yellow .s-quiz__subtitle {
  color: inherit;
}

.s-quiz--bg-yellow .s-quiz__description {
  color: inherit;
}

.s-quiz--bg-yellow .s-quiz__btn {
  color: var(--a-color_bg--yellow);
  background-color: var(--a-color_text);
}

.s-quiz--bg-yellow .s-quiz__btn:hover {
  color: var(--a-color_dark);
  background-color: var(--a-color_yellow);
  border-color: var(--a-color_yellow);
}

.s-quiz--bg-yellow .s-quiz__btn {
  color: var(--a-color_bg--white);
  border: 0.0625rem solid transparent;
  background-color: var(--a-color_link);
  outline: none;
}

.s-quiz--bg-yellow .s-quiz__btn.hover,
.s-quiz--bg-yellow .s-quiz__btn:hover {
  color: var(--a-color_bg--white);
  background-color: var(--a-color_bg--dark);
}

.s-quiz--def .s-quiz__title {
  margin: 0 0 1.25rem;
}

.bottom-buttons {
  z-index: 1000;
  position: fixed;
  right: 0;
  bottom: -3.75rem;
  left: 0;
  padding: 0;
  border-top: 0.0625rem solid var(--a-color_border--lightgrey);
  background-color: var(--a-color_bg--white);
  line-height: 1;
  transition: 0.2s;
}

.bottom-buttons._visible {
  bottom: 0rem;
}

.bottom-buttons__inner {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.75rem;
}

.bottom-buttons__entity {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  margin-left: 1.25rem;
  padding: 0;
  border: 0;
  outline: none;
  color: var(--a-color_border--darkgrey);
  transition: .2s;
}

.bottom-buttons__entity:first-child {
  margin-left: 0;
}

.bottom-buttons__entity:hover,
.bottom-buttons__entity.--active {
  color: var(--a-color_link);
}

.bottom-buttons__entity-ico {
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0 0 0.25rem;
}

.bottom-buttons__entity-ico svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
}

.bottom-buttons__popup {
  z-index: 7000;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background-color: var(--a-color_bg--white);
}

.bottom-buttons__popup-inner {
  display: flex;
  padding: 0 0.9375rem;
  flex-direction: column;
}

.bottom-buttons__popup-header {
  padding: 1rem 0;
  border-bottom: 0.0625rem solid var(--a-color_thumbnail);
}

.bottom-buttons__popup-close {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.25rem;
  color: var(--a-color_text);
  border: none;
  outline: none;
  background-color: transparent;
}

.bottom-buttons__popup-close svg {
  margin-right: 0.75rem;
}

.bottom-buttons__popup-content {
  padding: 1.5rem 0;
}

.bottom-buttons__popup-title {
  margin-bottom: 1.5rem;
  font-size: 1.4375rem;
  line-height: 1.75rem;
  color: var(--a-color_text);
}

.bottom-buttons__form-group {
  margin-bottom: 0.75rem;
}

.bottom-buttons__form-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  font-size: 1rem;
  line-height: 3rem;
  border: 0.0625rem solid var(--a-color_thumbnail);
  border-radius: var(--a-borderRadius--x2);
  outline: none;
}

.bottom-buttons__form-input.error {
  border-color: var(--a-color_link);
}

.bottom-buttons__form-button {
  width: 100%;
  height: 3rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: var(--a-color_bg--white);
  background: var(--a-color_link);
  border: none;
  border-radius: var(--a-borderRadius--x2);
}

.bottom-buttons__form label.error {
  display: none !important;
}

.bottom-buttons__form .widget-form-privacy__content {
  margin: 1.5rem 0 0 0 !important;
  padding: 0 0 0 1.5rem !important;
  border: none !important;
}

.bottom-buttons__form .widget-form-privacy__checkbox {
  top: 0 !important;
  left: 0 !important;
}

.bottom-buttons .bottom-buttons_popup {
  overflow: hidden;
}

.bottom-buttons_popup .bottom-buttons__inner {
  display: none;
}

.bottom-buttons_popup .bottom-buttons__popup {
  display: block;
}

.bottom-buttons_popup .bottom-buttons {
  transform: none;
}

.s-title {
  color: var(--a-color_red);
  margin: 0 0 1.5rem;
}

.s-title .l-section__inner {
  display: flex;
  align-items: center;
  padding: 1rem var(--layout-h-padding) 3rem;
  background-image: url("/assets/dist/images/s_title/sm-top.png"), url("/assets/dist/images/s_title/sm-bottom.png");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, 100% 100%;
}

.s-title .--lowcase {
  text-transform: none;
}

.s-title .m-breadcrumbs {
  margin: 0 0 1.5rem;
}

.form-feedback {
  display: none;
  padding: 0;
  background: none;
}

.form-feedback .m-form {
  background-color: var(--a-color_bg--blue);
}

.form-feedback .m-form__wrapper {
  padding: 1rem;
  border-radius: var(--a-borderRadius--x3);
}

.form-feedback .m-form__inner {
  display: grid;
  grid-gap: 0.625rem;
  margin: 0.75rem 0 0;
}

.form-feedback .m-form__title {
  margin: 0 0 0.75rem;
  padding-right: 2.5rem;
}

.form-feedback .m-form .a-input__wrapper {
  margin: 0;
}

.form-feedback .m-form .a-input__wrapper:first-child {
  grid-column: unset;
}

.form-feedback .m-form__btn {
  order: 10;
  width: 100%;
  margin: 0.25rem 0 0;
}

.form-feedback .m-form__btn button {
  max-width: 14.125rem;
}

.form-feedback .m-form__required {
  color: var(--a-color_link);
}

.form-feedback.fancybox__content .is-close {
  top: 0.875rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: var(--layout-h-padding);
  background-color: var(--a-color_bg--white);
  border-radius: 50%;
  color: inherit;
  transition: 0.2s;
}

.form-feedback.fancybox__content .is-close:hover {
  background-color: var(--a-color_thumbnail);
  color: var(--a-color_bg--white);
}

.form-feedback.fancybox__content .is-close svg {
  stroke: currentColor;
  filter: none;
}

@media (min-width: 365px) {
  .s-header__top-sveden {
    margin-right: 0.625rem;
  }
}

@media (min-width: 375px) {
  .m-form__title br {
    display: none;
  }
}

@media (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .m-form__required {
    grid-column: 1 / -1;
  }

  .m-nav-contacts {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.25rem 2rem;
    grid-template-areas: "address schedule" "students phones" "feedback feedback";
  }

  .m-nav-contacts__section_address {
    grid-area: address;
  }

  .m-nav-contacts__section_students {
    grid-area: students;
  }

  .m-nav-contacts__section_schedule {
    grid-area: schedule;
  }

  .m-nav-contacts__section_phones {
    grid-area: phones;
  }

  .m-nav-contacts__section_feedback {
    grid-area: feedback;
  }

  .m-nav-contacts__section_phones {
    margin: -2.25rem 0 0;
  }

  .s-header__top-eyes {
    margin: 0;
  }

  .s-header__top-eyes .icon-sprite {
    width: 1.5rem;
    height: 1.5rem;
  }

  .s-header__tools {
    margin: 0;
  }

  .s-header__tools {
    grid-column: 3;
  }

  .s-header__tools .m-apply-btn {
    left: 0;
  }

  .s-header-menu .m-level-nav .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .s-quiz__description {
    max-width: 20.625rem;
  }

  .form-feedback .m-form__inner {
    grid-gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .form-feedback .m-form .a-input__wrapper.--type-textarea {
    grid-column: 1 / -1;
  }

  .form-feedback .m-form__btn {
    grid-row: unset;
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin: 0;
  }

  .form-feedback .m-form__privacy {
    grid-column: 1 / -1;
  }
}

@media screen and (min-width: 576px) {
  .m-form.vertical .m-form__inner {
    flex-direction: column;
    grid-template-columns: repeat(2, 1fr);
  }

  .m-form.vertical .a-input__wrapper:first-child {
    grid-column: 1 / -1;
  }

  .m-form.vertical .m-form__btn {
    order: 10;
    grid-column: 1 / -1;
    grid-row: unset;
  }

  .m-form.vertical .a-button {
    width: fit-content;
  }

  .m-form.vertical .m-form__privacy {
    margin: 0.5rem 0 0;
    order: 10;
    grid-column: 1 / -1;
  }
}

@media screen and (min-width: 768px) {
  :root {
    --layout-v-padding: 3rem;
    --layout-h-padding: 1.875rem;
  }

  .m-quiz[data-slide="last"] {
    padding-bottom: 1rem;
  }

  .s-header-menu .m-social-links {
    margin-right: 0;
  }

  .s-header-menu .m-app-links {
    margin-left: 0;
    order: -1;
  }

  .bottom-buttons {
    display: none;
  }
}

@media (min-width: 768px) {
  .bvi-body[data-bvi-fontsize][data-bvi-theme] .a-button {
    padding: .5em;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .a-uikit-select__input {
    padding-right: 2.75rem;
  }

  .m-form__required {
    font-size: 1rem;
  }

  .m-app-links__title {
    margin: 0 0 0.875rem;
  }

  .m-app-links__item {
    margin-left: 0.9375rem;
  }

  .m-menu-toggled {
    margin: 0 0 1rem;
    padding: 0;
    border: none;
  }

  .m-menu-toggled__mainlink {
    display: block;
    min-height: unset;
    padding: 0;
    margin: 0 0 1rem;
  }

  .m-menu-toggled__mainlink-toggle {
    display: none;
  }

  .m-menu-toggled__link {
    max-height: unset;
    margin: 0 0 1rem;
    opacity: 1;
  }

  .m-menu-toggled__link.--sitemap {
    display: flex;
    min-height: 3.25rem;
    margin-top: 1.25rem;
    color: var(--a-color_link);
  }

  .m-menu-toggled__close {
    display: none;
  }

  .m-menu-toggled._opened .m-menu-toggled__close {
    display: none;
  }

  .m-menu-toggled._type-btns .m-menu-toggled__link {
    min-height: 2.5rem;
    margin: 0 0.5rem 0.5rem 0;
    padding: 0.625rem 1rem;
  }

  .m-quiz__title {
    width: 47.5rem;
    max-width: 40vw;
    margin: 0 0 1.25rem;
  }

  .m-quiz__slide-answers {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .m-quiz__slide-answers--col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .m-quiz__slide-answer {
    width: 14.25rem;
  }

  .m-quiz__slide-answer.--number {
    width: 9rem;
  }

  .m-quiz__slide-back {
    position: absolute;
    top: 100%;
    left: 0;
  }

  .m-quiz > .swiper > .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: 1;
  }

  .m-social-links__title {
    margin: 0 0 0.875rem;
  }

  .m-breadcrumbs {
    margin: 0 0 0.75rem;
  }

  .m-content-banner {
    flex-direction: row;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 2.25rem 2rem;
  }

  .m-content-banner__text {
    max-width: unset;
    margin: 0 0 1rem;
  }

  .m-content-banner__btn {
    max-width: 10.25rem;
    padding: 0 0.75rem;
  }

  .m-content-banner__img {
    position: relative;
    z-index: 1;
    flex: none;
    display: block;
    width: 18.1875rem;
    height: 18.1875rem;
    margin: -5rem 0;
  }

  .m-content-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
  }

  .m-faculty {
    min-height: 6.375rem;
  }

  .m-map {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: space-between;
  }

  .m-map .m-tabs .swiper-wrapper {
    width: auto;
  }

  .m-map__search {
    justify-self: flex-end;
    width: 21.375rem;
  }

  .m-map__search .m-search {
    height: auto;
  }

  .m-menu-tabs__btn {
    flex: 1;
  }

  .specialty-card {
    min-height: 10.375rem;
  }

  .m-tabs__btn {
    flex: 1;
  }

  .m-teachers .swiper-slide {
    max-width: 50%;
    margin-right: 1.25rem;
  }

  .m-teachers__card-position {
    max-height: 11.875rem;
  }

  .m-up {
    bottom: 0.5rem;
  }

  .s-header__top-eyes {
    width: unset;
  }

  .s-header__top-eyes span {
    display: inline;
    margin-right: 0.5rem;
  }

  .s-header__main-container {
    padding: 0.75rem 0;
  }

  .s-header__main .m-level-nav {
    margin: 0.75rem 0 0;
  }

  .s-header__burger {
    width: unset;
    margin-left: 1.75rem;
    color: var(--a-color_link);
  }

  .s-header__burger-label {
    display: inline;
    margin-right: 1rem;
    font-weight: 500;
    transition: .2s;
  }

  .s-header__burger-icon {
    width: 1.25rem;
    height: 0.875rem;
  }

  .s-header__search {
    margin-left: 1rem;
  }

  .is-scrolled .s-header__tools .m-apply-btn {
    display: none;
  }

  .s-header-menu .l-section__inner {
    margin: 0 2rem 2rem;
    padding: 2rem var(--layout-h-padding);
  }

  .s-header-menu__bottom {
    margin: 0;
    padding: 0;
  }

  .s-grid-menu {
    display: grid;
    grid-gap: 0 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 1.25rem 0 0;
  }

  .s-grid-menu__sitemap {
    display: none;
  }

  .s-footer__top {
    display: flex;
  }

  .s-footer__policy {
    justify-content: space-between;
    margin: 0;
    flex-direction: row;
  }

  .s-footer__policy-item {
    margin: 0 0 0 1.25rem;
  }

  .s-footer .m-social-links {
    align-items: center;
    margin-left: 0.75rem;
    flex-direction: row;
  }

  .s-footer .m-social-links {
    margin-left: auto;
  }

  .s-footer .m-social-links__title {
    display: block;
    margin: 0;
  }

  .s-footer .m-social-links__item {
    margin-left: 0.75rem;
  }

  .s-footer .m-app-links {
    margin: 0 0 0 auto;
  }

  .s-events-sticker {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem 1rem;
    background-repeat: no-repeat, no-repeat;
    background-position: top 3.125rem right 14.625rem, 100% 100%;
    background-image: url("/assets/dist/images/s_events_sticker/md-top.png"), url("/assets/dist/images/s_events_sticker/md-bottom.png");
  }

  .s-events-sticker__text {
    max-width: 77%;
    margin: 1.25rem 0 0;
  }

  .s-events-sticker__link {
    max-width: 17.5rem;
    margin: 1.25rem 0 0;
  }

  .s-banner .l-section__inner {
    justify-content: center;
    min-height: 20rem;
    padding: var(--layout-v-padding) var(--layout-h-padding);
    padding-bottom: var(--layout-v-padding);
  }

  .s-banner__img {
    right: 1.375rem;
    left: auto;
    height: 100%;
  }

  .s-banner__text {
    z-index: 1;
    position: relative;
    width: 24.5rem;
  }

  .s-banner__description {
    min-height: unset;
  }

  .s-banner__btn {
    position: unset;
    min-width: 16.875rem;
    margin: 2rem 0 0;
    padding: 0 3rem;
  }

  .s-quiz {
    margin: 0 0 1.5rem;
  }

  .s-quiz .l-wide {
    min-height: 21.75rem;
  }

  .s-quiz__inner {
    justify-content: center;
    height: 100%;
    padding: 4.375rem 0;
  }

  .s-quiz__text {
    height: auto;
    width: 60%;
    padding: 0;
  }

  .s-quiz__title {
    margin: 0 0 1.25rem;
  }

  .s-quiz__btn {
    position: unset;
    min-height: 3.25rem;
    min-width: 18.125rem;
    margin: 2rem 0 0;
    padding: 0 3rem;
  }

  .s-quiz__img {
    position: absolute;
    right: -2.5rem;
    left: auto;
  }

  .s-quiz .m-breadcrumbs {
    position: absolute;
    left: 0;
    top: 0;
  }

  .s-title .l-section__inner {
    background-image: url("/assets/dist/images/s_title/md-top.png"), url("/assets/dist/images/s_title/md-bottom.png");
  }

  .form-feedback .m-form__wrapper {
    padding: 3rem 2.25rem;
  }

  .form-feedback .m-form__title {
    padding-right: 3.75rem;
    font-size: 3rem;
  }

  .form-feedback.fancybox__content .is-close {
    top: 1.125rem;
    width: 3.75rem;
    height: 3.75rem;
  }
}

@media (min-width: 799px) {
  .s-header__top-container {
    flex-wrap: nowrap;
  }
}

@media (min-width: 992px) {
  .swiper-pagination,
  .swiper-pagination-bullets {
    margin: 1.5rem 0 0;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  table th,
  table td {
    padding: 1.5rem 1rem;
  }

  .m-form__inner {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .m-form .a-input__wrapper {
    margin: 0 0.75rem 0 0;
  }

  .m-form__btn .a-button {
    font-size: 1.125rem;
    line-height: 1.25rem;
  }

  .m-form__privacy {
    margin: 0.5rem 0 0.75rem;
  }

  .m-app-links {
    flex-direction: row;
    align-items: center;
  }

  .m-app-links__title {
    margin: 0 0.5rem 0 0;
  }

  .m-app-links__title br {
    display: block;
  }

  .m-nav-contacts {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3rem 0;
    margin: 0;
    grid-template-areas: "address" "schedule" "phones" "students" "feedback";
  }

  .m-nav-contacts .m-phones > a {
    margin-top: 0.625rem;
  }

  .m-nav-contacts .m-phones > a svg {
    margin: 0 0.5rem 0 0;
  }

  .m-nav-contacts__section_feedback .a-button {
    width: 100%;
    max-width: unset;
    height: 3.5rem;
    margin-top: 1.5rem;
  }

  .m-quiz {
    padding-bottom: 3.125rem;
  }

  .m-quiz__slide-answers {
    grid-gap: 1.25rem;
    max-width: 60%;
  }

  .m-quiz__slide-answer {
    width: 16.75rem;
    min-height: 3.5rem;
  }

  .m-quiz__slide-back {
    margin: 1rem 0 1.375rem;
  }

  .m-quiz > .swiper > .swiper-pagination > .swiper-pagination-bullet {
    flex: 1;
    height: 0.25rem;
    width: unset;
    max-width: unset;
    margin: 0 0.25rem;
    background-color: var(--a-color_disabled);
  }

  .m-quiz > .swiper > .swiper-pagination > .swiper-pagination-bullet-active {
    background-color: var(--a-color_thumbnail);
  }

  .m-social-links {
    flex-direction: row;
    align-items: center;
  }

  .m-social-links__title {
    margin: 0 0.5rem 0 0;
  }

  .m-article-card__title {
    margin: 0 0 2rem;
  }

  .accordion-item__question {
    align-items: center;
    padding: 1.5rem 0;
  }

  .accordion-item__answer-wrapper {
    padding: 0 0 var(--a-padding--x5);
  }

  .m-card-ico--min {
    padding: var(--a-padding--x5);
  }

  .m-case-card__title ~ .m-case-card__text {
    margin: 1rem 0 0;
  }

  .m-case-card__more {
    margin: 2rem 0 0;
  }

  .m-content-banner__title {
    letter-spacing: 0;
  }

  .m-content-banner__btn {
    max-width: 11.875rem;
  }

  .m-content-banner__img {
    margin: -5rem auto;
  }

  .m-factoid.--size_big {
    padding: var(--a-padding--x15) var(--a-padding--x12);
  }

  .m-factoid.--size_big .m-factoid__title {
    margin-bottom: 1.25rem;
  }

  .m-license .swiper-slide {
    width: 24.8125rem;
  }

  .m-license-card__descr br {
    display: block;
  }

  .m-map {
    grid-gap: 1.5rem;
  }

  .m-map__search {
    width: 26.25rem;
  }

  .m-map__search .m-search {
    height: 2.5rem;
  }

  .m-menu-tabs__btn {
    height: 3rem;
  }

  .m-share .ya-share2__link {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0.75rem;
  }

  .specialty-card {
    flex-direction: column;
  }

  .specialty-card__new,
  .specialty-card__place {
    margin-bottom: 0.75rem;
  }

  .specialty-card__title {
    margin: 0 0 3rem;
  }

  .specialty-card__bottom {
    height: 2.5rem;
  }

  .m-tabs__btn {
    height: 3rem;
  }

  .m-tabs__tab {
    margin-top: 2.5rem;
  }

  .m-video-card__img {
    height: 19.5rem;
  }

  .m-video-card__button {
    bottom: 1rem;
    left: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .m-video-card__title {
    margin: 0.5rem 0 0.25rem;
  }

  .s-header {
    border-bottom: 0.0625rem solid var(--a-color_border--lightgrey);
  }

  .s-header__top {
    margin: 0;
  }

  .is-scrolled .s-header__top {
    z-index: 110;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--a-color_bg--white);
  }

  .s-header__top-eyes span {
    margin-right: 0;
  }

  .s-header__top-eyes .icon-sprite {
    width: 1rem;
    height: 1rem;
    margin: 0;
    order: unset;
  }

  .s-header__top .m-phones {
    display: flex;
    margin: 0 3rem;
    color: var(--a-color_text);
  }

  .s-header__main {
    margin: 0;
  }

  .is-scrolled .s-header__main {
    top: 2.25rem;
  }

  .s-header__tools .m-phones {
    display: none;
  }

  .s-header__burger {
    width: auto;
    margin-left: 1rem;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    order: 2;
  }

  .s-header__search-toggler {
    color: var(--a-color_secondary);
  }

  .s-footer__main {
    display: grid;
    margin: 2rem 0 1.25rem;
    grid-gap: 0 2.5rem;
    grid-template-columns: var(--contactsWidth) 1fr;
  }

  .s-footer__main .s-grid-menu {
    margin: 0;
  }

  .s-footer .m-app-links {
    display: flex;
    align-items: center;
    margin: 0 0 0 5rem;
    order: 1;
    flex-direction: row;
  }

  .s-footer .m-app-links__item img {
    height: 2.25rem;
  }

  .s-footer .m-nav-contacts {
    margin: 0;
    padding: 0 1.25rem 0 0;
    border: none;
    order: -1;
    border-right: 0.0625rem solid var(--a-color_dark);
  }

  .s-footer .m-nav-contacts__feedback {
    width: 100%;
    max-width: 15.4375rem;
    font-size: 1.125rem;
  }

  .s-banner__img {
    right: 0;
    width: 31.25rem;
    height: 100%;
    max-width: 45%;
  }

  .s-banner__text {
    width: 56.875rem;
    max-width: 50vw;
  }

  .s-banner__title {
    font-size: 3rem;
    line-height: 3.25rem;
  }

  .s-banner__title ~ .s-banner__description {
    margin: 1.5rem 0 0;
  }

  .s-quiz__description {
    max-width: 37.75rem;
  }

  .s-quiz__btn {
    min-height: 3.5rem;
    min-width: 19.5625rem;
    margin-top: 2.5rem;
  }

  .s-quiz__img {
    height: 100%;
  }

  .s-quiz__img img {
    object-position: bottom left;
  }

  .s-quiz--bg-white-red {
    color: var(--a-color_white);
  }

  .s-quiz--bg-white-red .l-section__inner {
    background-color: var(--a-color_red);
  }

  .s-quiz--bg-white-red .s-quiz__title {
    color: inherit;
  }

  .s-quiz--bg-white-red .s-quiz__subtitle {
    color: inherit;
  }

  .s-quiz--bg-white-red .s-quiz__description {
    color: inherit;
  }

  .s-quiz--bg-white-red .s-quiz__btn {
    color: var(--a-color_red);
    background-color: var(--a-color_white);
  }

  .s-quiz--bg-white-red .s-quiz__btn:hover {
    color: var(--a-color_dark);
    background-color: var(--a-color_yellow);
    border-color: var(--a-color_yellow);
  }

  .s-title h1 {
    max-width: 75%;
  }

  .form-feedback .m-form__inner {
    grid-template-columns: repeat(3, 1fr);
    margin: 1.25rem 0 0;
  }
}

@media screen and (min-width: 992px) {
  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h1,
  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h1 {
    font-size: 6.25rem !important;
    line-height: 5.625rem !important;
  }

  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h1-min {
    font-size: 5rem !important;
    line-height: 5.625rem !important;
  }

  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h2,
  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h2 {
    font-size: 3rem !important;
    line-height: 3.25rem !important;
  }

  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h3,
  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h3 {
    font-size: 2.5rem !important;
    line-height: 3rem !important;
  }

  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h4,
  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h4 {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }

  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) h5,
  .bvi-body[data-bvi-fontsize] *:not(.bvi-no-styles) .a-font_h5 {
    font-size: 1.75rem !important;
    line-height: 2rem !important;
  }

  h1,
  .a-font_h1 {
    font-size: 6.25rem;
    line-height: 6.25rem;
  }

  .a-font_h1-min {
    font-size: 5rem;
    line-height: 5.625rem;
  }

  h2,
  .a-font_h2 {
    font-size: 3rem;
    line-height: 3.25rem;
  }

  h3,
  .a-font_h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  h4,
  .a-font_h4 {
    font-size: 2rem;
    line-height: 2.375rem;
  }

  h5,
  .a-font_h5 {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  h6,
  .a-font_h6 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .a-font_xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .a-font_xl-m {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .a-font_l {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .a-font_l-m {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .a-font_m {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .a-font_m-m {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }

  .a-font_s {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .a-font_s-m {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .a-font_xs {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .a-font_xs-m {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .a-font_button {
    font-size: 1.125rem;
    line-height: 1.25rem;
  }

  .a-font_button-m {
    font-size: 1.125rem;
    line-height: 1.25rem;
  }

  .a-font_button-s {
    font-size: 1rem;
    line-height: 1rem;
  }

  .a-uikit-select__list-option.--popular::after {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .m-quiz__slide-question {
    margin: 0 0 2.5rem;
  }

  .m-card-ico--min .m-card-ico__img {
    width: 5.5rem;
    height: 4.75rem;
  }
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }

  .fancybox__slide {
    padding: 64px 100px;
  }

  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }

  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }

  .carousel__button.is-close {
    right: 40px;
  }

  .fancybox__toolbar {
    padding: 8px;
  }
}

@media screen and (min-width: 1200px) {
  :root {
    --layout-v-padding: 3.75rem;
    --layout-h-padding: 4.375rem;
  }

  .a-font_banner-size-1 {
    font-size: 6.25rem;
    line-height: 5.625rem;
  }

  .a-font_banner-size-2 {
    font-size: 5rem;
    line-height: 4.75rem;
  }

  .m-form__box {
    margin: 0 0 2rem;
  }

  .m-form__subtitle {
    letter-spacing: 0;
  }

  .m-form__privacy {
    margin: 0;
  }

  .m-form__privacy-checkbox,
  .m-form__privacy-ico {
    width: 1rem;
    height: 1rem;
  }

  .m-form.vertical .m-form__button {
    width: 100%;
  }

  .accordion-item__answer ul li {
    margin: 0.75rem 0;
    padding-left: var(--a-padding--x5);
  }

  .accordion-item__answer ol li {
    margin: 0.75rem 0;
    padding-left: 0.625rem;
  }

  .m-teachers__card-text > ul > li {
    padding-left: var(--a-padding--x5);
  }

  .m-graduate-card__block > ul > li {
    padding-left: var(--a-padding--x5);
  }

  .s-header-menu .m-social-links__title {
    display: block;
  }

  .s-header-menu .m-app-links {
    order: unset;
  }

  .s-header-menu .m-app-links__title {
    display: block;
  }
}

@media (min-width: 1200px) {
  .swiper-navigation {
    position: absolute;
    top: auto;
    bottom: 100%;
    right: 0;
    left: auto;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .bvi-body[data-bvi-fontsize][data-bvi-theme] .s-teaching-staff .m-tabs__btns {
    margin-right: 9rem;
    overflow: hidden;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .l-wide {
    --layout-width: 90rem;
  }

  .a-button--small {
    height: 2.5rem;
    font-size: 1rem;
  }

  .a-button--small--rounded {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 2.5rem;
  }

  .a-button--small--square {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
  }

  .a-button--medium {
    height: 3.25rem;
    font-size: 1.125rem;
    line-height: 1.25rem;
  }

  .a-button--medium--rounded {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    border-radius: 3.25rem;
  }

  .a-button--medium--square {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
  }

  .a-button--large {
    height: 3.5rem;
    font-size: 1.125rem;
    line-height: 1.25rem;
  }

  .a-button--large--rounded {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    border-radius: 3.5rem;
  }

  .a-button--large--square {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
  }

  .a-button--large .icon-sprite {
    height: 2rem;
  }

  .a-input {
    height: 3.25rem;
    padding: 0.75rem var(--a-padding--x5);
  }

  .a-select select {
    height: 3.25rem;
  }

  .a-select select.--filter {
    min-width: 12.5rem;
    height: 2.75rem;
  }

  .l-section {
    margin: var(--a-padding--x10) 0;
  }

  .l-section__inner {
    border-radius: var(--a-borderRadius--def);
  }

  .l-section__title {
    margin-bottom: 2.5rem;
  }

  .l-section--full .l-section__inner {
    border-radius: var(--a-borderRadius--def);
  }

  .m-level-nav .swiper-container:not(.swiper-container-initialized) .swiper-wrapper {
    justify-content: space-between;
  }

  .m-menu-toggled__mainlink {
    margin: 0 0 1.25rem;
  }

  .m-menu-toggled__link {
    margin: 0 0 1rem;
  }

  .m-menu-toggled__link.--sitemap {
    min-height: unset;
    margin-top: 2rem;
  }

  .m-nav-contacts {
    grid-gap: 0;
  }

  .m-nav-contacts__title {
    margin: 0 0 1.25rem;
  }

  .m-nav-contacts__address {
    margin: 1.125rem 0 0;
  }

  .m-nav-contacts__address-ico {
    display: flex;
    align-items: center;
    margin: 0.75rem 0 0;
  }

  .m-nav-contacts__address-ico svg {
    width: 1.25rem;
    height: 1rem;
  }

  .m-nav-contacts__address-text {
    margin: 0.3125rem 0 0;
  }

  .m-nav-contacts__section_phones {
    margin: -1.25rem 0 0;
  }

  .m-nav-contacts .m-phones > a svg {
    margin: 0 1.25rem 0 0;
  }

  .m-quiz__img {
    display: block;
    position: absolute;
    top: auto;
    bottom: -1.125rem;
    left: auto;
    right: -1.875rem;
    width: 26rem;
    height: 21.75rem;
  }

  .m-quiz__title {
    margin: 0 0 1.5rem;
    font-size: 6.25rem;
    line-height: 5.625rem;
    text-transform: uppercase;
  }

  .m-quiz__slide-answer.--number {
    width: 5.125rem;
  }

  .m-quiz__slide-answer.--number input {
    flex: none;
    width: 3.875rem;
    height: 100%;
    margin: 0;
    border-radius: 0.5rem 0 0 0.5rem;
  }

  .m-quiz__slide-answer.--number button {
    position: absolute;
    top: auto;
    left: auto;
    right: 0;
    flex: none;
    width: 1.375rem;
    height: 50%;
  }

  .m-quiz__slide-answer.--number button:last-child {
    top: 0;
    height: 51%;
    border-radius: 0 0.5rem 0 0;
  }

  .m-quiz__slide-answer.--number button:last-child:after {
    transform: rotate(90deg);
  }

  .m-quiz__slide-answer.--number button:first-child {
    bottom: 0;
    border-radius: 0 0 0.5rem 0;
  }

  .m-quiz__slide-answer.--number button:first-child:after {
    transform: rotate(-90deg);
  }

  .m-quiz > .swiper > .swiper-pagination {
    margin: 0;
  }

  .m-social-links__item {
    margin-left: 0.75rem;
  }

  .m-article-card__info {
    padding: 1rem 1.5rem 1.25rem;
  }

  .m-card-ico {
    padding: var(--a-padding--x7) var(--a-padding--x8);
  }

  .m-card-ico__text {
    margin-right: 3.375rem;
  }

  .m-card-ico__text ul {
    max-width: 75%;
  }

  .m-card-ico__text ul li {
    padding-left: 0.75rem;
  }

  .m-card-ico__text ul li:not(:last-child) {
    margin-bottom: 0.75rem;
  }

  .m-card-ico__title + .m-card-ico__text {
    margin-top: 1.25rem;
  }

  .m-card-ico__img {
    display: block;
  }

  .m-card-ico--min {
    padding: var(--a-padding--x5);
  }

  .m-case-card__wrapper {
    padding: var(--a-padding--x6) var(--a-padding--x8) var(--a-padding--x8);
  }

  .m-case-card__image {
    height: 15rem;
  }

  .m-faculty {
    align-items: flex-start;
    min-height: 15.25rem;
    padding: var(--a-padding--x6);
    flex-direction: column;
    gap: 0;
  }

  .m-faculty__info {
    max-width: 80%;
  }

  .m-faculty__image {
    align-self: flex-end;
    width: 5.125rem;
    height: 5.125rem;
  }

  .m-faculty__image svg * {
    stroke-width: .25;
  }

  .m-faculty__title {
    margin-bottom: 0.625rem;
  }

  .m-license .swiper-slide {
    width: 100%;
    min-height: 15rem;
  }

  .m-license-card {
    padding: 2.5rem 0;
  }

  .m-license-card__img {
    margin-right: 2.1875rem;
  }

  .m-license-card__img img {
    height: 10rem;
    width: 104px;
  }

  .m-license-card__title br {
    display: block;
  }

  .m-map__map {
    height: 23.75rem;
  }

  .m-tabs__tab ul li {
    padding-left: var(--a-padding--x5);
  }

  .m-teachers .swiper-slide {
    margin-right: 1.25rem;
  }

  .m-teachers__card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 26.25rem;
    height: 100%;
    padding: 1.5rem;
    border-radius: var(--a-borderRadius--x3);
  }

  .m-teachers__card-image {
    flex: none;
    width: 10.5rem;
    height: 14.125rem;
    margin: 0 0 1rem;
  }

  .m-teachers__card-image img {
    border-radius: 0;
  }

  .m-teachers__card-info {
    height: 100%;
    padding: 0;
    justify-content: flex-start;
  }

  .m-teachers__card-position {
    max-height: 9rem;
    margin-right: 5px;
    overflow-y: auto;
    touch-action: pan-y;
    max-height: 13.75rem;
  }

  .m-teachers__card-text {
    max-height: 9rem;
  }

  .m-teachers.--big-card .swiper-slide {
    max-width: 40rem;
  }

  .m-teachers.--big-card .m-teachers__card {
    align-items: center;
    flex-direction: row;
    min-width: 40rem;
    padding: 0;
  }

  .m-teachers.--big-card .m-teachers__card-image {
    width: 17.3125rem;
    height: 100%;
    margin-bottom: 0;
  }

  .m-teachers.--big-card .m-teachers__card-info {
    justify-content: center;
    height: 100%;
    padding: var(--a-padding--x4) var(--a-padding--x10);
  }

  .m-up {
    bottom: 1rem;
    right: 1rem;
  }

  .m-graduate-card__img {
    max-height: 17.5rem;
  }

  .m-graduate-card__text {
    padding: 1rem 1.5rem 2rem;
  }

  .s-header__top {
    height: 3.375rem;
    margin: 0;
  }

  .s-header__top-container {
    padding: var(--a-padding--x2) 0;
  }

  .s-header__top-eyes {
    max-height: 1rem;
  }

  .s-header__main {
    margin: 0;
  }

  .is-scrolled .s-header__main {
    top: 3rem;
  }

  .s-header__logo svg {
    width: 14.25rem;
    height: unset;
    max-width: 16vw;
  }

  .s-header__burger-label {
    margin-right: 0.5rem;
  }

  .s-header__search {
    margin-left: 0;
  }

  .s-header.--visible-search .s-header__tools {
    grid-column: 2/-1;
  }

  .s-header__top .m-apply-btn {
    display: inline-flex;
    height: 2.375rem;
    margin-left: auto;
    border-radius: 0.5rem;
  }

  .s-header-menu {
    margin: 0;
  }

  .s-header-menu .l-section__inner {
    margin: 0 0 2rem;
    padding: 3rem var(--layout-h-padding);
  }

  .s-header-menu .s-grid-menu {
    margin: 1.5rem 0 0;
  }

  .s-header-menu__bottom {
    margin: 1rem 0 0;
  }

  .s-footer {
    margin: 0;
  }

  .s-footer .l-section__inner {
    padding: 5rem var(--layout-h-padding);
  }

  .s-footer .m-level-nav {
    margin: 1.5rem 0 0;
    padding: 1.625rem 0 2rem;
  }

  .s-footer .m-level-nav__link {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .s-footer__main .s-nav-toggled__menu {
    grid-gap: 0 1.25rem;
  }

  .s-footer__policy {
    justify-content: flex-start;
  }

  .s-footer__policy-item {
    margin: 0 0 0 2.5rem;
  }

  .s-footer .m-social-links__title {
    margin-right: 1.5rem;
  }

  .s-footer .m-app-links__title {
    display: block;
    margin-right: 1.5rem;
  }

  .s-events-sticker {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem var(--layout-h-padding);
    background-position: 0 0, 100% 100%;
    background-image: url("/assets/dist/images/s_events_sticker/lg-top.png"), url("/assets/dist/images/s_events_sticker/lg-bottom.png");
  }

  .s-events-sticker__date {
    order: 2;
    margin: 0 0 0 auto;
  }

  .s-events-sticker__date > *:nth-child(2) {
    display: flex;
    align-items: center;
    min-height: 2.5rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 0.125rem solid var(--a-color_yellow);
  }

  .s-events-sticker__text {
    order: 1;
    max-width: 42.5rem;
    margin: 0 2.5rem 0 0;
  }

  .s-events-sticker__link {
    order: 3;
    min-height: 3.25rem;
    margin: 0 0 0 2.5rem;
  }

  .s-events-sticker.--hidden {
    left: auto;
    max-width: 22.5rem;
    min-height: fit-content;
  }

  .s-events-sticker.--hidden .s-events-sticker__date > *:nth-child(2) {
    min-height: fit-content;
  }

  .s-form .l-section__inner {
    padding: var(--a-padding--x12) var(--layout-h-padding);
  }

  .s-form--logo .l-section__inner:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 12.5rem;
    height: 16.5rem;
    content: "";
    background-repeat: no-repeat;
  }

  .s-banner .l-section__inner {
    min-height: 31.25rem;
  }

  .s-banner__img {
    right: 3.75rem;
  }

  .s-banner__text {
    max-width: 37vw;
  }

  .s-banner__btn {
    min-width: 19.5625rem;
    margin-top: 3.75rem;
  }

  .s-banner__btn .icon-sprite {
    width: 2rem;
    height: 2rem;
  }

  .s-breadcrumbs .l-section__inner {
    padding: 2rem var(--layout-h-padding);
  }

  .s-quiz {
    margin: 0;
  }

  .s-quiz .l-wide {
    min-height: 35.5rem;
  }

  .s-quiz__inner {
    border-radius: 0;
  }

  .s-quiz__slider {
    padding-bottom: 0;
  }

  .s-quiz__slider .swiper-bottom {
    left: 0;
    right: 0;
    bottom: 0.5rem;
    width: 100%;
    background-color: transparent;
    padding: 0;
  }

  .s-quiz__slider .swiper-bottom .swiper-pagination {
    margin: 0 2rem;
  }

  .s-quiz__slider .swiper-bottom .swiper-button-prev,
  .s-quiz__slider .swiper-bottom .swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .s-quiz__title {
    margin: 0 0 1.5rem;
    text-transform: uppercase;
  }

  .s-quiz__subtitle {
    margin: 0 0 1.25rem;
  }

  .s-quiz__description {
    max-width: 49rem;
  }

  #quizBottom .s-quiz__description {
    max-width: 36.25rem;
  }

  .s-quiz__btn .icon-sprite {
    width: 2rem;
    height: 2rem;
  }

  .s-quiz__img {
    top: 0;
    right: calc((100% - var(--layout-width)) / 2);
    max-width: unset;
    width: 37.5rem;
  }

  .s-quiz__img img {
    object-position: bottom center;
  }

  .s-quiz .m-breadcrumbs {
    top: 1rem;
  }

  .s-quiz .m-quiz {
    min-height: 17.125rem;
  }

  .s-quiz.--show-quiz .s-quiz__inner {
    padding-top: 5rem;
    padding-bottom: 1.125rem;
  }

  .s-title {
    margin: 0;
  }

  .s-title .l-section__inner {
    min-height: unset;
    padding: 2rem var(--layout-h-padding) 3.5rem;
    background-image: url("/assets/dist/images/s_title/lg-top.png"), url("/assets/dist/images/s_title/lg-bottom.png");
  }

  .s-title h1 {
    max-width: 56.25rem;
    text-transform: uppercase;
  }

  .s-title .m-breadcrumbs {
    margin: 0 0 2rem;
  }

  .form-feedback .m-form__privacy {
    max-width: 76%;
  }

  .form-feedback.fancybox__content .is-close {
    top: 1.9375rem;
  }
}

@media (min-width: 1400px) {
  .bvi-body[data-bvi-fontsize][data-bvi-theme] .s-header__topmenu {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .m-quiz__img {
    width: 45%;
    height: 34.5rem;
  }

  .m-card-ico__text ul {
    max-width: unset;
  }

  .m-card-ico__text ul br {
    display: block;
  }

  .m-content-banner {
    padding: 1.5rem 2rem;
    margin: 1.5rem 0 2.5rem;
  }

  .m-content-banner__img {
    margin: -5rem 2.625rem;
  }

  .s-header__main-container {
    display: grid;
    padding: var(--a-padding--x4) 0;
    grid-gap: 0 3rem;
    grid-template-columns: auto 1fr auto;
  }

  .s-header__main .m-level-nav {
    padding: 0;
    grid-column: 2 / -1;
  }

  .s-header__main .m-level-nav .swiper-wrapper {
    justify-content: space-between;
  }

  .s-header__main .m-level-nav .swiper-slide._prepended {
    display: none;
  }

  .s-header__main .m-level-nav__link {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.375rem;
  }

  .s-header__logo {
    margin-right: 0;
    grid-row: 1 / 3;
  }

  .s-header__topmenu {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: auto;
    margin: 0;
    margin-right: auto;
    padding: 0;
    order: unset;
  }

  .s-events-sticker__link {
    max-width: 27.5rem;
  }

  .s-quiz__img {
    right: auto;
    left: 52%;
    width: 42.5rem;
  }
}

@media (min-width: 1440px) {
  .a-uikit-select__input::after {
    cursor: pointer;
    position: absolute;
    top: 0.0625rem;
    right: 0.0625rem;
    width: 2.75rem;
    height: calc(100% - 2px);
    background: var(--a-color_bg--blue);
    transition: 0.25s all ease;
    border-top-right-radius: var(--a-borderRadius--x2);
    border-bottom-right-radius: var(--a-borderRadius--x2);
    border-left: 0;
    content: "";
    pointer-events: none;
  }

  .specialty-card {
    min-height: 15.25rem;
    padding: var(--a-padding--x6);
  }

  .s-header__topmenu-link {
    margin-left: 1.5rem;
  }

  .s-header__burger {
    margin-left: 1.75rem;
  }

  .s-footer__main .s-grid-menu {
    margin: 0 0 4.25rem;
  }

  .s-footer__policy {
    display: grid;
    grid-gap: 0 1rem;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% - var(--contactsWidth) - var(--contactsGap));
    margin-top: -1.125rem;
    margin-left: calc(var(--contactsWidth) + var(--contactsGap));
  }

  .s-footer__policy-item {
    margin: 0;
  }
}

@media (min-width: 1441px) {
  .m-menu-toggled._type-btns .m-menu-toggled__link {
    margin: 0 0.75rem 1rem 0;
    padding: 0.75rem 1.25rem;
  }

  .s-footer {
    --contactsGap: 60px;
  }

  .s-footer__main {
    margin-bottom: 0;
    grid-gap: 0 3.75rem;
  }
}

@media (min-width: 1600px) {
  .s-header__topmenu-link {
    margin-left: 2rem;
  }
}

@media (min-width: 1920px) {
  .s-quiz__bg-img img {
    object-position: top center;
  }
}

@media (min-width: 2560px) {
  .s-quiz__bg-img {
    left: calc((var(--full-width) - 100%) / -2);
  }
}

@media (max-width: 1199px) {
  .l-section.--pad-white:not(.py-0):not(.s-banner):not(.s-form) + .l-section.--pad-white:not(.py-0):not(.s-banner):not(.s-form),
  .l-section.--pad-transparent:not(.py-0):not(.s-banner):not(.s-form) + .l-section.--pad-white:not(.py-0):not(.s-banner):not(.s-form),
  .l-section.--pad-white:not(.py-0):not(.s-banner):not(.s-form) + .l-section.--pad-transparent:not(.py-0):not(.s-banner):not(.s-form),
  .l-section.--pad-transparent:not(.py-0):not(.s-banner):not(.s-form) + .l-section.--pad-transparent:not(.py-0):not(.s-banner):not(.s-form) {
    margin-top: calc(var(--layout-v-padding) / -2);
  }

  .l-section.--pad-white:not(.py-0):not(.s-banner):not(.s-form) + .l-section.--pad-white:not(.py-0):not(.s-banner):not(.s-form) .l-section__inner,
  .l-section.--pad-transparent:not(.py-0):not(.s-banner):not(.s-form) + .l-section.--pad-white:not(.py-0):not(.s-banner):not(.s-form) .l-section__inner,
  .l-section.--pad-white:not(.py-0):not(.s-banner):not(.s-form) + .l-section.--pad-transparent:not(.py-0):not(.s-banner):not(.s-form) .l-section__inner,
  .l-section.--pad-transparent:not(.py-0):not(.s-banner):not(.s-form) + .l-section.--pad-transparent:not(.py-0):not(.s-banner):not(.s-form) .l-section__inner {
    padding-top: calc(var(--layout-v-padding) / 2);
  }
}

@media (max-width: 991px) {
  .bvi-body[data-bvi-fontsize][data-bvi-theme] .m-phones_mobile > a {
    font-size: 0 !important;
  }

  .m-phones_mobile > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.375rem;
    height: 2.375rem;
    font-size: 0;
    transition: color 0.2s;
  }

  .m-phones_mobile > a:hover {
    color: var(--a-color_link);
  }

  .m-phones_mobile > a:not(:first-child) {
    display: none;
  }

  .m-phones_mobile > a .icon-sprite {
    width: 1.25rem;
    height: 1.25rem;
  }

  .s-banner--red-white {
    color: var(--a-color_white);
  }

  .s-banner--red-white .l-section__inner {
    background-color: var(--a-color_red);
  }

  .s-banner--red-white .s-banner__title {
    color: inherit;
  }

  .s-banner--red-white .s-banner__description {
    color: inherit;
  }

  .s-banner--red-white .s-banner__btn {
    color: var(--a-color_red);
    background-color: var(--a-color_white);
  }

  .s-banner--red-white .s-banner__btn:hover {
    color: var(--a-color_dark);
    background-color: var(--a-color_yellow);
    border-color: var(--a-color_yellow);
  }

  .s-quiz--bg-red-white {
    color: var(--a-color_white);
  }

  .s-quiz--bg-red-white .l-section__inner {
    background-color: var(--a-color_red);
  }

  .s-quiz--bg-red-white .s-quiz__title {
    color: inherit;
  }

  .s-quiz--bg-red-white .s-quiz__subtitle {
    color: inherit;
  }

  .s-quiz--bg-red-white .s-quiz__description {
    color: inherit;
  }

  .s-quiz--bg-red-white .s-quiz__btn {
    color: var(--a-color_red);
    background-color: var(--a-color_white);
  }

  .s-quiz--bg-red-white .s-quiz__btn:hover {
    color: var(--a-color_dark);
    background-color: var(--a-color_yellow);
    border-color: var(--a-color_yellow);
  }
}

@media (max-width: 768px) {
  .m-form__btn {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .s-header.--visible-search .s-header__logo {
    display: none;
  }
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}

@media (max-width: 575px) {
  .is-scrolled .s-header__main .m-level-nav {
    display: none;
  }

  .is-scrolled .s-header__logo {
    overflow: hidden;
    width: 2rem;
    margin-right: 0;
  }

  .is-scrolled .s-header__tools .m-phones {
    display: none;
  }

  .is-scrolled .s-header__burger {
    height: 1.875rem;
  }

  .is-scrolled .s-header__search {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .m-nav-contacts__section_feedback {
    grid-column: 2;
    margin-top: -3.125rem;
  }

  .m-nav-contacts__section_feedback .a-button {
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .m-faculty__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}

@media screen {
  .px-0 {
    padding-right: 0;
    padding-left: 0;
  }

  .py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .pb-0 {
    padding-bottom: 0;
  }

  .pt-0 {
    padding-top: 0;
  }

  .br-0 {
    border-radius: 0;
  }

  .a-font_xxs {
    font-size: 0.625rem;
    line-height: 0.625rem;
  }

  .a-font_xxs-m {
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 0.625rem;
  }

  .s-header-menu .l-section__inner {
    border-radius: 0 0 1.25rem 1.25rem;
  }

  .s-quiz .l-section__inner {
    display: flex;
    padding: 0 var(--layout-h-padding);
    border-radius: 0;
  }
}
/*# sourceMappingURL=maps/global.css.map */
