@charset "UTF-8";

/* .main-header Пример
	background: rgba(#000, .5)
	@include sup('backdrop-filter: blur(1em)')
		background: rgba(#fff, .1)
		display: block */
.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

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

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

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

.carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel__slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: 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%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: .25;
  -webkit-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
  transition: opacity .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  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%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
  box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity .15s ease;
  -o-transition: opacity .15s ease;
  transition: opacity .15s ease;
}

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

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

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

.carousel__button[disabled] {
  cursor: default;
  opacity: .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;
  -webkit-filter: var(--carousel-button-svg-filter, none);
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  -ms-touch-action: none;
  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);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  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 {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.fancybox__container :focus {
  outline: thin dotted;
}

body.is-using-mouse .fancybox__container :focus {
  outline: 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__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;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

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

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

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  --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: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}

.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;
  -ms-flex-item-align: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 20;
}

.fancybox__caption {
  -ms-flex-item-align: center;
  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;
  -ms-flex-negative: 0;
  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;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}

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

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}

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

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}

.fancybox__content>.carousel__button.is-close {
  position: absolute;
  top: -36px;
  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%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -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 {
  -webkit-animation: fancybox-rotate 2s linear infinite;
  animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  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;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

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

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

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

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

.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 {
  -webkit-animation: .15s ease backwards fancybox-fadeIn;
  animation: .15s ease backwards fancybox-fadeIn;
}

.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 {
  -webkit-animation: .15s ease both fancybox-fadeOut;
  animation: .15s ease both fancybox-fadeOut;
}

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
    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;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
  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: -webkit-grab;
  cursor: grab;
}

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

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

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

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

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

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

.fancybox__image {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: none;
  -o-transition: 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;
  -ms-touch-action: none;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  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;
  -ms-touch-action: none;
  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%;
  -o-object-fit: cover;
  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 {
  -ms-flex-negative: 1;
  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 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

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

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

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

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  opacity: 0;
  -webkit-transition: opacity .15s ease;
  -o-transition: opacity .15s ease;
  transition: opacity .15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

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

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

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

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

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}

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

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

.fancybox__toolbar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

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

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

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

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

*::-webkit-input-placeholder {
  color: #6D86C2;
}

*::-moz-placeholder {
  color: #6D86C2;
}

*:-ms-input-placeholder {
  color: #6D86C2;
}

*::-ms-input-placeholder {
  color: #6D86C2;
}

*::placeholder {
  color: #6D86C2;
}

*:-ms-input-placeholder,
*::-ms-input-placeholder {
  color: #6D86C2;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: #666;
}

body input:required:valid,
body textarea:required:valid {
  color: #666;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: #F1F1F1;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #C1C1C1;
  border: 3px solid #F1F1F1;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --padding: 20px;
  --max-width: 1230px;
  --max-width2: 1080px;
}

@media only screen and (max-width: 992px) {
  :root {
    --padding: 15px;
  }
}

[class$='__container'],
[class$='--container'] {
  width: calc(min(100% - (var(--padding) * 2), var(--max-width)));
  margin-inline: auto;
}

.edge-sect__container,
.faq-sect__container,
.phone-sect__container,
.policy-sect__container,
.subs-sect__container {
  width: calc(min(100% - (var(--padding) * 2), var(--max-width2)));
  margin-inline: auto;
}

html {
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.4;
  font-family: -apple-system, BlinkMacSystemFont, "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
  font-weight: normal;
  opacity: 1;
  color: #6D86C2;
  height: auto;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
  margin: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  margin: 0;
}

label {
  margin: 0;
  font-weight: normal;
}

a,
input,
select,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

a {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

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

a,
button,
.def-btn,
.sw-title {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-tap-highlight-color: transparent !important;
}

a:hover,
a:active,
button:hover,
button:active,
.def-btn:hover,
.def-btn:active,
.sw-title:hover,
.sw-title:active {
  outline: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-tap-highlight-color: transparent !important;
}

.hidden {
  display: none;
}

[class$='--nowrap'] {
  white-space: nowrap;
}

[class$='--upper'] {
  text-transform: uppercase;
}

.block-anim {
  opacity: 0;
  -webkit-animation: leftRightOpacityAnim 1s ease-out forwards;
  animation: leftRightOpacityAnim 1s ease-out forwards;
  -webkit-animation-delay: calc((var(--d) / 10) * 1s);
  animation-delay: calc((var(--d) / 10) * 1s);
}

.showLeft {
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
}

@media only screen and (max-width: 992px) {
  .showLeft {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.showRight {
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  transform: translateX(100px);
}

@media only screen and (max-width: 992px) {
  .showRight {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.show-block {
  opacity: 0;
  -webkit-animation: showAnim 1s ease-out forwards;
  animation: showAnim 1s ease-out forwards;
  -webkit-animation-delay: calc((var(--d) / 10) * 1s);
  animation-delay: calc((var(--d) / 10) * 1s);
}

.bubble-anim {
  -webkit-animation: bubbleAnim calc(var(--d) * 1s) infinite linear alternate;
  animation: bubbleAnim calc(var(--d) * 1s) infinite linear alternate;
}

@-webkit-keyframes showAnim {
  to {
    opacity: 1;
  }
}

@keyframes showAnim {
  to {
    opacity: 1;
  }
}

@-webkit-keyframes opacityAnim {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes opacityAnim {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes leftRightOpacityAnim {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes leftRightOpacityAnim {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes bubbleAnim {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(calc(var(--y) * 1px));
    transform: translateY(calc(var(--y) * 1px));
  }
}

@keyframes bubbleAnim {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(calc(var(--y) * 1px));
    transform: translateY(calc(var(--y) * 1px));
  }
}

.def-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 56px;
  border-radius: 50px;
  padding: 7px 20px 5px;
  line-height: normal;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  border: none;
  color: #fff;
  background-color: #7398F7;
  line-height: 1.1;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
}

.def-btn:focus {
  color: #fff;
}

.def-btn:hover,
.def-btn:active {
  color: #fff;
  background-color: #386BEE;
}

.def-title {
  font-size: 36px;
  font-weight: bold;
}

@media only screen and (max-width: 992px) {
  .def-title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .def-title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 576px) {
  .def-title {
    font-size: 24px;
  }
}

.menu-block {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7398F7;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 20px 35px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
}

.menu-block.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.menu-block::-webkit-scrollbar {
  width: 8px;
}

.menu-block::-webkit-scrollbar-track {
  background-color: #F1F1F1;
}

.menu-block::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #C1C1C1;
  border: none;
}

.menu-block__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.menu-block__close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  background-color: transparent;
  padding: 2px;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.menu-block__nav {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 40px 0;
  margin: auto 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 38px;
  font-size: 22px;
  line-height: 1.54545em;
  font-weight: 600;
}

.menu-block__nav a {
  color: #fff;
}

.menu-block__nav a:focus {
  color: #fff;
}

.menu-block__nav a:hover,
.menu-block__nav a:active {
  color: #fff;
}

.menu-block__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
}

.menu-block__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.menu-block__logo img {
  display: inline-block;
  height: auto;
  block-size: auto;
}

.menu-block .main-sect__logos {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

.sw-title {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sw-content {
  display: none;
}

.about-sect {
  padding: 70px 0 50px;
}

@media only screen and (max-width: 992px) {
  .about-sect {
    padding: 30px 0 40px;
  }
}

@media only screen and (max-width: 576px) {
  .about-sect {
    padding: 20px 0 35px;
  }
}

.about-sect__text {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  font-size: 22px;
  line-height: 2.18182em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 55px;
}

@media only screen and (max-width: 992px) {
  .about-sect__text {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .about-sect__text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 360px) {
  .about-sect__text {
    font-size: 15px;
  }
}

.about-sect__text:last-child {
  margin-bottom: 0;
}

.about-sect__text strong {
  color: #1771F1;
}

.about-sect__text span {
  display: inline-block;
  color: #142372;
  padding: 0 10px;
  border: 2px solid #1771F1;
  border-radius: 50px;
}

@media only screen and (max-width: 576px) {
  .about-sect__text span {
    line-height: 1.9;
  }
}

.about-sect__text [data-select] {
  color: #fff;
  border: none;
  background-color: #7398F7;
}

@media only screen and (max-width: 360px) {
  .about-sect__text [data-select] {
    font-size: 0.93333em;
  }
}

.about-sect__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

@media only screen and (max-width: 768px) {
  .about-sect__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
}

.about-sect__content:last-child {
  margin-bottom: 0;
}

.about-sect__left,
.about-sect__right {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (max-width: 768px) {

  .about-sect__left,
  .about-sect__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

.about-sect__left {
  padding-top: 20px;
}

@media only screen and (max-width: 768px) {
  .about-sect__left {
    padding-top: 0;
  }
}

.about-sect__left-title {
  color: #7398F7;
  font-size: 22px;
  line-height: 1.13636em;
  font-weight: 600;
}

@media only screen and (max-width: 992px) {
  .about-sect__left-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .about-sect__left-title {
    font-weight: 500;
    text-align: center;
    font-size: 18px;
    padding-top: 0;
  }
}

@media only screen and (max-width: 576px) {
  .about-sect__left-title {
    font-size: 16px;
    font-weight: 400;
  }
}

@media only screen and (max-width: 480px) {
  .about-sect__left-title {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .about-sect__left-title br {
    display: none;
  }
}

.about-sect__card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 345px;
  flex: 0 0 345px;
  -ms-flex-item-align: center;
  align-self: center;
  height: 520px;
  border-radius: 40px;
  background-color: #E7EEFF;
  padding: 20px 35px 30px;
}

@media only screen and (max-width: 992px) {
  .about-sect__card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 270px;
    flex: 0 0 270px;
    padding: 20px 25px 30px;
    height: auto;
  }
}

@media only screen and (max-width: 768px) {
  .about-sect__card {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 270px;
    margin-bottom: 12px;
  }
}

.about-sect__card-title {
  display: block;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  font-size: 67px;
  font-weight: 600;
}

@media only screen and (max-width: 992px) {
  .about-sect__card-title {
    font-size: 44px;
  }
}

.about-sect__card-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .about-sect__card-img {
    margin-bottom: 24px;
  }
}

.about-sect__card-img:last-child {
  margin-bottom: 0;
}

.about-sect__card-img>img {
  display: inline-block;
  height: auto;
  block-size: auto;
  width: 100%;
}

.about-sect__card-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 57px;
  height: 57px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translate(-20%, 20%);
  -ms-transform: translate(-20%, 20%);
  transform: translate(-20%, 20%);
  color: #7398F7;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
}

@media only screen and (max-width: 992px) {
  .about-sect__card-share {
    width: 46px;
    height: 46px;
  }
}

.about-sect__card-share svg {
  fill: currentColor;
}

.about-sect__card-share:focus {
  color: #7398F7;
}

.about-sect__card-share:hover,
.about-sect__card-share:active {
  color: #142372;
}

.about-sect__card-text {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  color: #7398F7;
}

@media only screen and (max-width: 992px) {
  .about-sect__card-text {
    font-size: 16px;
    font-weight: 500;
  }
}

.about-sect__right {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 40px;
  gap: 30px;
}

@media only screen and (max-width: 992px) {
  .about-sect__right {
    padding-left: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .about-sect__right {
    gap: 20px;
  }
}

.about-sect__info {
  padding: 10px 16px 11px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: #E7EEFF;
  border-radius: 50px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-size: 18px;
}

@media only screen and (max-width: 992px) {
  .about-sect__info {
    font-size: 14px;
    padding: 8px 14px 9px 16px;
    gap: 6px;
  }
}

.about-sect__info>span {
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
  font-weight: 600;
  color: #7398F7;
}

.about-sect__info-text {
  margin-right: 3px;
  font-size: 1.16667em;
  line-height: 1.47619em;
  font-weight: 500;
  color: #142372;
}

@media only screen and (max-width: 992px) {
  .about-sect__info-text {
    margin-right: 0;
  }
}

.about-sect__info-help {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

.about-sect__info-help a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.about-sect__info-help:hover .about-sect__info-desc {
  opacity: 1;
  pointer-events: all;
}

.about-sect__info-desc {
  position: absolute;
  z-index: 1;
  bottom: calc(100% + 10px);
  right: -26px;
  color: #fff;
  background-color: #142372;
  width: 15.71429em;
  padding: 19px 16px;
  font-size: 0.77778em;
  line-height: 1.28571em;
  border-radius: 30px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
}

.about-sect__info-desc::before {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  right: 26px;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-top: 10px solid #142372;
  border-left: 10px solid transparent;
}

.about-sect__desc {
  margin-bottom: 10px;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  font-weight: 500;
  line-height: 1.625em;
}

@media only screen and (max-width: 768px) {
  .about-sect__desc {
    margin-bottom: 45px;
  }
}

.about-sect__desc:last-child {
  margin-bottom: 0;
}

.about-sect__desc>*+* {
  margin-top: 10px;
}

.about-sect__desc>* {
  max-width: 50%;
}

@media only screen and (max-width: 992px) {
  .about-sect__desc>* {
    max-width: 65%;
  }
}

@media only screen and (max-width: 768px) {
  .about-sect__desc>* {
    max-width: 100%;
  }
}

.about-sect__desc strong {
  font-weight: 600;
  color: #1771F1;
}

.about-sect__serv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .about-sect__serv {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

@media only screen and (max-width: 576px) {
  .about-sect__serv {
    gap: 10px;
  }
}

.about-sect__serv-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

@media only screen and (max-width: 768px) {
  .about-sect__serv-icons {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
  }
}

.about-sect__serv-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  padding: 4px;
}

@media only screen and (max-width: 576px) {
  .about-sect__serv-icon {
    padding: 0;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: unset;
    height: unset;
  }
}

.about-sect__serv-icon img {
  display: inline-block;
  height: auto;
  block-size: auto;
  max-width: 100%;
  max-inline-size: 100%;
}

@media only screen and (max-width: 480px) {
  .about-sect__serv-icon img {
    width: 100%;
    max-width: 50px;
    max-inline-size: 50px;
  }
}

@media only screen and (max-width: 360px) {
  .about-sect__serv-icon img {
    max-width: 40px;
    max-inline-size: 40px;
  }
}

.about-sect__serv-text {
  font-size: 21px;
  line-height: 1.61905em;
  color: #142372;
  font-weight: 600;
  text-align: right;
}

@media only screen and (max-width: 992px) {
  .about-sect__serv-text {
    font-size: 19px;
  }
}

@media only screen and (max-width: 768px) {
  .about-sect__serv-text {
    font-size: 18px;
    text-align: center;
  }
}

@media only screen and (max-width: 360px) {
  .about-sect__serv-text {
    font-size: 16px;
  }
}

.about-sect__serv-text span {
  color: #7398F7;
  font-weight: 500;
}

.about-sect__serv-text strong {
  font-weight: 600;
  color: #1771F1;
}

.edge-sect {
  padding: 40px 0 35px;
}

@media only screen and (max-width: 992px) {
  .edge-sect {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 576px) {
  .edge-sect {
    padding: 45px 0;
  }
}

.edge-sect__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px 90px;
}

@media only screen and (max-width: 1270px) {
  .edge-sect__items {
    grid-gap: 55px 40px;
  }
}

@media only screen and (max-width: 992px) {
  .edge-sect__items {
    grid-gap: 45px 30px;
  }
}

@media only screen and (max-width: 576px) {
  .edge-sect__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }
}

.edge-sect__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (max-width: 768px) {
  .edge-sect__item {
    gap: 5px;
  }
}

@media only screen and (max-width: 576px) {
  .edge-sect__item {
    max-width: 350px;
  }
}

.edge-sect__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .edge-sect__item-icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 71px;
  }
}

.edge-sect__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  padding-left: 79px;
}

@media only screen and (max-width: 992px) {
  .edge-sect__item-content {
    gap: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .edge-sect__item-content {
    text-align: center;
    padding-left: 0;
    gap: 7px;
  }
}

.edge-sect__item-title {
  font-size: 22px;
  line-height: 1.04545em;
  font-weight: 600;
  color: #7398F7;
}

@media only screen and (max-width: 992px) {
  .edge-sect__item-title {
    font-size: 18px;
  }
}

.edge-sect__item-text {
  color: #142372;
  font-weight: 500;
  line-height: 1.625em;
}

@media only screen and (max-width: 992px) {
  .edge-sect__item-text {
    font-size: 14px;
  }
}

.faq-sect {
  padding: 35px 0;
}

@media only screen and (max-width: 992px) {
  .faq-sect {
    padding: 25px 0;
  }
}

.faq-sect__title {
  font-size: 28px;
  line-height: 1.14286em;
  font-weight: 600;
  margin-bottom: 25px;
  color: #142372;
}

@media only screen and (max-width: 992px) {
  .faq-sect__title {
    margin-bottom: 20px;
  }
}

.faq-sect__title span {
  color: #7398F7;
}

.faq-sect__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.faq-sect__item {
  border-bottom: 1px solid #8BB8F8;
  padding: 20px 0;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55556em;
}

@media only screen and (max-width: 992px) {
  .faq-sect__item {
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .faq-sect__item {
    font-size: 14px;
    padding: 15px 0;
  }
}

.faq-sect__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  color: #142372;
  cursor: pointer;
}

.faq-sect__item-title::after {
  content: '';
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.05556em;
  flex: 0 0 2.05556em;
  width: 2.05556em;
  height: 2.05556em;
  background-image: url(../img/icons/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

@media only screen and (max-width: 480px) {
  .faq-sect__item-title::after {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }
}

.faq-sect__item-title.active::after {
  background-image: url(../img/icons/minus.svg);
}

.faq-sect__item-text {
  padding-top: 20px;
  color: #1771f1;
  padding-right: calc(2em + 15px);
}

@media only screen and (max-width: 576px) {
  .faq-sect__item-text {
    padding-right: 0;
    padding-top: 15px;
  }
}

.faq-sect__item-text>*+* {
  margin-top: 15px;
}

.form-sect {
  padding: 35px 0 70px;
}

@media only screen and (max-width: 992px) {
  .form-sect {
    padding: 25px 0 45px;
  }
}

.form-sect__container {
  --max-width: 855px;
  width: calc(min(100% - (var(--padding) * 2), var(--max-width)));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 55px;
}

@media only screen and (max-width: 768px) {
  .form-sect__container {
    gap: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .form-sect__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.form-sect__title {
  --dw: 225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 var(--dw);
  flex: 0 0 var(--dw);
  width: var(--dw);
  height: var(--dw);
  font-size: 26px;
  line-height: 1.07692em;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  background-color: #97B4FF;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .form-sect__title {
    --dw: 170px;
    font-size: 18px;
  }
}

.form-sect__form {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  padding: 50px 55px;
  border-radius: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
  background-color: #E7EEFF;
}

@media only screen and (max-width: 768px) {
  .form-sect__form {
    padding: 50px 30px;
    gap: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .form-sect__form {
    gap: 15px;
    width: 100%;
    max-width: 350px;
    padding: 60px 25px;
  }
}

@media only screen and (max-width: 480px) {
  .form-sect__form {
    max-width: 100%;
  }
}

.form-sect__form-inputs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

@media only screen and (max-width: 576px) {
  .form-sect__form-inputs {
    gap: 15px;
  }
}

.form-sect__form-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.form-sect__form-input input {
  width: 100%;
  min-width: 0;
  height: 64px;
  border-radius: 40px;
  border: none;
  padding: 0 15px 0 25px;
  color: #6D86C2;
  font-size: 18px;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .form-sect__form-input input {
    height: 54px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .form-sect__form-input input {
    height: 44px;
    font-size: 14px;
  }
}

.form-sect__form-submit {
  padding-inline: 32px;
}

@media only screen and (max-width: 768px) {
  .form-sect__form-submit {
    height: 50px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .form-sect__form-submit {
    height: 44px;
    font-size: 14px;
  }
}

.main-footer {
  background-color: #142372;
  padding: 110px 0 20px;
  border-radius: 36px;
  margin-top: auto;
  color: #E7EEFF;
}

@media only screen and (max-width: 992px) {
  .main-footer {
    border-radius: 31px 31px 0 0;
    padding: 80px 0 20px;
  }
}

.main-footer__container {
  --max-width: 1300px;
  width: calc(min(100% - (var(--padding) * 2), var(--max-width)));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

@media only screen and (max-width: 576px) {
  .main-footer__container {
    gap: 80px;
  }
}

.main-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
}

@media only screen and (max-width: 576px) {
  .main-footer__content {
    gap: 60px 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.main-footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 576px) {
  .main-footer__logo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 480px) {
  .main-footer__logo {
    padding: 0 10px;
  }
}

.main-footer__logo img {
  display: inline-block;
  height: auto;
  block-size: auto;
  max-width: 100%;
  max-inline-size: 100%;
}

.main-footer__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (max-width: 576px) {
  .main-footer__column {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
}

.main-footer__column--mobile {
  display: none;
}

@media only screen and (max-width: 576px) {
  .main-footer__column--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 45px;
}

@media only screen and (max-width: 992px) {
  .main-footer__nav {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .main-footer__nav {
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .main-footer__nav {
    font-size: 14px;
  }
}

.main-footer__nav:last-child {
  margin-bottom: 0;
}

.main-footer__nav a {
  display: inline-block;
  color: #b8ccff;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
}

.main-footer__nav a:focus {
  color: #b8ccff;
}

.main-footer__nav a:hover,
.main-footer__nav a:active {
  color: #fff;
}

.main-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

@media only screen and (max-width: 992px) {
  .main-footer__info {
    gap: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .main-footer__info {
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .main-footer__info {
    font-size: 14px;
  }
}

.main-footer__info a {
  display: inline-block;
  color: #E7EEFF;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
  white-space: nowrap;
}

.main-footer__info a:focus {
  color: #E7EEFF;
}

.main-footer__info a:hover,
.main-footer__info a:active {
  color: #7398F7;
}

.main-footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 135px;
}

.main-footer__logos-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.main-footer__logos-item img {
  display: inline-block;
  height: auto;
  block-size: auto;
  width: 100%;
}

.main-footer__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-footer__footer-text {
  font-size: 18px;
  line-height: 1.1;
  color: #7398F7;
  text-align: center;
  font-weight: 600;
}

@media only screen and (max-width: 992px) {
  .main-footer__footer-text {
    font-size: 16px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 576px) {
  .main-footer__footer-text {
    font-size: 14px;
  }
}

.main-header {
  border-radius: 22px;
  background-color: rgba(201, 216, 255, 0.11);
  margin-inline: 40px;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 1600px) {
  .main-header {
    margin-inline: var(--padding);
  }
}

.main-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  padding: 10px 0 12px;
}

@media only screen and (max-width: 1270px) {
  .main-header__container {
    padding: 10px 0;
    gap: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .main-header__container {
    gap: 18px;
  }
}

.main-header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 992px) {
  .main-header__logo {
    margin-right: auto;
  }
}

.main-header__logo img {
  display: inline-block;
  height: auto;
  block-size: auto;
}

@media only screen and (max-width: 992px) {
  .main-header__logo img {
    width: 100px;
  }
}

@media only screen and (max-width: 768px) {
  .main-header__logo img {
    width: 88px;
  }
}

.main-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-inline: auto;
  font-size: 18px;
  font-weight: 500;
}

@media only screen and (max-width: 992px) {
  .main-header__nav {
    display: none;
  }
}

.main-header__nav a {
  line-height: 1;
  white-space: nowrap;
  color: #6D86C2;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
}

.main-header__nav a:focus {
  color: #6D86C2;
}

.main-header__nav a:hover,
.main-header__nav a:active {
  color: #1771F1;
}

.main-header__lang {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 2;
}

.main-header__lang-select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 2.77778em;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/icons/down-arrow.svg);
  background-repeat: no-repeat;
  background-position: right center;
  font-weight: 600;
  font-size: 18px;
  color: #142372;
  text-transform: uppercase;
}

@media only screen and (max-width: 992px) {
  .main-header__lang-select {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .main-header__lang-select {
    font-size: 14px;
  }
}

.main-header__lang-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  background-color: #fff;
  border: 1px solid rgba(231, 238, 255, 0.9);
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  line-height: 1.1;
  color: #6D86C2;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
}

.main-header__lang-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
  text-transform: uppercase;
}

.main-header__lang-option:focus {
  color: #6D86C2;
}

.main-header__lang-option:hover,
.main-header__lang-option:active,
.main-header__lang-option.wpml-ls-current-language {
  background-color: #E7EEFF;
  color: #6D86C2;
}

.main-header__lang-option.active {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  pointer-events: none;
}

.main-header__lang:hover .main-header__lang-list {
  opacity: 1;
  pointer-events: all;
}

.main-header__btn {
  padding: 7px 40px 5px;
}

@media only screen and (max-width: 992px) {
  .main-header__btn {
    display: none;
  }
}

.main-header__mbtn {
  display: none;
  border: none;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 992px) {
  .main-header__mbtn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.main-sect {
  height: 1055px;
  padding: 105px 0 100px;
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .main-sect {
    padding: 70px 0 80px;
    height: 755px;
  }
}

@media only screen and (max-width: 768px) {
  .main-sect {
    height: 695px;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect {
    height: auto;
    min-height: 910px;
    padding-top: 125px;
  }
}

.main-sect::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 78%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(44.25%, #FFFFFF), color-stop(88.37%, #D7E4FF));
  background: -o-linear-gradient(top, #FFFFFF 44.25%, #D7E4FF 88.37%);
  background: linear-gradient(180deg, #FFFFFF 44.25%, #D7E4FF 88.37%);
}

@media only screen and (max-width: 576px) {
  .main-sect::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(8.84%, #FFFFFF), color-stop(88.37%, #D7E4FF));
    background: -o-linear-gradient(top, #FFFFFF 8.84%, #D7E4FF 88.37%);
    background: linear-gradient(180deg, #FFFFFF 8.84%, #D7E4FF 88.37%);
  }
}

.main-sect__bwave {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 195px;
  z-index: 1;
  background-image: url(../img/bottom-wave.svg);
  background-repeat: repeat-x;
  background-position: 0 bottom;
  background-size: 2100px auto;
}

@media only screen and (max-width: 992px) {
  .main-sect__bwave {
    background-size: 1200px auto;
    height: 125px;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__bwave {
    background-image: url(../img/bottom-wave-mobile.svg);
    background-size: 570px auto;
    height: 210px;
  }
}

.main-sect__dwave {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 76px;
  left: 0;
  width: 100%;
  height: 415px;
  background-image: url(../img/wave.svg);
  background-repeat: repeat-x;
  background-position: -65px bottom;
  background-size: 110% auto;
}

@media only screen and (max-width: 1600px) {
  .main-sect__dwave { 
    background-size: 125% auto;
  }
}

@media only screen and (max-width: 1440px) {
  .main-sect__dwave { 
    background-size: 145% auto;
  }
}

@media only screen and (max-width: 1200px) {
  .main-sect__dwave { 
    background-size: 165% auto;
  }
}

@media only screen and (max-width: 1024px) {
  .main-sect__dwave { 
    background-size: 200% auto;
  }
}

@media only screen and (max-width: 992px) {
  .main-sect__dwave {
    background-size: 1700px auto;
    height: 250px;
    bottom: 44px;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__dwave {
    background-position: -68px 25px;
    height: 215px;
    bottom: 126px;
  }
}

.main-sect__container {
  position: relative;
  z-index: 4;
}

.main-sect__visual {
  position: absolute;
  z-index: -1;
  top: 69%;
  left: 540px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
}

@media only screen and (max-width: 1270px) {
  .main-sect__visual {
    top: 71%;
    left: 420px;
  }
}

@media only screen and (max-width: 992px) {
  .main-sect__visual {
    left: 340px;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__visual {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-bottom: 20px;
  }
}

.main-sect__bubbles img {
  display: inline-block;
  position: absolute;
  height: auto;
  block-size: auto;
}

.main-sect__bubbles .b-1 {
  top: 7%;
  left: 23%;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media only screen and (max-width: 992px) {
  .main-sect__bubbles .b-1 {
    width: 31px;
    left: 20%;
  }
}

@media only screen and (max-width: 768px) {
  .main-sect__bubbles .b-1 {
    left: 15%;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__bubbles .b-1 {
    top: 13%;
  }
}

.main-sect__bubbles .b-2 {
  top: -12%;
  left: 36%;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@media only screen and (max-width: 1270px) {
  .main-sect__bubbles .b-2 {
    width: 58px;
  }
}

@media only screen and (max-width: 992px) {
  .main-sect__bubbles .b-2 {
    width: 55px;
    left: 33%;
    top: -16%;
  }
}

@media only screen and (max-width: 768px) {
  .main-sect__bubbles .b-2 {
    top: -20%;
    left: 28%;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__bubbles .b-2 {
    top: -10%;
    left: 24%;
  }
}

.main-sect__bubbles .b-3 {
  top: -9%;
  left: 52%;
  -webkit-animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
  animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

@media only screen and (max-width: 992px) {
  .main-sect__bubbles .b-3 {
    width: 28px;
    top: -14%;
  }
}

@media only screen and (max-width: 768px) {
  .main-sect__bubbles .b-3 {
    left: 48%;
    top: -28%;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__bubbles .b-3 {
    left: 36%;
  }
}

.main-sect__bubbles .b-4 {
  right: 30%;
  top: -18%;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@media only screen and (max-width: 992px) {
  .main-sect__bubbles .b-4 {
    width: 35px;
    top: -25%;
  }
}

@media only screen and (max-width: 768px) {
  .main-sect__bubbles .b-4 {
    top: -21%;
    right: 30%;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__bubbles .b-4 {
    right: 45%;
    top: -19%;
  }
}

.main-sect__bubbles .b-5 {
  top: -8%;
  right: 20%;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media only screen and (max-width: 992px) {
  .main-sect__bubbles .b-5 {
    width: 31px;
  }
}

@media only screen and (max-width: 768px) {
  .main-sect__bubbles .b-5 {
    right: 18%;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__bubbles .b-5 {
    right: 37%;
    top: -33%;
  }
}

@media only screen and (max-width: 480px) {
  .main-sect__bubbles .b-5 {
    right: 32%;
  }
}

.main-sect__bubbles .b-6 {
  top: 10%;
  right: 15%;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@media only screen and (max-width: 992px) {
  .main-sect__bubbles .b-6 {
    width: 31px;
    top: 14%;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__bubbles .b-6 {
    top: -10%;
    right: 26%;
  }
}

@media only screen and (max-width: 480px) {
  .main-sect__bubbles .b-6 {
    right: 20%;
  }
}

.main-sect__img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media only screen and (max-width: 480px) {
  .main-sect__img {
    margin-right: -40px;
  }
}

.main-sect__img img {
  display: inline-block;
  height: auto;
  block-size: auto;
}

@media only screen and (max-width: 1270px) {
  .main-sect__img img {
    width: 700px;
  }
}

@media only screen and (max-width: 992px) {
  .main-sect__img img {
    width: 550px;
  }
}

@media only screen and (max-width: 768px) {
  .main-sect__img img {
    width: 400px;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__img img {
    width: 100%;
    max-width: 400px;
  }
}

@media only screen and (max-width: 480px) {
  .main-sect__img img {
    width: 400px;
  }
}

.main-sect__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 0.19444em;
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.08333em;
  font-weight: 700;
  color: #142372;
}

@media only screen and (max-width: 992px) {
  .main-sect__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 768px) {
  .main-sect__title {
    margin-bottom: 11px;
    font-size: 22px;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__title {
    font-size: 19px;
  }
}

.main-sect__title strong {
  font-size: 1.44444em;
  line-height: 1.07692em;
}

.main-sect__text {
  margin-bottom: 19px;
  font-size: 25px;
  line-height: 1.52em;
  font-weight: 600;
  color: #1771F1;
  max-width: 24.4em;
}

@media only screen and (max-width: 1270px) {
  .main-sect__text {
    font-size: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .main-sect__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .main-sect__text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 576px) {
  .main-sect__text {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.main-sect__text:last-child {
  margin-bottom: 0;
}

.main-sect__btn {
  height: 57px;
  padding: 6px 32px 4px;
  font-size: 18px;
  margin-bottom: 21px;
}

@media only screen and (max-width: 992px) {
  .main-sect__btn {
    font-size: 16px;
    padding: 6px 20px 4px;
    height: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .main-sect__btn {
    font-size: 14px;
    height: 44px;
  }
}

@media only screen and (max-width: 480px) {
  .main-sect__btn {
    width: 100%;
  }
}

.main-sect__btn:last-child {
  margin-bottom: 0;
}

.main-sect__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 17px;
}

@media only screen and (max-width: 576px) {
  .main-sect__logos {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px 10px;
  }
}

.main-sect__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.main-sect__logo img {
  display: inline-block;
  height: auto;
  block-size: auto;
  max-width: 135px;
}

.phone-sect {
  padding: 35px 0;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 992px) {
  .phone-sect {
    padding: 30px 0 35px;
  }
}

.phone-sect__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 576px) {
  .phone-sect__container {
    margin-bottom: 34px;
  }
}

.phone-sect__container:last-child {
  margin-bottom: 0;
}

.phone-sect__phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.phone-sect__phone img {
  display: inline-block;
  height: auto;
  block-size: auto;
  max-width: 100%;
  max-inline-size: 100%;
}

.phone-sect__logos {
  display: none;
  padding: 0 var(--padding);
}

@media only screen and (max-width: 576px) {
  .phone-sect__logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 19px;
  }
}

.phone-sect__logos-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.phone-sect__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.phone-sect__logo img {
  display: inline-block;
  height: auto;
  block-size: auto;
  max-width: 100%;
  max-inline-size: 100%;
  max-width: 135px;
}

.phone-sect__logo--main {
  width: 100%;
  max-width: 98px;
}

.phone-sect__logo.phone-sect__logo--main img {
  max-width: 98px;
}

.policy-sect {
  padding: 55px 0 75px;
}

@media only screen and (max-width: 992px) {
  .policy-sect {
    padding: 30px 0 50px;
  }
}

@media only screen and (max-width: 768px) {
  .policy-sect {
    padding: 25px 0 45px;
  }
}

.policy-sect__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 992px) {
  .policy-sect__head {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 576px) {
  .policy-sect__head {
    gap: 10px;
  }
}

.policy-sect__head:last-child {
  margin-bottom: 0;
}

.policy-sect__title {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #142372;
}

@media only screen and (max-width: 992px) {
  .policy-sect__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 768px) {
  .policy-sect__title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 576px) {
  .policy-sect__title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .policy-sect__title {
    font-size: 19px;
  }
}

.policy-sect__subtitle {
  font-size: 24px;
  line-height: 1.16667em;
  font-weight: 700;
  color: #142372;
}

@media only screen and (max-width: 992px) {
  .policy-sect__subtitle {
    font-size: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .policy-sect__subtitle {
    font-size: 16px;
  }
}

.policy-sect__text {
  font-size: 14px;
  line-height: 1.57143em;
  font-weight: 500;
}

.policy-sect__text>*+* {
  margin-top: 20px;
}

@media only screen and (max-width: 576px) {
  .policy-sect__text>*+* {
    margin-top: 15px;
  }
}

.policy-sect__text a {
  color: #6D86C2;
  -webkit-transition: all .35s ease-out;
  -o-transition: all .35s ease-out;
  transition: all .35s ease-out;
}

.policy-sect__text a:focus {
  color: #6D86C2;
}

.policy-sect__text a:hover,
.policy-sect__text a:active {
  color: #142372;
}

.policy-sect__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 45px;
}

@media only screen and (max-width: 480px) {
  .policy-sect__content {
    gap: 40px;
  }
}

.policy-sect__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.policy-sect__block-title {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 700;
}

@media only screen and (max-width: 576px) {
  .policy-sect__block-title {
    font-size: 18px;
  }
}

.subs-sect {
  padding: 45px 0;
}

.subs-sect__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 38px;
  padding: 40px 85px;
  background: -o-linear-gradient(271.56deg, #8FAEFE 1.41%, #3253FF 112.64%);
  background: linear-gradient(178.44deg, #8FAEFE 1.41%, #3253FF 112.64%);
}

@media only screen and (max-width: 992px) {
  .subs-sect__content {
    padding: 40px;
    border-radius: 32px;
    gap: 25px;
  }
}

@media only screen and (max-width: 576px) {
  .subs-sect__content {
    padding: 75px 35px;
  }
}

@media only screen and (max-width: 360px) {
  .subs-sect__content {
    padding: 70px 20px;
  }
}

.subs-sect__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px;
}

.subs-sect__text {
  color: #fff;
  line-height: 1.625em;
  font-weight: 500;
  padding-left: 115px;
}

@media only screen and (max-width: 992px) {
  .subs-sect__text {
    padding-left: 0;
  }
}

@media only screen and (max-width: 576px) {
  .subs-sect__text {
    font-size: 14px;
  }
}

.subs-sect__text-title {
  font-size: 28px;
  line-height: 1.07143em;
  font-weight: 600;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .subs-sect__text-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .subs-sect__text-title {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

.subs-sect__text p {
  margin-bottom: 15px;
}

@media only screen and (max-width: 576px) {
  .subs-sect__text p {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.subs-sect__text p:last-child {
  margin-bottom: 0;
}

.system-sect {
  padding: 50px 0 30px;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  .system-sect {
    padding: 40px 0 30px;
  }
}

.system-sect__title {
  position: relative;
  z-index: 1;
  font-size: 43px;
  line-height: 1.09302em;
  font-weight: 600;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1270px) {
  .system-sect__title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 768px) {
  .system-sect__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .system-sect__title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 480px) {
  .system-sect__title {
    font-size: 16px;
    text-transform: uppercase;
  }
}

.system-sect__title span {
  display: inline-block;
  padding: 8px 40px 10px 0;
  background-color: #ebf2ff;
  border-radius: 0 40px 40px 0;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 576px) {
  .system-sect__title span {
    padding-top: 10px;
  }
}

.system-sect__title span::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  height: 100%;
  width: 2500px;
  border-radius: 0 40px 40px 0;
  background-color: #ebf2ff;
}

.system-sect__content {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 32px));
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 1270px) {
  .system-sect__content {
    grid-template-columns: repeat(2, calc(50% - 15px));
  }
}

@media only screen and (max-width: 992px) {
  .system-sect__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.system-sect__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .system-sect__main {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.system-sect__main .system-sect__text {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1270px) {
  .system-sect__main .system-sect__text {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .system-sect__main .system-sect__text {
    margin-bottom: 20px;
  }
}

.system-sect__main .system-sect__text:last-child {
  margin-bottom: 0;
}

.system-sect__main .system-sect__tags {
  margin-bottom: 60px;
}

.system-sect__main .system-sect__tags:last-child {
  margin-bottom: 0;
}

.system-sect__text {
  line-height: 1.5625em;
}

@media only screen and (max-width: 576px) {
  .system-sect__text {
    font-size: 14px;
  }
}

.system-sect__text strong {
  font-weight: 600;
}

.system-sect__text>*+* {
  margin-top: 15px;
}

.system-sect__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 7px;
}

@media only screen and (max-width: 576px) {
  .system-sect__tags {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.system-sect__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  color: #7398F7;
  line-height: 1;
  border: 1px solid #7398F7;
  font-weight: 500;
  height: 48px;
  padding: 4px 16px;
  border-radius: 40px;
}

@media only screen and (max-width: 1270px) {
  .system-sect__tag {
    font-size: 14px;
    height: 40px;
  }
}

@media only screen and (max-width: 576px) {
  .system-sect__tag {
    font-size: 12px;
    height: 30px;
    padding: 4px 14px;
  }
}

.system-sect__items {
  -ms-flex-item-align: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  gap: 0 95px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1270px) {
  .system-sect__items {
    gap: 50px;
  }
}

@media only screen and (max-width: 992px) {
  .system-sect__items {
    margin-bottom: 35px;
    width: 40%;
    margin-right: auto;
    gap: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 768px) {
  .system-sect__items {
    width: auto;
    gap: 60px;
    margin-bottom: 30px;
    margin-right: 0;
  }
}

@media only screen and (max-width: 576px) {
  .system-sect__items {
    gap: 15px;
    width: 60%;
  }
}

@media only screen and (max-width: 480px) {
  .system-sect__items {
    width: 90%;
  }
}

.system-sect__items:last-child {
  margin-bottom: 0;
}

.system-sect__items::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  background-color: #E7EEFF;
}

.system-sect__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 67px;
  flex: 0 0 67px;
  width: 67px;
  height: 67px;
  background-color: #E7EEFF;
  text-transform: uppercase;
  line-height: 1;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  color: #7398F7;
}

@media only screen and (max-width: 480px) {
  .system-sect__item {
    font-size: 22px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
  }
}

.system-sect__logos {
  -ms-flex-item-align: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  margin-top: auto;
}

@media only screen and (max-width: 992px) {
  .system-sect__logos {
    width: 40%;
    margin-right: auto;
  }
}

@media only screen and (max-width: 768px) {
  .system-sect__logos {
    margin-bottom: 30px;
    margin-right: 0;
    width: auto;
  }
}

@media only screen and (max-width: 576px) {
  .system-sect__logos {
    display: none;
  }
}

.system-sect__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.system-sect__logo img {
  display: inline-block;
  height: auto;
  block-size: auto;
  max-width: 135px;
}

.system-sect__aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 992px) {
  .system-sect__aside {
    display: contents;
  }
}

.system-sect__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 55px;
}

@media only screen and (max-width: 992px) {
  .system-sect__images {
    margin-bottom: 30px;
    width: 50%;
    margin-left: auto;
    pointer-events: none;
    margin-top: -370px;
  }
}

@media only screen and (max-width: 768px) {
  .system-sect__images {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -100px;
  }
}

@media only screen and (max-width: 576px) {
  .system-sect__images {
    margin-bottom: 20px;
    margin-left: -50px;
    pointer-events: all;
  }
}

@media only screen and (max-width: 480px) {
  .system-sect__images {
    margin-left: 0;
  }
}

.system-sect__images:last-child {
  margin-bottom: 0;
}

.system-sect__img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.system-sect__img:last-child {
  margin-left: -42%;
}

@media only screen and (max-width: 992px) {
  .system-sect__img:last-child {
    margin-left: -180px;
  }
}

@media only screen and (max-width: 480px) {
  .system-sect__img:last-child {
    margin-left: -155px;
  }
}

.system-sect__img img {
  display: inline-block;
}

@media only screen and (max-width: 1270px) {
  .system-sect__img img {
    width: 420px;
  }
}

@media only screen and (max-width: 992px) {
  .system-sect__img img {
    width: 380px;
  }
}

@media only screen and (max-width: 480px) {
  .system-sect__img img {
    width: 330px;
  }
}

.system-sect__tasks {
  text-align: right;
  color: #8aa1da;
  font-size: 18px;
  line-height: 2.18182em;
  font-weight: 500;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media only screen and (max-width: 992px) {
  .system-sect__tasks {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .system-sect__tasks {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

@media only screen and (max-width: 576px) {
  .system-sect__tasks {
    font-size: 16px;
  }
}

@media only screen and (max-width: 992px) {
  .system-sect__tasks p {
    max-width: 600px;
  }
}

.system-sect__tasks p strong {
  font-weight: 500;
}

@media only screen and (max-width: 992px) {
  .system-sect__tasks p strong {
    font-weight: 700;
    color: #1771f1;
  }
}

.system-sect__tasks-num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-size: 84px;
}

@media only screen and (max-width: 576px) {
  .system-sect__tasks-num {
    font-size: 55px;
  }
}

.system-sect__tasks-num strong {
  font-weight: 800;
}

.system-sect__tasks-num img {
  display: inline-block;
  height: auto;
  block-size: auto;
}

@media only screen and (max-width: 576px) {
  .system-sect__tasks-num img {
    width: 70px;
  }
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.policy-sect__container h2 {
  font-size: 24px;
  line-height: 1.16667em;
  font-weight: 700;
  color: #142372;
}

.policy-sect__container h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 700;
}

.policy-sect__container .entry-content>* {
  margin-bottom: 16px;
}

.policy-sect__container .entry-content {
  font-size: 14px;
  line-height: 1.57143em;
  font-weight: 500;
}

.policy-sect__container .entry-content strong,
.policy-sect__container .entry-content b {
  font-weight: 700;
}

.policy-sect__title {
  margin-bottom: 32px;
}


@media screen and (max-width: 600px) {
  html #wpadminbar {
    top: -46px;
  }
}

#wp-admin-bar-wp-logo {
  display:none;
}