@charset "UTF-8";

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

:root {
  --a-color_text: #11253d;
  --a-color_thumbnail: #cfd3d8;
  --a-color_green: #8cb40f;
  --a-color_orange: #fa821e;
  --a-color_active: #a0a8b1;
  --a-color_text--secondary: #707c8b;
  --a-color_bg: #fff;
  --a-color_bg--secondary: #f5f5f5;
  --colorSliderDefault: #dee0e3;
  --colorSliderActive: #b1b7be;
  --a-borderRadius--default: 4px;
  --a-borderRadius--bg: 10px;
  --a-borderRadius--x8: 8px;
  --a-borderRadius--x12: 12px;
  --a-borderRadius--x16: 16px;
  --a-borderRadius--x20: 20px;
  --a-borderRadius--x24: 24px;
  --a-borderRadius--x32: 32px;
}

/*
    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;
}

.grecaptcha-badge { visibility: hidden; }

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

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

@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 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

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

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

.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-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.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-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  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%;
  height: var(--swiper-centered-offset-after);
}

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

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

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

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

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

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

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

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

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

/**
 * Restore the focus styles unset by the previous rule.
 */

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

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

h1,
.a-font_h1 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 2.5rem;
}

h2,
.a-font_h2 {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 2rem;
}

h3,
.a-font_h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.875rem;
}

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

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

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

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

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

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

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

.a-font_xs {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

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

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

html,
body {
  height: 100%;
  min-width: 20rem;
}

body {
  overflow: unset;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: var(--a-color_text);
  -webkit-text-size-adjust: 100%;
  background-color: var(--a-color_bg--secondary);
}

body._active {
  overflow: hidden;
}

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

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

:root {
  --layout-width: 81.25rem;
  --layout-padding: 2rem;
  --layout-h-padding: 1rem;
  --layout-v-padding: 2rem;
}

.wrapper {
  overflow: hidden;
  max-width: 120rem;
  margin: 0 auto;
  /* Works on Chrome, Edge, and Safari */
}

.wrapper * {
  scrollbar-width: thin;
  scrollbar-color: var(--a-color_thumbnail) var(--a-color_bg--secondary);
}

.wrapper *::-webkit-scrollbar {
  cursor: pointer;
  width: 0.25rem;
}

.wrapper *::-webkit-scrollbar-track {
  background: var(--a-color_bg--secondary);
}

.wrapper *::-webkit-scrollbar-thumb {
  border-radius: 0.625rem;
  background-color: var(--a-color_thumbnail);
}

.l-wide {
  --layout-width: 78.375rem;
  width: 100%;
  max-width: var(--layout-width);
  margin: 0 auto;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
}

table th,
table td {
  padding: 1rem;
}

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

.l-section__wrapper.py-0 .swiper-pagination {
  margin: 1rem 0;
}

.swiper-pagination-bullet {
  width: 100%;
  height: 0.25rem;
  max-width: unset;
  max-width: 3.75rem;
  margin: 0 0.4375rem;
  background: var(--colorSliderDefault);
  border-radius: var(--a-borderRadius--default);
  opacity: 1;
  flex: 1;
}

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

.swiper-pagination-bullet-active,
.swiper-pagination-bullet-active:hover {
  cursor: default;
  background: var(--colorSliderActive);
}

.s-branches-info__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 var(--a-padding--x4);
  font-weight: 700;
  color: var(--a-color_bg);
  border: 0;
  border-radius: 2.1875rem;
  transition: 0.5s all ease;
}

.s-branches-info__button--orange {
  background-color: var(--a-color_orange);
}

.s-branches-info__button--green {
  background-color: var(--a-color_green);
}

.m-0 {
  margin: 0;
}

.icon-logo {
  background-image: url("../img/sprite.png");
  background-position: 0px 0px;
  background-repeat: no-repeat;
  width: 300px;
  height: 70px;
}

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

.ico-mono-check {
  width: 1.2em;
  height: 1em;
  fill: #fff;
}

.l-section {
  margin: var(--a-padding--x2) 0;
  border-radius: var(--a-borderRadius--x20);
}

.l-section--school {
  margin: 0 !important;
}

.l-section--school .l-section__wrapper {
  background-color: transparent;
}

.l-section--school .l-section__title {
  text-align: center;
}

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

.l-section__outer {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--a-borderRadius--x16);
}

.l-section__wrapper {
  overflow: hidden;
  padding: var(--layout-v-padding) var(--layout-h-padding);
  border-radius: var(--a-borderRadius--x20);
  background-color: var(--a-color_bg);
}

.l-section__wrapper.border-0 {
  border-radius: 0;
}

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

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

.l-section__text img {
  margin-bottom: 1rem;
}

.l-section__text a {
  color: var(--a-color_green);
}

.l-section__text a strong {
  color: var(--a-color_green);
}

.l-section__text h2,
.l-section__text h3,
.l-section__text h4,
.l-section__text h5,
.l-section__text strong {
  color: var(--a-color_orange);
}

.l-section__text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2rem;
}

.--bg-color--transparent {
  background-color: transparent;
}

.m-title .l-section__title {
  margin: 0;
  color: var(--a-color_green);
}

.m-title__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 2.5rem;
  margin-top: 1rem;
  padding: 0 var(--a-padding--x4);
  font-weight: 700;
  color: var(--a-color_bg);
  border: 0;
  border-radius: 2.1875rem;
  transition: 0.5s all ease;
  background-color: var(--a-color_orange);
}

.m-card {
  cursor: pointer;
  transition: 0.5s all ease;
}

.m-card__img {
  display: block;
  margin-bottom: 1rem;
}

.m-card__img img {
  width: 100%;
  height: auto;
  border-radius: var(--a-borderRadius--x16);
}

.m-card__date {
  margin-bottom: 0.5rem;
  color: var(--a-color_active);
}

.m-card:hover {
  opacity: 0.7;
}

.accordion-item {
  cursor: pointer;
  width: 100%;
}

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

.accordion-item__question {
  display: flex;
  justify-content: space-between;
  padding: var(--a-padding--x5) 0;
}

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

.accordion-item__question-icons {
  color: var(--a-color_active);
}

.accordion-item__question-icons svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.accordion-item.is-active .accordion-item__question {
  padding: var(--a-padding--x5) 0 var(--a-padding--x4);
}

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

.accordion-item.is-active .accordion-item__answer {
  display: block;
}

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

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

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

.accordion-item__answer-text b {
  font-weight: 700;
}

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

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

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

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

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

.m-card-video {
  display: block;
  height: auto;
  padding: var(--a-padding--x4);
  border-radius: var(--a-borderRadius--x20);
  background-color: var(--a-color_bg--secondary);
}

.m-card-video__box {
  overflow: hidden;
  position: relative;
  margin-bottom: 0.75rem;
  border-radius: var(--a-borderRadius--x16);
}

.m-card-video__button {
  cursor: pointer;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  border: 0;
  background-color: transparent;
  content: "";
  outline: none;
}

.m-card-video__button span {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='56' height='56' rx='28' fill='%23FF0040'/%3E%3Cpath d='M35.253 29.973c-.089.09-.423.48-.734.799-1.826 2.01-6.588 5.3-9.08 6.304-.379.162-1.336.503-1.847.525-.49 0-.957-.112-1.403-.341a2.936 2.936 0 0 1-1.245-1.417c-.157-.412-.401-1.645-.401-1.667-.245-1.349-.379-3.54-.379-5.963 0-2.307.134-4.41.334-5.78.023-.021.267-1.553.534-2.078.49-.959 1.447-1.554 2.471-1.554h.09c.666.023 2.069.619 2.069.64 2.358 1.006 7.01 4.135 8.88 6.214 0 0 .526.534.755.868.357.48.534 1.073.534 1.667 0 .663-.2 1.28-.578 1.783Z' fill='%23fff'/%3E%3C/svg%3E");
}

.m-card-video__img {
  width: 100%;
  max-height: 8.75rem;
  min-height: 100%;
  border-radius: var(--a-borderRadius--bg);
  object-fit: cover;
}

.m-card-video__title {
  font-weight: 700;
  color: var(--a-color_orange);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style-type: none;
  flex-wrap: wrap;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item::before {
  position: relative;
  left: -0.25rem;
  content: "→";
}

.breadcrumb__item:not(:last-child) {
  padding-right: 0.625rem;
}

.breadcrumb__item:first-child::before {
  content: "";
}

.s-breadcrumbs .l-section__wrapper {
  padding: var(--a-padding--x2) var(--layout-h-padding);
}

.form-def {
  height: fit-content;
  padding: 1.25rem 0.9375rem;
  background-color: var(--a-color_bg);
}

.form-def__title {
  margin-bottom: 1.25rem;
}

.form-def__inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.form-def__field {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  margin-bottom: 1.25rem;
}

.form-def__field_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-def__input {
  display: block;
  width: 100%;
  min-height: 3rem;
  margin: 0;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: none;
  border: 0.0625rem solid var(--a-color_thumbnail);
  transition: 0.2s;
}

.form-def__input:focus {
  border-color: var(--a-color_text--secondary);
  outline: none;
}

.form-def__input.error,
.form-def__input.error:focus {
  border-color: red;
}

.form-def__input::placeholder {
  color: var(--a-color_text);
}

.form-def__button {
  cursor: pointer;
  width: 100%;
  height: 3rem;
  max-width: max-content;
  border: none;
  transition: 0.2s;
}

.form-def__button .a-button__label {
  white-space: nowrap;
}

.form-def__button:hover {
  opacity: 0.8;
}

.form-def__privacy {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 2.5rem;
}

.form-def__privacy-checkbox,
.form-def__privacy-ico {
  width: 1rem;
  height: 1rem;
}

.form-def__privacy-checkbox {
  z-index: 1;
  cursor: pointer;
  position: absolute;
  display: block;
  opacity: 0;
}

.form-def__privacy-ico {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.25rem 0.5rem 0 0;
  border: 0.0625rem solid var(--a-color_text--secondary);
  border-radius: 0.125rem;
  flex: none;
  background-color: var(--a-color_text--secondary);
}

.form-def__privacy-ico svg {
  width: 0.75rem;
  opacity: 0;
}

.form-def__privacy-checkbox:checked ~ .form-def__privacy-ico {
  border-color: var(--a-color_text--secondary);
  background-color: var(--a-color_text--secondary);
}

.form-def__privacy-checkbox:checked ~ .form-def__privacy-ico svg {
  opacity: 1;
}

.form-def__privacy-text {
  display: block;
  color: var(--a-color_text);
}

.form-def__privacy-text a {
  cursor: pointer;
  color: var(--a-color_text--secondary);
}

.s-header {
  --logoMarginRight: 16px;
  z-index: 8;
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.s-header__bottom-buttons {
  display: none;
}

.s-header._active {
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.s-header._active .s-header__bottom {
  display: flex;
  flex-direction: column;
  overflow: scroll;
  height: 80vh;
}

.s-header._active .s-header__bottom-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.s-header .l-wide {
  padding: 0 var(--layout-h-padding);
}

.s-header__main {
  border-radius: 0;
  border-bottom: 0.0625rem solid transparent;
}

.s-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--a-padding--x4) 0;
  flex-wrap: wrap;
}

.s-header__logo {
  display: block;
  flex: none;
}

.s-header__logo img {
  display: block;
  width: auto;
  object-fit: contain;
}

.s-header__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.s-header__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 2.5rem;
  padding: 0 1.5rem;
  color: var(--a-color_bg);
  border: 0.125rem solid var(--a-color_green);
  transition: 0.5s all ease-in-out;
  background-color: transparent;
}

.s-header__button:hover {
  background-color: var(--a-color_green);
}

.s-header__menu {
  display: none;
  align-items: center;
  padding: var(--a-padding--x2) 0;
  list-style: none;
  gap: 0.3125rem;
}

.s-header__menu._active {
  display: flex;
  flex-direction: column;
}

.s-header__menu._active .s-header__menu-item {
  padding: 0 0 var(--a-padding--x2);
}

.s-header__menu._active .s-header__menu-item._open ul {
  position: relative;
  top: 0;
  display: block;
}

.s-header__menu._active .s-header__menu-item ul {
  display: none;
}

.s-header__menu._active .s-header__menu-sub._open ul {
  position: relative;
  top: 0.3125rem;
  display: block;
}

.s-header__menu-sub._open::after {
  display: none;
}

.s-header__menu-sub::after {
  position: absolute;
  right: -0.6875rem;
  display: inline-block;
  margin-left: 0.1875rem;
  border: 0.1875rem solid transparent;
  content: "";
  border-right: 0.1875rem solid var(--a-color_orange);
  border-bottom: 0.1875rem solid var(--a-color_orange);
}

.s-header__menu-item {
  position: relative;
  padding: 0 0 var(--a-padding--x4);
}

.s-header__menu-item ul {
  position: absolute;
  top: 2.5rem;
  left: 0;
  display: none;
  min-width: 17.5rem;
  margin: 0;
  padding: 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.6);
  list-style: none;
}

.s-header__menu-item ul li._active {
  color: var(--a-color_orange);
}

.s-header__menu-item ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--a-padding--x2);
  color: var(--a-color_bg);
}

.s-header__menu-item ul a:hover {
  color: var(--a-color_bg);
  background: #8cb40f;
}

.s-header__menu-item:hover ul {
  z-index: 10;
  display: block;
}

.s-header__menu-link {
  position: relative;
  font-weight: 700;
  text-decoration: none;
  color: var(--a-color_bg);
}

.s-header__menu-link._active {
  color: var(--a-color_orange);
}

.s-header__toggle {
  z-index: 100;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  text-align: center;
  color: #fff;
  border: 0;
  background-color: transparent;
}

.s-header__toggle > span {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 2px;
  background: #fff;
  vertical-align: middle;
}

.s-header__toggle > span:before,
.s-header__toggle > span:after {
  position: absolute;
  display: inline-block;
  height: 2px;
  background: #fff;
  transition: all 200ms;
  content: "";
}

.s-header__toggle > span:before {
  top: -11px;
  left: 3px;
  width: 28px;
}

.s-header__toggle > span:after {
  top: 11px;
  left: 6px;
  width: 22px;
}

.s-header__toggle:focus {
  outline: none;
}

.s-header__toggle:hover > span:after,
.s-header__toggle:hover > span:before {
  left: 0;
  width: 34px;
}

.s-header__toggle._active > span {
  height: 0;
}

.s-header__toggle._active > span:after,
.s-header__toggle._active > span:before {
  top: 0px;
  left: 0;
  width: 34px;
}

.s-header__toggle._active > span:after {
  transform: rotate(-45deg);
}

.s-header__toggle._active > span:before {
  transform: rotate(45deg);
}

.s-footer {
  overflow: hidden;
  color: var(--a-color_bg);
  background-color: var(--a-color_green);
}

.s-footer__wrapper {
  padding: 1rem;
}

.s-footer__main {
  display: grid;
  width: 100%;
  margin: 0 0 2rem;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;
}

.s-footer__item {
  margin-bottom: 1.5rem;
}

.s-footer__item-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.s-footer__item-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.s-footer__item-link {
  display: block;
  font-weight: 700;
  transition: all 0.5s;
}

.s-footer__item-link:hover {
  opacity: 0.8;
}

.s-footer__info {
  margin-bottom: 2rem;
}

.s-footer__info-address {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.s-footer__info-address svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.625rem;
  flex: none;
}

.s-footer__info-phone {
  font-weight: 700;
}

.s-footer__policy {
  display: flex;
  width: 100%;
  margin: 1.25rem 0 0;
  flex-direction: column;
}

.s-footer__policy-link {
  cursor: pointer;
  color: var(--a-color_bg);
  transition: all 0.5s;
}

.s-footer__policy-link:hover {
  opacity: 0.8;
}

.s-footer__follow {
  margin-top: 1.5625rem;
}

.s-footer__follow-title {
  margin-bottom: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.s-footer__follow-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.s-footer__follow-item {
  display: block;
  transition: all 0.5s;
}

.s-footer__follow-item:hover {
  opacity: 0.7;
}

.s-footer__follow-item img {
  width: 1.5rem;
  height: 1.5rem;
}

.s-popup {
  display: none;
  width: 100%;
  max-width: 62.5rem;
  padding: 0;
  background-color: transparent;
}

.s-popup-langs {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.s-popup-langs__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 3.75rem;
}

.s-popup__region,
.s-popup__language {
  color: var(--a-color_orange);
}

.s-popup__title {
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  color: var(--a-color_green);
  border-bottom: 0.125rem solid var(--a-color_green);
}

.s-popup__list {
  display: flex;
  color: var(--a-color_bg);
  flex-direction: column;
  gap: 0.75rem;
}

.s-popup__item._active {
  color: var(--a-color_orange);
}

.s-popup__item:hover {
  color: var(--a-color_orange);
}

.s-form .l-section__wrapper {
  background-color: #f8f9fd;
}

.s-form .form-def {
  display: flex;
  padding: 0;
  flex-direction: column;
  background-color: #f8f9fd;
}

.s-form .form-def__inner {
  display: grid;
  background-color: #f8f9fd;
  grid-template-columns: repeat(1, 1fr);
}

.s-form .form-def__input {
  width: -webkit-fill-available;
}

.s-form .form-def__input::placeholder {
  color: var(--a-color_active);
}

.s-form .form-def__field_btn {
  justify-content: start;
}

.s-form .form-def__button {
  max-width: max-content;
  padding-right: var(--a-padding--x5);
  padding-left: var(--a-padding--x5);
}





.floating-buttons.floating-right.svelte-1fjrz0p.svelte-1fjrz0p {
    right: 16px;
}

.floating-buttons.svelte-1fjrz0p.svelte-1fjrz0p {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 16px;
}

.floating-buttons.svelte-1fjrz0p .floating-buttons-icon.svelte-1fjrz0p:last-child {
    margin-bottom: 0;
}

.floating-buttons.svelte-1fjrz0p .floating-buttons-icon.svelte-1fjrz0p {
    background-color: #ffffff;
    margin-bottom: 12px;
    box-shadow: 3px 8px 20px rgba(32, 83, 184, 0.2);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

a.svelte-1fjrz0p.svelte-1fjrz0p {
    color: #0055ff;
    text-decoration: none;
    background-color: transparent;
}

.floating-buttons.svelte-1fjrz0p .floating-buttons-icon img.svelte-1fjrz0p {
    width: 36px;
    height: 36px;
}


img.svelte-1fjrz0p.svelte-1fjrz0p {
    vertical-align: middle;
    border-style: none;
}



.loader {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
  display: none;
  animation: rotate 1s linear infinite
}
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
  100%   {transform: rotate(360deg)}
}
.s-intro__form-button[disabled] span {
  display: none;
}
.s-intro__form-button[disabled] .loader {
  display: block;
}
.m-form__button[disabled] span {
  display: none;
}
.m-form__button[disabled] .loader {
  display: block;
}
@keyframes prixClipFix {
  0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
  25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
  50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
  75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
  100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}

@media (min-width: 575px) {
  .swiper-pagination-bullet {
    max-width: 6.875rem;
  }

  .form-def__button {
    max-width: 17.5rem;
  }

  .s-footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 600px) {
  .m-card-video__img {
    max-height: 8.75rem;
  }
}

@media screen and (min-width: 768px) {
  :root {
    --layout-h-padding: 1.875rem;
  }

  .l-section {
    margin: var(--a-padding--x4) 0;
  }

  .s-header .l-section--full {
    padding: 0 var(--layout-h-padding);
  }

  .s-header__container {
    padding: 0.75rem 0;
  }
}

@media (min-width: 768px) {
  .l-section__text {
    margin-bottom: 2rem;
  }

  .l-section__text img {
    margin-bottom: 1.25rem;
  }

  .s-footer {
    padding: var(--layout-v-padding) var(--layout-h-padding);
  }

  .s-footer__main {
    grid-template-columns: repeat(3, 1fr);
  }

  .s-footer__item-title {
    margin-bottom: 1.25rem;
  }

  .s-footer__item-list {
    gap: 1rem;
  }

  .s-footer__info-address {
    margin-bottom: 1.25rem;
  }

  .s-footer__policy {
    justify-content: space-between;
    margin: 0;
    flex-direction: row;
  }

  .s-footer__follow-title {
    margin-bottom: 1rem;
  }

  .s-footer__follow-item img {
    width: 2rem;
    height: 2rem;
  }

  .s-popup-langs__wrapper {
    flex-direction: row;
  }

  .s-form .form-def__inner {
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 992px) {
  h1,
  .a-font_h1 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  h2,
  .a-font_h2 {
    font-size: 3rem;
    line-height: 3.5rem;
  }

  h3,
  .a-font_h3 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }

  h4,
  .a-font_h4 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  h5,
  .a-font_h5 {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }

  h6,
  .a-font_h6 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .a-font_xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .a-font_l {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .a-font_m {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

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

  .l-section__text h2 {
    font-size: 3rem;
    line-height: 3.5rem;
  }

  .s-header__menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    flex-direction: row;
  }

  .s-header__menu-item ul {
    background: var(--a-color_bg);
  }

  .s-header__menu-item ul a {
    display: block;
    color: var(--color_active);
  }

  .s-header__menu-item ul a {
    padding: var(--a-padding--x3);
  }
}

@media (min-width: 992px) {
  .swiper-pagination-bullet {
    max-width: 12.5rem;
  }

  .accordion-item__question {
    padding: var(--a-padding--x6) 0;
  }

  .accordion-item.is-active .accordion-item__question {
    padding: var(--a-padding--x6) 0 var(--a-padding--x5);
  }

  .accordion-item__answer {
    padding: 0 0 var --a-padding--x5;
  }

  .m-card-video {
    padding: var(--a-padding--x6);
  }

  .m-card-video__button {
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .m-card-video__button span {
    width: 3.5rem;
    height: 3.5rem;
  }

  .form-def {
    padding: 1.5625rem 3.125rem 4.375rem;
  }

  .form-def__title {
    margin-bottom: 2.5rem;
  }

  .form-def__button {
    max-width: unset;
  }

  .s-header {
    position: relative;
  }

  .s-header._active .s-header__bottom {
    display: none;
  }

  .s-header__toggle {
    display: none;
  }
}

@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-h-padding: 3rem;
    --layout-v-padding: 3.75rem;
  }

  .l-section {
    margin: var(--a-padding--x10) 0;
  }

  .l-section__wrapper {
    margin: 0 var(--a-padding--x8);
  }

  .accordion-item__answer-text ul li {
    margin: 0.75rem 0;
    padding-left: var(--a-padding--x5);
  }

  .accordion-item__answer-text ol li {
    margin: 0.75rem 0;
    padding-left: 0.625rem;
  }

  .s-header {
    --logoMarginRight: 24px;
  }

  .s-header__container {
    padding: var(--a-padding--x4) 0;
  }

  .s-header__logo {
    margin-right: var(--logoMarginRight);
  }

  .s-header__logo img {
    width: 15.625rem;
  }
}

@media (min-width: 1200px) {
  .l-section__title {
    margin-bottom: 2.5rem;
  }

  .m-card-video__img {
    max-height: 10.625rem;
  }

  .s-footer {
    padding: var(--a-padding--x12) var(--a-padding--x8);
  }

  .s-footer__main {
    grid-template-columns: repeat(4, 1fr);
  }

  .s-footer__item {
    margin-bottom: 0;
  }
}

@media (min-width: 1440px) {
  .swiper-pagination-bullet {
    max-width: 15rem;
  }

  .s-branches-info__button {
    height: 3rem;
    padding: 0 var(--a-padding--x7);
  }

  .m-title__button {
    height: 3rem;
    padding: 0 var(--a-padding--x7);
  }

  .m-card-video__img {
    max-height: 12.5rem;
  }
}

@media screen and (min-width: 1440px) {
  .s-header {
    --logoMarginRight: 48px;
  }
}

@media all and (min-width: 1480px) {
  .l-wide {
    --layout-width: 92.5rem;
  }
}

@media screen and (max-width: 991px) {
  .s-header__menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .m-card-video__title {
    overflow: hidden;
    width: 15rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media (max-width: 767px) {
  .s-header__button-login {
    display: none;
  }
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}

@media (max-width: 609px) {
  .s-header__button-lang {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .s-header__logo img {
    width: 12.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .s-footer__item:last-child {
    grid-column: 1 / -1;
  }
}

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

  .s-header {
    border-radius: 0;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icon-logo {
    background-size: 300px 70px;
    background-image: url("../img/sprite@2x.png");
  }
}
/*# sourceMappingURL=maps/main.css.map */

.form-def__field .iti__tel-input {
  line-height: 3;
}

.form-def__field .iti {
  width: 100%;
}