/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
Main Modificator Classes
Version 1.1.2
Author name : Rim Zabarov
Company: SIMAI
Website: http://simai.ru

Reductions:

m  - margin (use additions);
p  - padding (use additions);
h  - height;
w  - width;
z  - z-index;
b  - border (use additions);
lh - line height;
f  - font;
bg - background;

Additions (used together reductions):

l - left;
r - right;
t - top;
b - bottom;
a - all (only for borders);

Units:

none - px or none;
p    - percent;
e    - em;
r    - rem;

*/
/* MARGIN */
.no-margin,
.m-0 {
  margin: 0px !important;
}

.m-5 {
  margin: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-25 {
  margin: 25px !important;
}

.m-30 {
  margin: 30px !important;
}

.m-35 {
  margin: 35px !important;
}

.m-40 {
  margin: 40px !important;
}

.m-45 {
  margin: 45px !important;
}

.m-50 {
  margin: 50px !important;
}

.m-60 {
  margin: 60px !important;
}

.m-70 {
  margin: 70px !important;
}

.m-80 {
  margin: 80px !important;
}

.m-90 {
  margin: 90px !important;
}

.m-100 {
  margin: 100px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

/* PADDING */
.no-padding,
.p-0 {
  padding: 0px !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-35 {
  padding: 35px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-45 {
  padding: 45px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-70 {
  padding: 70px !important;
}

.p-80 {
  padding: 80px !important;
}

.p-90 {
  padding: 90px !important;
}

.p-100 {
  padding: 100px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

/* HEIGHT */
.h-10 {
  height: 10px !important;
}

.h-20 {
  height: 20px !important;
}

.h-30 {
  height: 30px !important;
}

.h-40 {
  height: 40px !important;
}

.h-50 {
  height: 50px !important;
}

.h-60 {
  height: 60px !important;
}

.h-70 {
  height: 70px !important;
}

.h-80 {
  height: 80px !important;
}

.h-90 {
  height: 90px !important;
}

.h-100 {
  height: 100px !important;
}

.h-150 {
  height: 150px !important;
}

.h-200 {
  height: 200px !important;
}

.h-300 {
  height: 300px !important;
}

.h-400 {
  height: 400px !important;
}

.h-500 {
  height: 500px !important;
}

/* MIN-HEIGHT */
.min-h-10 {
  min-height: 10px !important;
}

.min-h-20 {
  min-height: 20px !important;
}

.min-h-30 {
  min-height: 30px !important;
}

.min-h-40 {
  min-height: 40px !important;
}

.min-h-50 {
  min-height: 50px !important;
}

.min-h-60 {
  min-height: 60px !important;
}

.min-h-70 {
  min-height: 70px !important;
}

.min-h-80 {
  min-height: 80px !important;
}

.min-h-90 {
  min-height: 90px !important;
}

.min-h-100 {
  min-height: 100px !important;
}

.min-h-150 {
  min-height: 150px !important;
}

.min-h-200 {
  min-height: 200px !important;
}

.min-h-300 {
  min-height: 300px !important;
}

.min-h-400 {
  min-height: 400px !important;
}

.min-h-500 {
  min-height: 500px !important;
}

/* WIDTH */
.w-0p {
  width: 0% !important;
}

.w-10p {
  width: 10% !important;
}

.w-20p {
  width: 20% !important;
}

.w-30p {
  width: 30% !important;
}

.w-40p {
  width: 40% !important;
}

.w-50p {
  width: 50% !important;
}

.w-60p {
  width: 60% !important;
}

.w-70p {
  width: 70% !important;
}

.w-80p {
  width: 80% !important;
}

.w-90p {
  width: 90% !important;
}

.w-100p {
  width: 100% !important;
}

/* POSITION */
.top-0 {
  top: 0px !important;
}

.top-5 {
  top: 5px !important;
}

.top-10 {
  top: 10px !important;
}

.top-15 {
  top: 15px !important;
}

.top-20 {
  top: 20px !important;
}

.top-25 {
  top: 25px !important;
}

.top-30 {
  top: 30px !important;
}

.top-35 {
  top: 35px !important;
}

.top-40 {
  top: 40px !important;
}

.top-45 {
  top: 45px !important;
}

.top-50 {
  top: 50px !important;
}

.top-60 {
  top: 60px !important;
}

.top-70 {
  top: 70px !important;
}

.top-80 {
  top: 80px !important;
}

.top-90 {
  top: 90px !important;
}

.top-100 {
  top: 100px !important;
}

.right-0 {
  right: 0px !important;
}

.right-5 {
  right: 5px !important;
}

.right-10 {
  right: 10px !important;
}

.right-15 {
  right: 15px !important;
}

.right-20 {
  right: 20px !important;
}

.right-25 {
  right: 25px !important;
}

.right-30 {
  right: 30px !important;
}

.right-35 {
  right: 35px !important;
}

.right-40 {
  right: 40px !important;
}

.right-45 {
  right: 45px !important;
}

.right-50 {
  right: 50px !important;
}

.right-60 {
  right: 60px !important;
}

.right-70 {
  right: 70px !important;
}

.right-80 {
  right: 80px !important;
}

.right-90 {
  right: 90px !important;
}

.right-100 {
  right: 100px !important;
}

.bottom-0 {
  bottom: 0px !important;
}

.bottom-5 {
  bottom: 5px !important;
}

.bottom-10 {
  bottom: 10px !important;
}

.bottom-15 {
  bottom: 15px !important;
}

.bottom-20 {
  bottom: 20px !important;
}

.bottom-25 {
  bottom: 25px !important;
}

.bottom-30 {
  bottom: 30px !important;
}

.bottom-35 {
  bottom: 35px !important;
}

.bottom-40 {
  bottom: 40px !important;
}

.bottom-45 {
  bottom: 45px !important;
}

.bottom-50 {
  bottom: 50px !important;
}

.bottom-60 {
  bottom: 60px !important;
}

.bottom-70 {
  bottom: 70px !important;
}

.bottom-80 {
  bottom: 80px !important;
}

.bottom-90 {
  bottom: 90px !important;
}

.bottom-100 {
  bottom: 100px !important;
}

.left-0 {
  left: 0px !important;
}

.left-5 {
  left: 5px !important;
}

.left-10 {
  left: 10px !important;
}

.left-15 {
  left: 15px !important;
}

.left-20 {
  left: 20px !important;
}

.left-25 {
  left: 25px !important;
}

.left-30 {
  left: 30px !important;
}

.left-35 {
  left: 35px !important;
}

.left-40 {
  left: 40px !important;
}

.left-45 {
  left: 45px !important;
}

.left-50 {
  left: 50px !important;
}

.left-60 {
  left: 60px !important;
}

.left-70 {
  left: 70px !important;
}

.left-80 {
  left: 80px !important;
}

.left-90 {
  left: 90px !important;
}

.left-100 {
  left: 100px !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.static {
  position: static !important;
}

/* Z-INDEX */
.z-0 {
  z-index: 0 !important;
}

.z-10 {
  z-index: 10 !important;
}

.z-100 {
  z-index: 100 !important;
}

.z-500 {
  z-index: 500 !important;
}

.z-1000 {
  z-index: 1000 !important;
}

.z-10000 {
  z-index: 10000 !important;
}

/* FLOAT */
.left {
  float: left !important;
}

.right {
  float: right !important;
}

.clear {
  clear: both !important;
}

.clear-after:after {
  clear: both !important;
}

/* RADIUS */
.r-0 {
  border-radius: 0px !important;
}

.r-1 {
  border-radius: 1px !important;
}

.r-2 {
  border-radius: 2px !important;
}

.r-3 {
  border-radius: 3px !important;
}

.r-4 {
  border-radius: 4px !important;
}

.r-5 {
  border-radius: 5px !important;
}

.r-6 {
  border-radius: 6px !important;
}

.r-7 {
  border-radius: 7px !important;
}

.r-8 {
  border-radius: 8px !important;
}

.r-9 {
  border-radius: 9px !important;
}

.r-10 {
  border-radius: 10px !important;
}

.circle {
  border-radius: 50% !important;
}

.border-0,
.border-none {
  border-width: 0px;
}

/* TEXT */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.text-underline {
  text-decoration: underline !important;
}

.caps {
  text-transform: uppercase !important;
}

.lower {
  text-transform: lowercase !important;
}

.no-wrap {
  white-space: nowrap !important;
}

.lh-10 {
  line-height: 10px !important;
}

.lh-15 {
  line-height: 15px !important;
}

.lh-20 {
  line-height: 20px !important;
}

.lh-25 {
  line-height: 25px !important;
}

.lh-30 {
  line-height: 30px !important;
}

.lh-35 {
  line-height: 35px !important;
}

.lh-40 {
  line-height: 40px !important;
}

.lh-45 {
  line-height: 45px !important;
}

.lh-50 {
  line-height: 50px !important;
}

.lh-55 {
  line-height: 55px !important;
}

.lh-60 {
  line-height: 60px !important;
}

.lh-65 {
  line-height: 65px !important;
}

.lh-70 {
  line-height: 70px !important;
}

.lh-75 {
  line-height: 75px !important;
}

.lh-80 {
  line-height: 80px !important;
}

.lh-85 {
  line-height: 85px !important;
}

.lh-90 {
  line-height: 90px !important;
}

.lh-95 {
  line-height: 95px !important;
}

.lh-100 {
  line-height: 100px !important;
}

.lh-90e {
  line-height: 0.9em !important;
}

.lh-100e {
  line-height: 1em !important;
}

.lh-110e {
  line-height: 1.1em !important;
}

.lh-120e {
  line-height: 1.2em !important;
}

.lh-130e {
  line-height: 1.3em !important;
}

.lh-140e {
  line-height: 1.4em !important;
}

.lh-150e {
  line-height: 1.5em !important;
}

.lh-160e {
  line-height: 1.6em !important;
}

.lh-170e {
  line-height: 1.7em !important;
}

.lh-180e {
  line-height: 1.8em !important;
}

.lh-190e {
  line-height: 1.9em !important;
}

.lh-200e {
  line-height: 2em !important;
}

/* FONT */
/* from 10 to 20 each value */
/* from 20 only even; */
.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-34 {
  font-size: 32px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-42 {
  font-size: 42px !important;
}

.fs-44 {
  font-size: 44px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.fs-48 {
  font-size: 48px !important;
}

.fs-50 {
  font-size: 50px !important;
}

.fs-52 {
  font-size: 52px !important;
}

.fs-54 {
  font-size: 54px !important;
}

.fs-56 {
  font-size: 56px !important;
}

.fs-58 {
  font-size: 58px !important;
}

.fs-60 {
  font-size: 60px !important;
}

.small,
.text-small,
.fs-85p {
  font-size: 85% !important;
}

.fs-90p {
  font-size: 90% !important;
}

.fs-100p {
  font-size: 100% !important;
}

.fs-110p {
  font-size: 110% !important;
}

.fs-120p {
  font-size: 120% !important;
}

.fs-130p {
  font-size: 130% !important;
}

.fs-140p {
  font-size: 140% !important;
}

.fs-150p {
  font-size: 150% !important;
}

.fs-160p {
  font-size: 160% !important;
}

.fs-200p {
  font-size: 200% !important;
}

.fs-300p {
  font-size: 300% !important;
}

.fs-400p {
  font-size: 400% !important;
}

.fs-500p {
  font-size: 500% !important;
}

.fs-600p {
  font-size: 600% !important;
}

.fs-700p {
  font-size: 700% !important;
}

.fs-800p {
  font-size: 800% !important;
}

.fs-900p {
  font-size: 900% !important;
}

.fs-75r {
  font-size: 0.75rem !important;
}

.fs-90r {
  font-size: 0.9rem !important;
}

.fs-100r {
  font-size: 1rem !important;
}

.fs-110r {
  font-size: 1.1rem !important;
}

.fs-120r {
  font-size: 1.2rem !important;
}

.fs-130r {
  font-size: 1.3rem !important;
}

.fs-140r {
  font-size: 1.4rem !important;
}

.fs-150r {
  font-size: 1.5rem !important;
}

.fs-160r {
  font-size: 1.6rem !important;
}

.fs-200r {
  font-size: 2rem !important;
}

.fs-300r {
  font-size: 3rem !important;
}

.bold, .fwb {
  font-weight: bold !important;
}

.light {
  font-weight: lighter !important;
}

.fw-100 {
  font-weight: 300 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.italic {
  font-style: italic !important;
}

.serif {
  font-family: "Times New Roman", Times, serif !important;
}

.sans-serif {
  font-family: Tahoma, Geneva, sans-serif !important;
}

.monospace {
  font-family: "Courier New", Courier, monospace !important;
}

.roboto {
  font-family: "Roboto", sans-serif !important;
}

.georgia {
  font-family: Georgia, serif !important;
}

.color-inherit,
a.color-inherit:hover {
  color: inherit;
}

/* OPACITY */
.opacity-none,
.opacity-0 {
  opacity: 0 !important;
}

.opacity-5 {
  opacity: 0.05 !important;
}

.opacity-10 {
  opacity: 0.1 !important;
}

.opacity-15 {
  opacity: 0.15 !important;
}

.opacity-20 {
  opacity: 0.2 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-30 {
  opacity: 0.3 !important;
}

.opacity-35 {
  opacity: 0.35 !important;
}

.opacity-40 {
  opacity: 0.4 !important;
}

.opacity-45 {
  opacity: 0.45 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-55 {
  opacity: 0.55 !important;
}

.opacity-60 {
  opacity: 0.6 !important;
}

.opacity-65 {
  opacity: 0.65 !important;
}

.opacity-70 {
  opacity: 0.7 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-80 {
  opacity: 0.8 !important;
}

.opacity-85 {
  opacity: 0.85 !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

.opacity-95 {
  opacity: 0.95 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

/* OVERFLOW */
.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

/* VISIBILITY */
.hidden {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden !important;
}

/* DISPLAY */
.display-block {
  display: block !important;
}

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

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

.display-table {
  display: table !important;
}

.display-cell {
  display: table-cell !important;
}

/* SELECT */
.no-select {
  user-select: none !important;
}

@font-face {
  font-family: "Lora";
  src: url(/fonts/Lora-Bold.woff2) format("woff2"), url(/fonts/Lora-Bold.woff) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(/fonts/Lora-Italic.woff2) format("woff2"), url(/fonts/Lora-Italic.woff) format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(/fonts/Lora-Bold.woff2) format("woff2"), url(/fonts/Lora-Bold.woff) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(/fonts/Lora-Regular.woff2) format("woff2"), url(/fonts/Lora-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(/fonts/Lora-Bold.woff2) format("woff2"), url(/fonts/Lora-Bold.woff) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GillSans";
  src: url(/fonts/GillSansProCyrillic-Medium.woff2) format("woff2"), url(/fonts/GillSansProCyrillic-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GothamPro";
  src: url(/fonts/GothamPro.woff2) format("woff2"), url(/fonts/GothamPro.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GothamPro";
  src: url(/fonts/GothamPro.woff2) format("woff2"), url(/fonts/GothamPro.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(/fonts/Lora-Italic.woff2) format("woff2"), url(/fonts/Lora-Italic.woff) format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "GillSans";
  src: url(/fonts/GillSansProCyrillic-Medium.woff2) format("woff2"), url(/fonts/GillSansProCyrillic-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(/fonts/Lora-Italic.woff2) format("woff2"), url(/fonts/Lora-Italic.woff) format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "GothamPro";
  src: url(/fonts/GothamPro-Medium.woff2) format("woff2"), url(/fonts/GothamPro-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GothamPro";
  src: url(/fonts/GothamPro-Medium.woff2) format("woff2"), url(/fonts/GothamPro-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(/fonts/Lora-Regular.woff2) format("woff2"), url(/fonts/Lora-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GillSans";
  src: url(/fonts/GillSansProCyrillic-Medium.woff2) format("woff2"), url(/fonts/GillSansProCyrillic-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url(/fonts/Lora-Regular.woff2) format("woff2"), url(/fonts/Lora-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PT Rouble Sans";
  src: url(/fonts/PTRoubleSans.woff2) format("woff2"), url(/fonts/PTRoubleSans.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PT Rouble Sans";
  src: url(/fonts/PTRoubleSans.woff2) format("woff2"), url(/fonts/PTRoubleSans.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/**
 * Swiper 9.2.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 14, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

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

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

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

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

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

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**
 * Swiper 6.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 9, 2020
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff ;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

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

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

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

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

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

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

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

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

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

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

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

:root {
  --swiper-navigation-size: 44px ;
}

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

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

.swiper-button-next:after, .swiper-button-prev:after {
  display: block;
  position: absolute;
}

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

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: url(/assets/slider-arrow-dfc5a96d31f52d6f5b39fc0edee7a6537e5d15a48f5ffffa125a0e0c960db074.svg);
}

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

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: url(/assets/slider-arrow-dfc5a96d31f52d6f5b39fc0edee7a6537e5d15a48f5ffffa125a0e0c960db074.svg);
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff ;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000 ;
}

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff ;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000 ;
}

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

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

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

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

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

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

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

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

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hystmodal__opened {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.hystmodal__shadow {
  position: fixed;
  border: none;
  display: block;
  width: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 98;
  opacity: 0;
  transition: opacity 0.15s ease;
  background-color: black;
}

.hystmodal__shadow--show {
  pointer-events: auto;
  opacity: 0.6;
}

.hystmodal {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 1;
  pointer-events: none;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  z-index: 1000;
  visibility: hidden;
}

.hystmodal--active {
  opacity: 1;
}

.hystmodal--moved,
.hystmodal--active {
  pointer-events: auto;
  visibility: visible;
}

.hystmodal__wrap {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  min-height: 100%;
  margin: auto;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  background: #FDFCFA;
}

.hystmodal__window {
  margin: 50px 0;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  background: #fff;
  width: 600px;
  max-width: 100%;
  overflow: visible;
  transition: transform 0.2s ease 0s, opacity 0.2s ease 0s;
  transform: scale(0.9);
  opacity: 0;
}

.hystmodal--active .hystmodal__window {
  transform: scale(1);
  opacity: 1;
}

.hystmodal__close {
  position: absolute;
  z-index: 10;
  top: 0;
  right: -40px;
  display: block;
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  border: none;
  font-size: 0;
  cursor: pointer;
  outline: none;
}

.hystmodal__close:focus {
  outline: 2px dotted #afb3b9;
  outline-offset: 2px;
}

@media all and (max-width: 767px) {
  .hystmodal__close {
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23111' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23111' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
  }
  .hystmodal__window {
    margin: 0;
  }
}
.hystmodal__window {
  border-radius: 5px;
  padding: 30px 30px;
}

.hystmodal__styled {
  font-size: 16px;
  line-height: 1.5;
}

.hystmodal__styled p {
  margin-bottom: 0.8em;
}

.hystmodal__styled a {
  color: #6b83a6;
}

.hystmodal__styled .h1 {
  font-size: 2em;
  margin-top: 15px;
  margin-bottom: 20px;
  color: #39537a;
}

.hystmodal__styled .h2 {
  font-size: 1.8em;
  margin-top: 15px;
  margin-bottom: 20px;
  color: #39537a;
}

.hystmodal__styled ul {
  margin-bottom: 0.8em;
}

.hystmodal__styled li {
  padding: 0.2em 0 0.2em 30px;
  position: relative;
  list-style: none;
}

.hystmodal__styled li:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #39537a;
  border-radius: 50%;
  top: 12px;
  left: 10px;
}

.hystmodal__styled img {
  display: block;
  margin-bottom: 0.8em;
  max-width: 100%;
}

.hystmodal__styled button {
  background-color: #000;
  color: #fff;
  border: none;
  font-weight: bold;
  margin: 1em 0;
  padding: 10px 30px;
}

.hystmodal__styled a:hover {
  color: #39537a;
}

.hystmodal__window--long {
  width: 1000px;
}

.hystmodal--video .hystmodal__window {
  position: relative;
  width: 900px;
  padding: 0;
  height: 470px;
  box-sizing: content-box;
  background-color: #000;
}

.hystmodal--video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.hystmodal__window--form {
  width: 440px;
  max-width: 100%;
  background: linear-gradient(216.25deg, #FFFFFF 0%, #F3F3F3 100%), #FCFCFC;
  box-shadow: 0px 0px 6px rgba(51, 66, 94, 0.5);
  padding: 40px 30px;
}

.loginblock__h1 {
  margin-bottom: 30px;
  color: #2E3C56;
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
}

.loginblock__h2 {
  margin-top: 4px;
  color: #8F99AA;
  font-size: 14px;
  line-height: 21px;
}

.loginblock__form {
  padding-top: 36px;
}

.formitem {
  padding-bottom: 24px;
  position: relative;
}

.formitem input {
  outline: none;
  background: #FFFFFF;
  box-shadow: inset 0 0 0 100px #fff;
  border: 1px solid #DDE0E6;
  box-sizing: border-box;
  color: #484c53;
  font-size: 15px;
  line-height: 26px;
  padding: 15px 20px;
  box-sizing: border-box;
  display: block;
  width: 100%;
}

.formitem input:focus {
  border-color: #9d9fa3;
}

.loginblock__bottom {
  justify-content: space-between;
  padding-bottom: 24px;
}

.formcheckbox {
  position: relative;
  display: block;
  cursor: pointer;
}

.formcheckbox input {
  position: absolute;
  /* visibility: hidden; */
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.formcheckbox:focus-within {
  outline: 2px dotted #afb3b9;
  outline-offset: 2px;
}

.formcheckbox input + span {
  height: 21px;
  color: #8F99AA;
  font-size: 12px;
  line-height: 21px;
  position: relative;
  align-items: center;
  user-select: none;
}

.formcheckbox input:checked + span {
  color: #2E3C56;
}

.checkplace {
  display: flex;
  background: #FFFFFF;
  border: 1px solid #DDE0E6;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  margin-right: 1rem;
}

.checkplace img {
  display: block;
  max-width: 90%;
  max-height: 95%;
  margin: auto;
  opacity: 0;
}

.formcheckbox input:checked + span .checkplace {
  border-color: #9d9fa3;
}

.formcheckbox input:checked + span .checkplace img {
  opacity: 1;
}

.loginblock__link {
  display: block;
  color: #2E3C56;
  font-size: 12px;
  line-height: 21px;
}

.formsubmit .button {
  width: 100%;
  height: 56px;
  font-weight: 500;
}

.fxied-el,
.fxied-el2 {
  display: block;
  position: fixed;
  z-index: 9;
  left: 0;
  right: 0;
  top: 0;
  height: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  background-color: #2E3C56;
  color: #fff;
  font-size: 14px;
}

.fxied-el2 {
  left: auto;
  top: auto;
  bottom: 30px;
  width: auto;
  padding: 10px;
  text-align: center;
  margin-right: 2rem;
  right: 30px;
}

#body {
  width: 100%;
}

.tab-wrapper {
  width: 100%;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  font-family: sans-serif;
}

.tab-wrapper .tab-item,
.tab-wrapper input {
  display: none;
}

.tab-wrapper .tab-item {
  background-color: #fff;
  width: calc(100% - 40px);
  max-width: 100%;
  padding: 20px;
  order: 1;
}

.tab-wrapper label {
  background-color: #e6e6e6;
  height: 35px;
  line-height: 35px;
  min-width: 50px;
  padding: 0px 20px;
  text-align: center;
  float: left;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  border-right: 1px solid #c7c7c7;
}

.tab-wrapper input:checked + label {
  background-color: #fff;
  border: 1px solid #f35640;
  color: #f35640;
}

.tab-wrapper label:last-child {
  border-right: none;
}

.tab-wrapper input:checked + label + .tab-item {
  display: block;
}

.box_title {
  font-size: 30px;
  line-height: 34px;
  text-align: center;
  margin: 0 0 11px;
}

.box_subtitle {
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  margin-bottom: 26px;
}

.item_back {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 400px;
  margin-bottom: 15px;
}

.form-group__field {
  display: block !important;
  width: 100%;
  border: none;
  border-bottom: 1px solid #f35640;
}

#body .form-group__field:focus {
  color: #f35640;
}

#body .form-group__value {
  padding-right: 10px;
}

.price-box {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 10px;
}

.price-box__item {
  min-width: 80px;
  width: 33.3%;
  padding: 5px;
  font-size: 12px;
  color: #222;
  position: relative;
}

.price-box__item_lg {
  width: 66.6%;
}

.price-box input:hover + label,
.price-box input:checked + label,
.price-box a:hover {
  border: 1px solid #000;
  opacity: 1;
  box-shadow: 4px 4px 8px -4px #727272;
  border: 1px solid #ff5c39;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.price-box label,
.price-box a {
  padding: 1px 8px;
  text-decoration: none;
  min-height: 32px;
  line-height: 30px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ff8a70;
  opacity: 0.48;
  width: 100%;
  display: block;
  margin-bottom: 0;
  color: #727272;
}

.form-group__tt {
  padding-left: 3px;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 5px;
  color: #727272;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: normal;
}

input[name=payment-gateway] {
  position: absolute;
  display: block;
  opacity: 0;
  width: 100%;
  height: 20px;
  z-index: 2;
  left: 0px;
  width: 90%;
  text-align: left;
  margin: 10px;
}

.gateway-thumb img {
  display: inline;
  margin-bottom: 0;
  max-width: 100px;
  height: auto;
  padding-left: 20px;
}

.gateway-thumb {
  cursor: pointer;
  /*height: 25px;*/
}

.custom-checkbox2 {
  position: relative;
  cursor: pointer;
  line-height: 24px;
  background: transparent !important;
  font-size: 14px;
  text-align: right;
  display: block;
}

.custom-checkbox2 input {
  position: absolute;
  left: -9999px;
}

.custom-checkbox-button {
  display: inline-block;
  margin: 0 0;
  width: 40px;
  border-radius: 12px;
  background: rgba(211, 211, 211, 0.5);
  height: 20px;
  position: relative;
  bottom: -4px;
  cursor: pointer;
}

.custom-checkbox-button:before {
  background: #fff;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-box-shadow: 0px 0px 1px 0px rgba(44, 77, 138, 0.3), 0px 7px 8.55px 0.45px rgba(22, 44, 84, 0.15);
  box-shadow: 0px 0px 1px 0px rgba(44, 77, 138, 0.3), 0px 7px 8.55px 0.45px rgba(22, 44, 84, 0.15);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.custom-checkbox-button:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  background: #707070;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  -webkit-box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.custom-checkbox2.checked .custom-checkbox-button:before {
  left: 20px;
}

.custom-checkbox2.checked .custom-checkbox-button:after {
  left: 25px;
  background: #F68C33;
}

.help_people {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
}

.activ_people {
  margin: 30px;
}

.ab_mad {
  height: auto;
}

@media (max-width: 768px) {
  .activ_people {
    display: block;
    margin-left: 0px;
    margin: 0 auto;
    margin-bottom: 0px;
  }
  .help_pci {
    display: none;
  }
  .hystmodal__window, .tab-wrapper .tab-item {
    padding: 15px 0px;
    width: 100%;
  }
  .ab_mad {
    height: auto;
  }
}
.ac_uit {
  margin-bottom: 15px;
}

input {
  outline: none;
}

.gateway-thumb:before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  transform: translateY(-50%);
}

.price-box input:checked + label .gateway-thumb:before {
  background: #f35640;
  border: 1px solid #f35640;
}

.gsfgsfg {
  font-size: 14px !important;
  line-height: 18px !important;
  padding: 4px 25px !important;
  background: #F68C33 !important;
}

.help_people {
  display: flex;
}

.ac_uit {
  display: none;
}

.ac_uit:nth-child(1), .ac_uit:nth-child(2), .ac_uit:nth-child(3), .ac_uit:nth-child(4) {
  display: block;
}

.ac_uit2 {
  display: block;
  border: 1px solid #ccc;
  padding: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 100%;
}

.ac_uit2:hover, .ac_uit2.checked {
  border: 1px solid #f68c33;
  box-shadow: 0px 5px 5px #ccc;
}

.dddd1 {
  font-size: 14px;
}

.ab_mad {
  color: #f68c33;
}

.itog_p {
  font-size: 24px;
}

.itog_p span {
  font-weight: bold;
}

.img_fpara_ {
  max-width: 150px;
  max-height: 35px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.txt-st {
  height: 50px;
}

.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input, .iti input[type=text], .iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}

.iti__country {
  padding: 5px 10px;
  outline: none;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti__flag-box, .iti__country-name, .iti__dial-code {
  vertical-align: middle;
}

.iti__flag-box, .iti__country-name {
  margin-right: 6px;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url(/assets/flags-959070a9f002abd28383322dd455a851d1fd445974edb3f720d54ff79894e28b.png);
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url(/assets/flags@2x-d00ec77cf49d0c3fbd725dbcdcca661b5db35a02d12f8f4fcf8a3ce6065391bc.png);
  }
}
.iti__flag.iti__np {
  background-color: transparent;
}

.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  padding: 0 40px 0 40px;
  max-width: 1249px;
  margin-bottom: 20px;
}

.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after {
  display: none !important;
}

body {
  margin: 0;
  font-family: "GothamPro";
  font-weight: normal;
  color: #3A3A3A;
  position: relative;
  background: #FDFCFA;
}

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

a {
  text-decoration: none;
}

.pages-content ol {
  list-style: decimal;
}

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

.col-4 {
  width: 25%;
  margin-right: 2%;
}

.col-6 {
  width: 16.66%;
  margin-right: 2%;
}

.col-2 {
  width: 49%;
  margin-right: 2%;
}

.col-2:nth-child(2n+2) {
  margin-right: 0;
}

.col-2:nth-child(6n+6) {
  margin-right: 0;
}

.col-4:nth-child(4n+4) {
  margin-right: 0;
}

.col-3 {
  width: 32%;
  margin-right: 2%;
}

.col-3:nth-child(3n+3) {
  margin-right: 0;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 120;
  transition: 0.3s;
}

.header {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 7px;
  position: relative;
}

.header__bg {
  width: 37%;
  height: 233px;
  background-repeat: no-repeat;
  background-position: top right;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
}

.header__logo {
  position: relative;
  z-index: 5;
}

.header__logo-text {
  position: absolute;
  font-size: 14px;
  bottom: 19px;
  left: 84px;
  width: 200px;
  color: #004C75;
}

.header__logo-text.scrolling {
  font-size: 11px;
  bottom: 6px;
  left: 36px;
}

.header__top {
  width: 100%;
  margin-left: auto;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
}

.header__right {
  padding-top: 15px;
  width: calc(100% - 315px);
}

.header__right.scrolling {
  padding-top: 0;
}

.header__nav li a {
  color: #4F4F4F;
  font-size: 14px;
  line-height: 13px;
}

.banner__bg {
  position: absolute;
  width: 100%;
  height: 825px;
  left: 0;
  top: 0;
  z-index: -2;
}

.header__logo img {
  max-height: 92px;
  transition: 0.3s;
}

.header__logo img.scrolling {
  width: 138px;
}

.header__nav__item {
  padding-right: 25px;
  position: relative;
}

.header__nav__item:last-child {
  padding-right: 0;
}

.header__nav__item:hover .header__nav__drop {
  display: block;
  height: auto;
}

.header__nav__drop {
  display: none;
  height: 0;
  position: absolute;
  width: max-content;
  background: #004C75;
  z-index: 900;
  transition: all 0.5s;
}

.header__nav__drop li a {
  color: #fff;
  padding: 15px 18px;
  display: block;
  font-size: 14px;
}

.header__nav__drop li:hover {
  background-color: #1C9DC3;
}

.header__nav__item--drop {
  position: relative;
}

.header__nav__item--drop img {
  position: absolute;
  top: 53%;
  right: 13px;
  transform: translateY(-43%);
}

.header__phone {
  font-size: 18px;
  line-height: 17px;
  color: #004C75;
  font-family: "GothamPro";
  margin: 0 15px;
}

.header__social a {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.header__social a:last-child {
  margin-right: 0;
}

.button {
  border-radius: 19px;
  padding: 0 25px;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
}

.button--small {
  font-weight: normal;
  font-size: 14px;
  line-height: 35px;
  height: 35px;
}

.button--white {
  background: rgba(255, 255, 255, 0.76);
  color: #0E2549;
}

.button--yellow {
  background: #FFF56A;
  color: #0E2549;
}

.header__bottom {
  margin-top: 17px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__bottom.scrolling {
  margin-top: 0;
}

.search__button {
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
}

.search__button label {
  position: absolute;
  width: 30px;
  height: 30px;
}

.header-search {
  width: 31px;
  height: 39px;
  position: absolute;
  top: -36px;
  right: -5px;
  background: transparent;
  outline: none;
  border-radius: 25px;
  border: 1px solid transparent;
  box-sizing: border-box;
  color: transparent;
  z-index: -1;
  transition: width 0.3s;
}

.header-search.active {
  width: 540px;
  background: #1C9DC3;
  border: 1px solid #1C9DC3;
  padding: 0 15px;
  color: #fff;
  font-family: "GothamPro", sans-serif;
  z-index: 1;
  top: 27px;
}

.search__button-svg.active {
  position: absolute;
  right: 1px;
  z-index: 90;
}

.header-search-submit {
  display: none;
}

.search-form-header {
  width: 30px;
  height: 30px;
  top: -31px;
  position: relative;
  cursor: pointer;
}

.search__button-svg.active path {
  stroke: #fff;
}

.search__button-svg.active circle {
  stroke: #fff;
}

.button--big {
  height: 50px;
  line-height: 50px;
  font-family: "GothamPro";
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 60px;
}

.button--pulse {
  color: #fff;
  animation: radial-pulse 3s infinite;
  background: #FF295B;
}

@keyframes radial-pulse {
  0% {
    background-color: #ff295b;
    box-shadow: 0 0 5px #ff295b;
  }
  50% {
    background-color: rgba(255, 41, 91, 0.8);
    box-shadow: 0 0 20px rgba(255, 41, 91, 0.8);
  }
  100% {
    background-color: rgba(255, 41, 91, 0.7);
    box-shadow: 0 0 5px rgba(255, 41, 91, 0.7);
  }
}
.search__button {
  margin: 0 20px 0 20px;
}

.header__bottom .button:nth-child(2) {
  margin: 0 20px;
}

#boxercontainer img {
  max-width: 100%;
}

.mouse-parallax-bg {
  position: relative;
  background-image: url(/assets/banner-img-0419ed6b31481b51ee3471320276e9af36f2a23a4af55ef0f3a93f06f4018061.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.1s ease;
}

.banner__center__wrap {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.banner__img {
  width: 50%;
  height: 629px;
  position: relative;
}

.banner__img img {
  position: absolute;
  top: -32px;
  z-index: -1;
}

.banner__center__text {
  width: 50%;
}

.banner__title {
  font-weight: bold;
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-size: 69px;
  line-height: 65px;
  margin-bottom: 10px;
  background: linear-gradient(70deg, #AE2A34 0%, #2E7589);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 30px;
  padding-bottom: 10px;
}

.banner__text {
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 45px;
  color: #2B4C71;
}

.banner__price {
  font-size: 35px;
  color: #fff;
  padding-bottom: 13px;
  border-bottom: 1px solid #fff;
  margin-right: 80px;
}

.button--color {
  background: linear-gradient(to right, #e54e7c -200%, #fff);
  font-size: 14px;
  color: #000;
  transition: all 0.5s;
}

.button--color:hover {
  background: linear-gradient(to left, #e54e7c -200%, #fff);
}

.banner__help {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

.ruble-sym {
  font-family: "PT Rouble Sans", sans-serif;
  font-style: normal;
}

.banner__price span {
  padding-left: 30px;
}

.banner__bottom__item img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 38px;
}

.banner__bottom__title {
  font-family: "Lora", sans-serif;
  font-style: italic;
  font-weight: bold !important;
  font-size: 23px;
  line-height: 24px !important;
  color: #004C75;
  margin-bottom: 5px;
}

.banner__bottom__desc {
  font-size: 14px;
  color: #004C75;
  font-family: "GothamPro";
  font-weight: 500;
}

.needhelp {
  padding: 125px 0 65px 0;
  position: relative;
}

.section h3 {
  font-family: "Lora";
  font-size: 36px;
  line-height: 31px;
  color: #6D5359;
  margin: 0 0 30px 0;
}

.banner__bottom__bg {
  position: absolute;
  width: 110%;
  height: 90px;
  left: -90px;
  background-image: url(/assets/line-7a4aeab1b649712ff2e46368f0be5e6b8221b67d53545d9de64c3f8ec13aeceb.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -50px;
}

.banner__bottom {
  margin-top: -48px;
}

.banner__bottom__wrap {
  position: relative;
}

.needhelp__inner {
  padding: 15px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.partners__item .needhelp__inner {
  padding: 10px;
}

.sbp-payment-style {
  height: 69px !important;
}

@media screen and (max-width: 768px) {
  .needhelp__inner {
    padding: 15px;
  }
}
.needhelp__img {
  overflow: hidden;
  border-top-right-radius: 19px;
  border-top-left-radius: 19px;
  margin-bottom: 20px;
  height: 266px;
}

.needhelp__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.needhelp__item.needhelp__item--strong {
  border: 1px solid #E54E7C;
  box-sizing: border-box;
  box-shadow: 0px 4px 13px rgba(229, 78, 124, 0.23);
  border-radius: 9px;
  position: relative;
}

.about .needhelp__item {
  color: #3A3A3A;
}

.needhelp__text .readmore {
  display: block;
  margin-top: 15px;
}

.needhelp__item {
  border: 1px solid transparent;
  border-radius: 9px;
  transition: all 0.3s;
  margin-bottom: 30px;
  width: 31%;
}

.needhelp__item:hover {
  border-color: #E54E7C;
}

.needhelp__wrap {
  flex-wrap: wrap;
}

.needhelp__item--strong__bg {
  background-image: url(/assets/urgent-sticker-c9025977c827c3885a1c89a5f2fc96f66877870d1a809c915db54f9b0fecfa41.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 114%;
  height: 109%;
  position: absolute;
  top: 17px;
  left: 6px;
  z-index: 1;
}

.needhelp__item--strong__wrap {
  position: absolute;
  top: -33px;
  left: -49px;
  font-size: 18px;
  line-height: 18px;
  color: #FFFFFF;
  font-family: "GothamPro";
  width: 185px;
  height: 158px;
}

.needhelp__item--strong__wrap span {
  position: absolute;
  top: 65px;
  left: 68px;
  z-index: 2;
}

.needhelp__title {
  font-size: 24px;
  line-height: 109.5%;
  color: #000000;
  margin-bottom: 17px;
}

.needhelp__diagnosis {
  font-size: 13px;
  line-height: 138.5%;
  height: 70px;
}

.needhelp__diagnosis span {
  font-style: italic;
  font-family: "Lora", sans-serif;
  color: #004C75;
  font-weight: bold;
  margin-right: 5px;
}

.needhelp__diagnosis--top {
  margin-bottom: 5px;
}

.progress {
  height: 6px;
  margin-bottom: 20px;
  margin-top: 20px;
  background: #DFDFDF;
}

.progress-bar-success {
  background: #8FB1C2;
  height: 100%;
  position: relative;
}

.needhelp__item.needhelp__item--strong .progress-bar-success {
  background: #E76866;
}

.needhelp__item.needhelp__item--strong .progress-bar span {
  background: #E76866;
}

.progress-bar span {
  display: block;
  position: absolute;
  width: 63px;
  height: 22px;
  background: #004C75;
  border-radius: 66px;
  text-align: center;
  font-size: 17.0323px;
  line-height: 22px;
  color: #FFFFFF;
  font-family: "GillSans";
  top: -8px;
  right: -55px;
}

.needhelp__sum__item {
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.04em;
}

.needhelp__sum__item span {
  display: block;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
}

.needhelp__sum__num {
  color: #000000;
}

.needhelp__sum__num span {
  color: #7C7C7C;
}

.needhelp__sum__need {
  color: #DF6682;
  font-family: "GothamPro";
}

.needhelp__sum__need span {
  color: #000000;
}

.needhelp__sum {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 13px;
}

.needhelp__button {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.needhelp__item.needhelp__item--strong .button__block {
  background: #DF6682;
}

.needhelp__item.needhelp__item--strong .button__block:hover {
  background: #1C9DC3;
}

.button__block {
  width: 188px;
  height: 42px;
  line-height: 42px;
  background: #1C9DC3;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #F9F9F9;
  font-family: "GillSans";
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}

.button__block:focus {
  outline: none;
}

.button__block:hover {
  background: #DF6682;
}

.needhelp__link {
  font-size: 14px;
  line-height: 100%;
  text-transform: capitalize;
  color: #2F80ED;
  transition: all 0.3s;
}

.hero-flower-left {
  position: absolute;
  top: 308px;
  width: 196px;
  z-index: -1;
}

.hero-flower-right {
  position: absolute;
  top: 378px;
  right: 0;
  z-index: -1;
}

.needhelp-cloud {
  position: absolute;
  top: 51px;
  left: 0;
  z-index: -1;
}

.helpsum-cloud {
  position: absolute;
  top: 603px;
  left: 0;
  z-index: -1;
}

.news-cloud {
  position: absolute;
  top: 100px;
  right: 0;
  z-index: -1;
}

.fond-cloud {
  position: absolute;
  top: 150px;
  left: 0;
  z-index: -1;
}

.help__num h3 {
  text-align: center;
  margin-bottom: 50px;
}

.help__num {
  padding: 65px 0 60px 0;
  position: relative;
}

.help__num-vector img {
  position: absolute;
  width: 109%;
  left: -4%;
  bottom: 1%;
  z-index: -1;
}

.help__flowers {
  position: absolute;
  z-index: -1;
  bottom: -46px;
  right: 0;
}

.main__news {
  position: relative;
}

.news {
  padding-bottom: 80px;
}

.main__news__top {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.all__link {
  font-size: 24px;
  line-height: 31px;
  color: #004C75;
}

.needhelp__button__link {
  display: block;
  width: 254px;
  height: 51px;
  text-align: center;
  line-height: 51px;
  background: #FFFFFF;
  border: 1px solid #1C9DC3;
  box-sizing: border-box;
  border-radius: 50px;
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  color: #004C75;
  margin: 0 auto;
}

.news__main__blocks {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.news__main__wrap {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.news__main__first {
  width: 55%;
}

.news__main__blocks {
  width: 44%;
}

.news__main__date {
  font-size: 12px;
  color: #6B6B6B;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.news__main__first__title {
  font-size: 24px;
  line-height: 140%;
  color: #3A3A3A;
  font-family: "GothamPro";
  font-weight: 600;
}

.news__main__blocks__title {
  font-size: 16px;
  line-height: 140%;
  color: #3A3A3A;
  font-family: "GothamPro";
  font-weight: 500;
}

.news__main__blocks__item {
  margin-bottom: 20px;
}

.main__form__text {
  font-style: italic;
  font-weight: normal;
  font-size: 24px;
  line-height: 150%;
  color: #000000;
  font-family: "Lora", sans-serif;
  margin-bottom: 30px;
  margin-top: 0;
}

.main__form__wrap {
  position: relative;
}

.main__form__bg {
  position: absolute;
}

.input__form input {
  outline: none;
  background: #FFFFFF;
  border: 1px solid #FEAFC5;
  box-sizing: border-box;
  border-radius: 35px;
  font-family: "GothamPro";
  font-size: 16px;
  color: #000000;
  padding: 0 40px;
  box-sizing: border-box;
  height: 55px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 35px;
}

.form__button {
  cursor: pointer;
  height: 50px;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
  border: none;
  font-size: 14px;
  line-height: 50px;
  text-transform: uppercase;
  color: #F9F9F9;
  background: #DF6682;
  border-radius: 62px;
  font-family: "GillSans";
}

#podpiska .personal a {
  color: #004C75;
}

.personal {
  margin-top: 20px;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  font-family: "GothamPro";
}

.main__form__wrap {
  width: 70%;
  line-height: 20px;
}

.personal a {
  color: #000000;
}

.personal a:hover {
  text-decoration: underline;
}

.main__form__block {
  position: relative;
}

.main__form__line-vector {
  position: absolute;
  width: 111%;
  left: -6%;
  bottom: -15%;
  z-index: -1;
}

.main__form__line-tree {
  position: absolute;
  bottom: -80%;
  right: -10%;
  z-index: -1;
}

.main__about__wrap {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main__about__text h4 {
  margin: 0 0 20px 0;
}

.main__about__text p {
  font-size: 14px;
  line-height: 190%;
  color: rgba(58, 58, 58, 0.76);
  margin: 0;
}

.main__about__img {
  width: 424px;
  margin-right: 90px;
}

.main__about__text {
  width: calc(100% - 514px);
}

.main__about__link {
  width: 100%;
  text-align: right;
  font-size: 14px;
  line-height: 16px;
  color: #004C75;
  font-family: "GothamPro";
  display: block;
  margin-top: 50px;
}

.main__about__link svg {
  display: inline-block;
  vertical-align: middle;
}

.main__doc__link {
  display: block;
  position: relative;
  height: 190px;
  width: 130px;
  margin-right: 0;
  border-radius: 9px;
  transition: all 0.3s;
  background-repeat: no-repeat;
  background-size: cover;
}

.main__doc__link:hover .main__doc-layer {
  background-color: transparent;
}

.main__doc__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}

.main__doc-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.47);
  border: 1px solid #bce8f7;
}

.main__doc__text h4 {
  font-size: 14px;
  line-height: 100%;
  color: #004C75;
  font-family: "GothamPro";
  margin: 0 0 5px 0;
}

.main__doc__text a {
  color: #004C75;
}

.main__doc__text p {
  font-size: 14px;
  line-height: 190%;
  color: #171839;
  margin: 0 0 10px 0;
}

.main__doc__text b {
  font-weight: 500;
}

.main__doc__text__num {
  font-size: 18px;
  line-height: 17px;
  color: #171839;
}

.main__doc__text__num span {
  font-family: "GothamPro";
}

.main__doc__text__num:last-child {
  margin-top: 10px;
}

.main__doc__title {
  font-size: 13px;
  line-height: 15px;
  color: #727272;
  z-index: 2;
  font-weight: 500;
  position: relative;
  bottom: -200px;
  padding: 4px;
}

.main__doc__wrap .main__about__link {
  margin-top: 20px;
}

.main__doc__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-repeat: no-repeat;
}

.main__program h3 {
  text-align: center;
  margin-bottom: 9px;
}

.main__program h4 {
  font-size: 16px;
  line-height: 157.5%;
  margin-top: 0;
  margin-bottom: 65px;
  color: #004C75;
  font-family: "Lora", sans-serif;
  font-style: italic;
  text-align: center;
}

.main__doc__list {
  justify-content: space-between;
  width: 50%;
  padding-right: 30px;
}

.main__doc__text {
  width: 50%;
}

.main__form {
  padding: 100px 0 50px 0;
  position: relative;
}

.main__about {
  padding: 40px 0 0 0;
  position: relative;
}

.main__doc {
  padding: 27px 0 0 0;
}

.main__program {
  padding: 80px 0 0 0;
  position: relative;
}

.main__program__item {
  position: relative;
  padding: 0 35px 0 35px;
  box-sizing: border-box;
  border: 1px solid #F7B1C5;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.main__program__title {
  font-size: 24px;
  line-height: 31px;
  color: #A61E29;
  font-family: "Lora";
  margin-bottom: 30px;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  margin-top: -40px;
  font-weight: bold;
  font-style: italic;
  background: #FDFCFA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main__program__text {
  font-size: 14px;
  line-height: 157.5%;
  text-align: center;
  color: #3A3A3A;
  margin-bottom: 30px;
}

.main__program__text p {
  margin: 0;
}

.main__program__link {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  font-family: "GothamPro";
  color: #004C75;
  margin-bottom: 20px;
  margin-top: auto;
}

.main__program__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 20px;
  left: 0;
  background-image: url(/assets/line-progr-dd5b95a950143ce5614908dea553121ec9d2b18f70663872344a961779927887.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.how__help {
  padding-top: 30px;
}

.how__help h3 {
  text-align: left;
  margin-bottom: 35px;
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-size: 36px;
  line-height: 31px;
  color: #6D5359;
}

.how__help__text {
  max-width: 743px;
}

.how__help__text p {
  margin: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 190%;
}

.how__help__text p:nth-child(2) {
  margin-bottom: 30px;
}

.how__help__text .button__block {
  display: inline-block;
  font-size: 14px;
  font-family: "GothamPro";
}

.how__help__text .button {
  color: #fff;
  background: #DF6682;
  transition: all 0.3s;
  margin-top: 15px;
}

.how__help__text .button:hover {
  background: #1C9DC3;
}

.main__help {
  padding: 70px 0 120px 0;
}

.main__help__left {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main__help__item {
  width: 37%;
  margin-bottom: 30px;
  margin-right: 13%;
}

.main__help__item:nth-child(2n+2) {
  margin-right: 0;
}

.main__help__item h4 {
  font-style: italic;
  font-size: 24px;
  line-height: 31px;
  color: #555555;
  font-family: "Lora";
  margin-bottom: 20px;
  text-align: left;
}

.main__help__item p {
  font-size: 14px;
  line-height: 150%;
  margin: 0;
}

.main__help__right p {
  font-size: 16px;
  line-height: 150%;
  font-family: "Lora", sans-serif;
  font-style: italic;
  margin: 10px 0 0 0;
}

.main__help__right a {
  display: block;
  margin-top: 45px;
  font-size: 16px;
  line-height: 15px;
  color: #BE443C;
  transition: all 0.3s;
}

.main__program__bg_1 {
  position: absolute;
  width: 526px;
  height: 421px;
  top: 310px;
  right: 230px;
  background: url(/assets/howhelp-1-3b052df98df5093a601291f9b0ba43f96b352689de374be405c58352fae0618c.png) no-repeat;
  z-index: -1;
}

.main__program__bg_2 {
  position: absolute;
  width: 703px;
  height: 632px;
  top: 585px;
  right: -50px;
  background: url(/assets/howhelp-7ba0087710265b5c5894d0176e9d7adca107d05791c29d9a00ace49ba2082faa.png) no-repeat;
}

.main__partners {
  background: #fff;
  padding: 35px 0 20px 0;
  display: none;
}

.main__partners__item {
  max-width: 205px;
  text-align: center;
  margin-right: 50px;
  margin-bottom: 25px;
}

.main__partners__item img {
  max-width: 100%;
}

.main__partners__link {
  text-align: center;
}

.main__partners__link a {
  font-size: 18px;
  line-height: 31px;
  text-transform: uppercase;
  color: #1C9DC3;
}

.main__about h4 {
  font-style: italic;
  font-family: "Lora", sans-serif;
  font-size: 16px;
  line-height: 16px;
  color: #3A3A3A;
  margin: 0 0 15px 0;
}

.main__about p {
  font-size: 14px;
  line-height: 190%;
  color: rgba(58, 58, 58, 0.76);
  margin: 0 0 25px 0;
}

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

.main__about ul li {
  font-size: 14px;
  line-height: 197%;
  color: rgba(58, 58, 58, 0.76);
  position: relative;
  padding-left: 20px;
}

.main__about ul {
  margin-bottom: 20px;
}

.pages-content ul li {
  position: relative;
}

.pages-content ul.ya-share2__list {
  margin-bottom: 0;
}

.main__about ul li:before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  top: 11px;
  left: 0;
  background: url(/assets/list_main-023afd06b4bd5462c58c0c71dbba61717758d5eabff86e8036428ff26398614e.svg) no-repeat;
}

.main__about {
  padding-bottom: 30px;
}

.about__main-banner {
  width: 100%;
  height: 376px;
  background-image: url(/assets/about-bg-01-8eeea3a406bbcb8ec9ca1eadd52818de1ebd4ef9742a2925e7d1793354fb8db8.jpg);
  background-position: center;
  background-size: cover;
  padding: 45px 35px;
  box-sizing: border-box;
}

.pages-content .about__main-banner p {
  font-family: "Lora", sans-serif;
  font-style: italic;
  font-weight: normal;
  font-size: 30px;
  line-height: 40px;
  color: #6D5359;
  width: 48%;
}

.help-form {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.help-radio-label {
  height: 51px;
  border: 1px solid #1C9DC3;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: inherit;
}

.help-radio-label:hover {
  background-color: #1C9DC3;
}

.help-radio-label:hover span {
  color: #fff;
}

.help-radio-hidden {
  display: none;
}

.help-radio-hidden:checked + span {
  background-color: #1C9DC3;
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-radio-style {
  color: #000;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.help-input {
  border: 1px solid #1C9DC3;
  margin-left: 15px;
  font-weight: bold;
  font-size: 18px;
  font-family: "GothamPro", sans-serif;
  margin-right: 30px;
  text-align: center;
  outline: none;
}

.help-input::placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C9DC3;
  font-weight: bold;
  font-size: 18px;
  font-family: "GothamPro", sans-serif;
  text-align: center;
  opacity: 0.5;
}

.help-form__labels {
  width: 80%;
  display: flex;
}

.sum-donation-main-button {
  outline: none;
  background: #FF295B;
  border-radius: 50px;
  border: none;
  width: 20%;
  font-size: 14px;
  font-weight: 600;
  font-family: "GillSans";
  text-transform: uppercase;
  color: #F9F9F9;
  transition: 0.3s;
}

.sum-donation-main-button:hover {
  background-color: #1C9DC3;
}

.help-form__top {
  display: flex;
}

.help-radio-option {
  display: flex;
  width: 30%;
  align-items: center;
}

.help-radio-option input {
  display: none;
}

.help-option-style {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #004C75;
  display: block;
  margin-right: 12px;
  position: relative;
}

.help-option-style:after {
  transition: 0.2s;
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: #E54E7C;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.help-radio-option input:checked + .help-option-style {
  border: 1px solid #E54E7C;
}

.help-radio-option input:checked + .help-option-style:after {
  width: 17px;
  height: 17px;
}

.help-radio-option input:checked + .help-option-style + .help-option-text b {
  color: #004C75;
}

.help-option-text {
  font-size: 18px;
}

.help-option-text b {
  color: #E54E7C;
  font-weight: normal;
}

.help-form__personal {
  color: #7C7C7C;
  font-size: 13px;
  width: 40%;
}

.help-form__personal a {
  color: #004C75;
}

.help-form__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.donation-form__recurring {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.main__tezis {
  background-image: url(/assets/angel-main-bg-4e924381c879d0a7469908b2cb9d17a1c642e41249b2aa9173fc2a95418b7f4b.png);
  height: 405px;
  display: flex;
  align-items: center;
}

.main__tezis-quote {
  width: 60%;
  margin-left: auto;
  font-family: "Lora", sans-serif;
  font-size: 24px;
  line-height: 150%;
  color: #fff;
  font-style: italic;
  position: relative;
}

.main__tezis-quote svg {
  position: absolute;
  top: -53px;
  left: -125px;
}

.quote__name {
  text-align: right;
  display: block;
  font-family: "GillSans", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: #FFFFFF;
}

footer {
  background: #004C75;
  padding: 30px 0;
  color: #A3BFC8;
  position: relative;
  font-size: 14px;
}

.footer__wrap {
  display: flex;
  margin-bottom: 0;
}

.footer__title {
  font-weight: 500;
  margin-bottom: 25px;
}

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

.footer__socials a {
  cursor: pointer;
  width: 15px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.main__about-last {
  margin-bottom: 50px;
}

.footer__form {
  width: 200px;
  height: 47px;
  border-radius: 31px;
  border: 1px solid #fff;
  background-color: transparent;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-family: "GothamPro", sans-serif;
  margin-top: 24px;
  transition: 0.3s;
}

.footer__form:hover {
  background-color: #DF6682;
  border: 1px solid #DF6682;
}

.footer-deco-lh {
  position: absolute;
  top: -158px;
  z-index: -1;
}

.footer-deco-rh {
  position: absolute;
  top: -107px;
  z-index: -1;
  right: -8px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #fff;
  padding-top: 25px;
}

.footer__addr {
  line-height: 20px;
}

.footer__addr a {
  color: #A3BFC8;
}

.footer__text a {
  color: #A3BFC8;
}

.footer__menu__item {
  margin-bottom: 10px;
  font-weight: 500;
}

.footer__menu__item a {
  color: #A3BFC8;
  text-transform: uppercase;
}

.footer__item-contacts {
  padding-right: 20px;
  box-sizing: border-box;
}

.n-p__layer {
  position: absolute;
  width: 100%;
  background: rgba(46, 47, 48, 0.74);
  z-index: 900;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 75px 0;
}

.n-p__layer.active {
  display: flex;
}

.n-p__radio img {
  margin-left: 21px;
}

.n-p {
  width: 100%;
  position: absolute;
  background-color: #fff;
  border-radius: 4px;
  font-family: "GothamPro", sans-serif;
  padding-top: 20px;
  max-width: 1160px;
  top: 60px;
}

.pages-content .n-p__tabs ul li:after {
  display: none;
}

.n-p h2 {
  font-weight: 700;
  margin-top: 0;
  text-align: center;
}

.n-p__diagnosis {
  display: flex;
  padding: 0 50px;
  text-align: center;
  font-size: 16px;
  justify-content: center;
  margin-bottom: 25px;
}

.n-p__diagnosis span {
  font-style: italic;
}

.n-p__diagnosis p {
  margin: 0;
  font-weight: 300;
}

.n-p__tabs ul {
  display: flex;
  list-style: none;
  padding: 0 50px;
}

.n-p__tabs_referal ul {
  display: flex;
  list-style: none;
  padding: 0 50px;
}

.n-p__tabs li {
  cursor: pointer;
  text-transform: uppercase;
  color: #2A373D;
  font-size: 18px;
  height: 64px;
  width: 33.3333333333%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #004C75;
  transition: all 0.3s;
}

.n-p__tabs_referal li {
  cursor: pointer;
  text-transform: uppercase;
  color: #2A373D;
  font-size: 18px;
  height: 64px;
  width: 33.3333333333%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #004C75;
  transition: all 0.3s;
}

.n-p__tabs li.active {
  color: #FFF;
  border: 2px solid #FF295B;
  background-color: #FF295B;
}

.n-p__tabs_referal li.active {
  color: #FFF;
  border: 2px solid #FF295B;
  background-color: #FF295B;
}

.n-p__tabs li:nth-child(2) {
  border-left: none;
  border-right: none;
}

.n-p__tabs li:nth-child(3) {
  border-right: none;
}

.n-p__tabs-content {
  display: none;
}

.n-p__tabs_referal-content {
  display: none;
}

.n-p__tabs-content.active {
  display: flex;
  flex-direction: column;
}

.n-p__tabs_referal-content.active {
  display: flex;
  flex-direction: column;
}

.n-p h3 {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  font-family: "Lora", sans-serif;
  font-size: 30px;
  color: #1B1B1B;
}

.n-p__tabs-types {
  padding: 0 50px;
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start;
}

.n-p__radio {
  width: 24%;
  position: relative;
  border-radius: 9px;
  height: 68px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.n-p__radio-border {
  border: 2px solid rgba(220, 220, 220, 0.23);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 9px;
}

.n-p__radio input {
  display: none;
}

.n-p__radio input:checked + .n-p__radio-custom span {
  background: #FF295B;
}

.n-p__radio input:checked + .n-p__radio-custom {
  border: 1px solid #FF295B;
}

.n-p__radio input:checked + .n-p__radio-custom + .n-p__radio-border {
  border: 2px solid #FF295B;
}

.n-p__radio p {
  margin-bottom: 0;
  margin-left: 15px;
}

.n-p__radio-custom {
  background: transparent;
  border: 1px solid #B8B6B6;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 11px;
  transition: 0.3s;
}

.n-p__radio-custom span {
  background-color: #B8B6B6;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.n-p__current {
  position: relative;
  background: #1C9DC3;
  display: flex;
  padding: 37px 50px 27px 50px;
  justify-content: space-between;
}

.n-p__some {
  width: 48%;
  position: relative;
}

.n-p__some.active {
  border: 1px solid #FF295B !important;
}

.n-p__triangle {
  border: 41px solid transparent;
  border-top: 20px solid #1C9DC3;
  position: absolute;
  bottom: -54px;
  left: 50%;
  transform: translateX(-50%);
}

.n-p__some--left {
  background-color: #fff;
  display: flex;
  border-radius: 4px;
  height: auto;
}

.n-p__some-pic {
  height: 100%;
  margin-right: 32px;
  border-radius: 4px;
  overflow: hidden;
  display: inline-table;
}

.n-p__some--heart {
  width: 38px;
  height: 34px;
  position: absolute;
  top: 37%;
  left: 180px;
}

.n-p__some--heart path.active {
  fill: #004C75;
}

.n-p__some-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.n-p__some-numeral {
  display: flex;
  line-height: 100%;
  color: #FF295B;
}

.n-p__some-numeral p {
  margin: 0 14px 0 0;
  font-size: 28px;
}

.n-p__some-numeral span {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 39px;
}

.n-p__some__desc {
  padding: 7px 7px 7px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.n-p__some__desc h4 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 400;
}

.n-p__some__desc div {
  display: flex;
  font-size: 12px;
  align-items: center;
}

.n-p__some__desc div p {
  margin: 0;
  font-size: 14px;
}

.n-p__some-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.n-p__some-right h2 {
  font-size: 24px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 28px 0;
  text-align: left;
  font-family: "Lora", sans-serif;
}

.n-p__some-much {
  display: flex;
  align-items: center;
  position: relative;
}

.n-p__some-much:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #fff;
  bottom: 0;
}

.n-p__some-much input {
  background: none;
  outline: none;
  height: 67px;
  font-size: 22px;
  color: #fff;
  border: none;
  width: 90%;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.n-p__some-much input::placeholder {
  color: #fff;
}

.n-p__some-much input::-webkit-outer-spin-button,
.n-p__some-much input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.n-p__some-much span {
  font-size: 30px;
  line-height: 40px;
  color: #FFFFFF;
  margin-left: 18px;
}

.n-p__list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.n-p__list {
  padding: 50px 50px 60px 50px;
}

.n-p__list h3 {
  color: #004C75;
}

.n-p__list .n-p__some {
  height: auto;
  display: flex;
  border-radius: 4px;
  border: 1px solid #BFBFBF;
  margin-bottom: 35px;
}

.n-p__list .n-p__some.hiddens {
  display: none;
}

.n-p__list .n-p__some:nth-child(1).hiddens,
.n-p__list .n-p__some:nth-child(2).hiddens,
.n-p__list .n-p__some:nth-child(3).hiddens,
.n-p__list .n-p__some:nth-child(4).hiddens {
  display: flex !important;
}

.n-p__list-more {
  font-size: 24px;
  line-height: 40px;
  display: flex;
  align-items: center;
  text-decoration-line: underline;
  color: #1C9DC3;
  position: relative;
  width: max-content;
  margin: 0 auto;
  font-weight: 300;
}

.n-p__list-more:after {
  position: absolute;
  display: block;
  content: url(/assets/payment/down-arrow-8cac0f67369671a3d644b3ade19e03771996ac5ce41cac78ffa64f29a3413292.svg);
  right: -15px;
  top: 3px;
}

.n-p__final {
  height: 300px;
  background: rgba(255, 41, 91, 0.13);
  position: relative;
}

.n-p__final b {
  color: #FF295B;
}

.n-p__final h2 {
  margin-top: 20px;
  font-family: "Lora", sans-serif;
  margin-bottom: 10px;
  font-size: 30px;
}

.n-p__final span {
  font-size: 14px;
  font-family: "GothamPro";
  font-weight: 300;
  width: 80%;
  display: block;
  margin: 43px auto 20px auto;
  text-align: center;
  color: #000;
}

.n-p__submit {
  cursor: pointer;
  width: 410px;
  height: 89px;
  background-color: #FF295B;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  margin: 0 auto;
  border-radius: 49px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.19);
  position: relative;
  font-weight: 400;
  transition: 0.3s;
}

.n-p__submit:hover {
  color: #fff;
  background-color: #1C9DC3;
}

.n-p__submit-form {
  width: 410px;
  height: 89px;
  background-color: #FF295B;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  margin: 0 auto;
  border-radius: 49px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.19);
  position: relative;
  border: none;
  transition: 0.3s;
}

.n-p__submit-form:hover {
  background-color: #1C9DC3;
}

.n-p__final-form.active {
  top: -74px;
  z-index: 99999;
}

.n-p__sms {
  padding: 60px 50px;
  position: relative;
}

.bogdasha-pic {
  position: absolute;
  right: 10px;
  top: -10px;
}

.n-p__sms p {
  font-size: 22px;
  line-height: 30px;
  color: #3A3A3A;
  margin-bottom: 35px;
}

.n-p__sms p b {
  color: #1C9DC3;
}

.n-p__sms span {
  font-size: 14px;
  color: #000;
  font-family: "GothamPro";
  font-weight: 300;
  display: block;
}

.n-p__banks {
  display: flex;
  padding: 25px 50px 35px 50px;
}

.n-p__banks-item {
  width: 27%;
  margin-bottom: 30px;
  margin-right: 9%;
}

.n-p__banks-item img {
  margin-bottom: 7px;
}

.n-p__banks-item div {
  display: flex;
  justify-content: space-between;
}

.n-p__banks-item div a {
  text-decoration: underline;
  color: #004C75;
}

.n-p__currency {
  background-color: rgba(242, 138, 26, 11%);
  padding-top: 35px;
  padding-bottom: 90px;
}

.n-p__banks--currency {
  justify-content: left;
}

.n-p__banks--currency .n-p__banks-item {
  margin-right: 9%;
}

.n-p__tabs-banks h3 {
  text-align: left;
  padding: 0 50px;
}

.n-p__banks-title {
  margin-top: 30px;
}

.body-wrap {
  overflow: unset !important;
}

.n-p__final-form {
  position: absolute;
  top: -7000px;
  background: #fff;
  border-radius: 4px;
  height: 334px;
  display: flex;
  /*width: 100%;
  max-width: 100%;*/
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  transition: 0.3s;
  box-sizing: border-box;
  left: 50%;
  transform: translateX(-50%);
}

.n-p__radio:last-child p {
  margin-left: 15px;
}

@media (max-width: 768px) {
  .n-p__final-form {
    width: 100%;
  }
  .n-p__final-form label:last-child {
    width: 100%;
  }
  .sbp-payment-style {
    height: 50px !important;
    margin-left: 50px !important;
  }
}
.n-p__final-form-wrap {
  display: flex;
  flex-direction: row;
  width: 100% !important;
  justify-content: space-between;
}

.n-p__final-form div {
  font-size: 18px;
  color: #3A3A3A;
  font-family: "GothamPro", sans-serif;
}

.n-p__final-form .n-p__submit {
  border: none;
}

.n-p__final-form label {
  width: 50%;
  margin-right: 15px;
}

.n-p__final-form label:last-child {
  width: 50%;
  margin-right: 0px;
}

.n-p__final-form label span {
  margin: 0;
  text-align: left;
  margin-bottom: 10px;
}

.n-p__final-last {
  width: 30%;
  position: relative;
  display: flex;
}

.n-p__final-last .checkbox-move {
  margin: 0;
  left: 0;
  top: 32px;
}

html .n-p__final-last p {
  margin-top: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  height: 49px;
  margin-bottom: 0;
  position: relative;
  margin-left: 111px;
  top: 27px;
}

.n-p__layer-sec {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(46, 47, 48, 0.74);
  top: 0;
  left: 0;
}

.n-p__layer-sec.active {
  display: block;
  z-index: 4;
}

.n-p__final-form.pozh.active {
  box-shadow: 1px 2px 150px black;
}

.n-p__final-input {
  width: 341px;
  padding: 0 22px;
  height: 67px;
  border: 1px solid #999999;
  box-sizing: border-box;
  border-radius: 3px;
  color: rgba(58, 58, 58, 0.56);
  font-size: 22px;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}

.n-p__final-input::placeholder {
  color: #C4C4C4;
}

.n-p__checkbox {
  width: 84px;
  height: 35px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.submit-form-wrap {
  position: relative;
  width: 410px;
  margin: 0 auto;
}

.chbox_layer_mark {
  position: absolute;
  right: 14px;
  top: 9px;
}

.toggle-button-cover {
  display: table-cell;
  position: relative;
  width: 200px;
  height: 140px;
  box-sizing: border-box;
}

.button-cover {
  height: 100px;
  margin: 20px;
  background-color: #fff;
  box-shadow: 0 10px 20px -8px #c5d6d6;
  border-radius: 4px;
}

.button-cover:before {
  counter-increment: button-counter;
  content: counter(button-counter);
  position: absolute;
  right: 0;
  bottom: 0;
  color: #d7e3e3;
  font-size: 12px;
  line-height: 1;
  padding: 5px;
}

.button-cover, .knobs, .chbox_layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button-custom {
  position: absolute;
  bottom: 10px;
  width: 84px;
  right: 10px;
  height: 35px;
  margin: -20px auto 0 auto;
  overflow: hidden;
}

.button-custom.r, .button-custom.r .chbox_layer {
  border-radius: 100px;
}

.button.b2 {
  border-radius: 2px;
}

.checkbox-form-move {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.knobs {
  z-index: 2;
}

.chbox_layer {
  width: 100%;
  background-color: #004C75;
  transition: 0.3s ease all;
  z-index: 1;
}

/* Button 1 */
.checkbox-move .knobs:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

.checkbox-move .checkbox-form-move:checked + .knobs:before {
  content: "";
  left: 52px;
  background-color: #fff;
}

.checkbox-move .checkbox-form-move:checked ~ .chbox_layer {
  background-color: #FF295B;
}

.checkbox-move .knobs, .checkbox-move .knobs:before, .checkbox-move .chbox_layer {
  transition: 0.3s ease all;
}

.n-p__final-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 1px;
  top: -50px;
  cursor: pointer;
}

.n-p__close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 1px;
  top: -50px;
  cursor: pointer;
}

.n-p__main-title {
  color: #004C75;
  font-size: 36px;
  font-weight: bold;
  font-family: "Lora", sans-serif;
  margin-bottom: 15px;
}

.n-p__main-name {
  color: #000;
  font-family: "Lora", sans-serif;
  font-size: 30px;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.visa-payment-mobile {
  display: none;
}

.header-decor-lh {
  position: absolute;
  top: 0;
  z-index: -1.2;
  left: 0;
}

.header-decor-rh {
  position: absolute;
  top: 0;
  z-index: -1;
  right: 0;
}

.header-decor-mid {
  position: absolute;
  top: 400px;
  right: 0;
}

.about__title {
  font-family: "Lora", sans-serif;
  color: #6D5359;
  font-size: 36px;
}

.about__main {
  width: 100%;
  display: flex;
}

.about__main-text {
  width: 66.6%;
  line-height: 27px;
  margin-bottom: 100px;
}

.about__main-text p:first-child {
  margin-top: 0;
}

.about__main-text ul {
  list-style: disc;
  margin-left: 20px;
}

.about__main-form {
  width: 33.3%;
}

.about__banner {
  background-image: url(/assets/about-banner-4b7b0b6fd4771a17864f72ac8135addda1cc90a2f7ceb02ec748549ca6911966.png);
  height: 405px;
}

.about__banner .container {
  height: 100%;
  display: flex;
  align-items: flex-start;
  position: relative;
  justify-content: center;
  flex-direction: column;
}

.about__banner-wrapper {
  margin-top: 10px;
  width: 55%;
}

.about__banner-wrapper a {
  width: 160px;
  display: flex;
  height: 42px;
  border-radius: 44px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.about__banner-wrapper h2 {
  font-family: "Lora", sans-serif;
  font-weight: bold;
  font-size: 48px;
  color: #004C75;
  margin: 0;
}

.about__banner-wrapper p {
  font-family: "GothamPro", sans-serif;
  font-size: 18px;
  line-height: 130%;
  color: #004C75;
  margin: 25px 0;
}

.about__privacy {
  position: relative;
  top: 32px;
  width: 55%;
}

.about__privacy a {
  color: inherit;
  text-decoration: underline;
}

.help-form-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 83%;
}

.help-form-about .help-option-style {
  margin-right: 7px;
}

.help-form-about__title {
  text-align: center;
  font-size: 18px;
  color: #6D5359;
  font-family: "Lora", sans-serif;
  margin: 0 0 15px 0;
  position: absolute;
  top: -14px;
  background: #FDFCFA;
  padding: 0 19px;
}

.help-radio-option-about {
  width: 50%;
}

.about-form__input {
  outline: none;
  height: 0;
  transition: all 0.3s;
  box-sizing: border-box;
  text-align: center;
  font-family: "GothamPro", sans-serif;
  font-size: 0;
  font-weight: 600;
  border-radius: 0;
  border: none;
  padding: 0;
}

.about-form__input::placeholder {
  font-weight: normal;
}

.about-form__input.active {
  height: 51px;
  font-size: 16px;
  border-top: 1px solid #1C9DC3;
  border-left: 1px solid #1C9DC3;
  border-right: 1px solid #1C9DC3;
  border-bottom: none;
}

.about-form__input.clicked::placeholder {
  opacity: 0;
}

.about-cloud-rh {
  position: absolute;
  right: 0;
  top: 11%;
  z-index: -1;
}

.about-cloud-lh {
  position: absolute;
  left: 0;
  top: 19%;
  z-index: -1;
}

.about-form-summary {
  cursor: pointer;
}

.about-form {
  border: 2px solid #E54E7C;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 100%;
  margin-left: auto;
  padding: 20px 0;
  height: fit-content;
}

.about-form .help-form__top {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.about-form .help-form__labels {
  width: 100%;
}

.about-form .help-form__bottom {
  margin-bottom: 26px;
  margin-top: 13px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.about-form-titles {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 12px;
  color: #7C7C7C;
}

.about-form-titles a {
  text-decoration: underline;
  color: #FF295B;
}

.about-form .sum-donation-main-button {
  width: 66%;
  margin: 0 auto;
  height: 46px;
}

.about-form .help-form__personal {
  width: 100%;
}

.about-form .help-option-text {
  font-size: 16px;
}

.button-gradient {
  background: linear-gradient(180deg, rgba(109, 83, 89, 0.3) -283.39%, rgba(255, 255, 255, 0.2) 235.01%, #FFFFFF 235.01%);
  color: #0E2549;
  border-radius: 19px;
}

.scrolling .button-gradient {
  background: transparent;
}

.about__summary-label {
  width: 50%;
  display: flex;
  border-bottom: 1px solid #004C75;
  padding-bottom: 8px;
}

.about__summary-label input {
  background-color: transparent;
  border: none;
  font-family: "GothamPro", sans-serif;
  font-size: 35px;
  color: #004C75;
  font-weight: 500;
  outline: none;
  width: 45%;
}

.about__summary-label input::placeholder {
  color: rgba(0, 76, 117, 0.7098039216);
}

.about__summary-label span {
  font-family: "GothamPro", sans-serif;
  font-size: 35px;
  color: #004C75;
  width: 55%;
}

.about__summary-wrap {
  display: flex;
  width: 400px;
  justify-content: space-between;
}

.banner-wrapper {
  margin: 0 !important;
}

.children {
  position: relative;
}

.children-deco-left {
  position: absolute;
  left: 0;
  z-index: -1;
  top: 16%;
}

.children-deco-right {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
}

.children__title {
  font-family: "Lora", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #6D5359;
  width: 50%;
  margin-bottom: 15px;
  line-height: 40px;
}

.children__heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.documents, #form_1 {
  margin-top: 40px;
}

.children__desc {
  font-family: "Lora", sans-serif !important;
  font-style: italic !important;
  font-weight: normal !important;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #3A3A3A !important;
  width: 50%;
  padding-right: 130px;
  box-sizing: border-box;
}

.pages-content p {
  margin: 25px 0 20px 0;
  font-family: "GothamPro", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 174.5%;
  color: #3A3A3A;
}

.children__list {
  display: flex;
  margin-top: 30px;
  margin-bottom: 45px;
}

.children__search {
  width: 50%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.children__search-input {
  border-radius: 8px;
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #8FB1C2;
  padding-left: 16px;
  padding-right: 75px;
  font-family: "GothamPro", sans-serif;
  outline: none;
  background-color: transparent;
}

.search-form__table {
  position: relative;
  width: 100%;
}

.children__list {
  display: flex;
  flex-wrap: wrap;
}

.search {
  padding: 50px 0;
}

.search-suggest-input {
  border-radius: 8px;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #8FB1C2;
  padding-left: 16px;
  padding-right: 75px;
  font-family: "GothamPro", sans-serif;
  outline: none;
  background-color: transparent;
}

.search-suggest-input + select {
  display: none;
}

.search-page-submit {
  border-radius: 8px;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #1C9DC3;
  font-family: "GothamPro", sans-serif;
  outline: none;
  background-color: #1C9DC3;
  padding: 0 23px;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.search-page-submit:hover {
  background-color: #FF295B;
  border: 1px solid #FF295B;
}

.children__search-icon {
  position: absolute;
  top: 2px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1C9DC3;
  width: 70px;
  height: 48px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: 0.3s;
}

.children__search-icon:hover {
  background-color: #FF295B;
}

.children__search-icon td {
  position: relative;
}

.children__search-icon td input {
  width: 70px;
  height: 48px;
  position: absolute;
  left: -19px;
  top: -6px;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  color: transparent;
  outline: none;
}

.contacts {
  padding-bottom: 100px;
  position: relative;
}

.contacts__title {
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 58px;
  line-height: 40px;
  color: #6D5359;
}

.contacts__main {
  display: flex;
}

.contacts__left {
  width: 50%;
}

.contacts__right {
  width: 50%;
  position: relative;
}

.contacts__map {
  position: absolute;
  top: -111px;
  left: -122px;
}

.contacts__left-item {
  padding-left: 75px;
  position: relative;
  margin-bottom: 35px;
}

.contacts__left-item img {
  position: absolute;
  top: 4px;
  left: 0;
}

.contacts__left-item p {
  color: #6D5359;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
}

.contacts__address {
  width: 100%;
  line-height: 28px;
  margin-bottom: 40px;
  margin-top: 0;
}

.contacts__address a {
  color: #3A3A3A;
}

.contacts__left-item ul li {
  margin: 10px 0;
}

.contacts__form label {
  display: flex;
  flex-direction: column;
}

.contacts__form label span {
  color: #6D5359;
  font-size: 22px;
  margin-bottom: 10px;
}

.contacts__form label input {
  font-size: 22px;
  color: rgba(58, 58, 58, 0.48);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #DCDCDC;
  padding-bottom: 10px;
  font-family: "GothamPro";
  outline: none;
}

.contacts__form-wrapper {
  width: 75%;
}

.contacts__form-labels {
  display: flex;
  margin-bottom: 40px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.contacts__form-labels label {
  width: 48%;
}

.contacts__form-labels label input::-moz-placeholder {
  color: rgba(58, 58, 58, 0.48);
  font-size: 22px;
}

.contacts__form-labels input::-webkit-input-placeholder {
  color: rgba(58, 58, 58, 0.48);
  font-size: 22px;
}

.contacts__form-labels input:-ms-input-placeholder {
  color: rgba(58, 58, 58, 0.48);
  font-size: 22px;
}

.contacts__form-title {
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 109.5%;
  color: #6D5359;
  margin-bottom: 35px;
}

.contacts__form-submit {
  outline: none;
  width: 188px;
  height: 42px;
  background-color: #1C9DC3;
  border-radius: 50px;
  color: #fff;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "GillSans", sans-serif;
  transition: 0.3s;
}

.contacts__form-submit:hover {
  background-color: #FF295B;
}

.contacts__form-personal {
  font-size: 14px;
  color: #000;
  /*  width: 65%;*/
  margin-bottom: 20px;
  margin-top: 30px;
}

.contacts__form-personal a {
  color: inherit;
  text-decoration: underline;
}

.contacts-left-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.error-messages {
  margin-top: 20px;
}

.error-messages span {
  margin: 5px 0;
  display: block;
}

.c-detail {
  display: flex;
  flex-wrap: wrap;
  margin-top: 55px;
}

.c-detail__main {
  padding-right: 40px;
  width: 66%;
  box-sizing: border-box;
}

.c-detail__info {
  width: 33%;
  display: inline-block;
}

.c-detail__info-wrap {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 75px;
  left: 0;
}

.c-detail__help-btn {
  text-transform: uppercase;
  background-color: #1C9DC3;
  box-shadow: 0 4px 24px #1C9DC3;
  width: 100%;
  color: #fff !important;
  border-radius: 60px;
  outline: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 51px;
  transition: 0.3s;
  margin-top: 25px;
  font-weight: normal;
}

.c-detail__help-btn:hover {
  background-color: #FF295B;
  box-shadow: 0 4px 24px #FF295B;
}

.c-detail__slider-container {
  height: 430px;
  display: flex;
}

.c-detail__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-detail__slide {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.slider-main .c-detail__slide:after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(/assets/watercolor-136eac164a552f14697f7d3320e9a308bc608e7e9d00f9b5d8658c2267eb0cfe.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 51px;
  width: 50px;
  bottom: 0;
  left: 0;
}

.slider-thumbs .c-detail__slide:after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(/assets/watercolor-136eac164a552f14697f7d3320e9a308bc608e7e9d00f9b5d8658c2267eb0cfe.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  width: 30px;
  bottom: 0;
  left: 0;
}

.slider-thumbs {
  width: 20%;
  margin-right: 18px;
  padding-top: 37px;
  padding-bottom: 37px;
  border-radius: 5px;
}

.slider-thumbs .swiper-slide {
  border-radius: 4px;
  overflow: hidden;
}

.slider-main .swiper-slide {
  border-radius: 6px;
  overflow: hidden;
}

.slider-main {
  width: 80%;
  border-radius: 6px;
  overflow: hidden;
}

.swiper-button-prev {
  background-color: #CCCCCC;
  top: 22px;
  left: 0;
  width: 100%;
  height: 22px;
  border-radius: 5px 5px 0 0;
  transition: 0.3s;
}

.swiper-button-next {
  background-color: #CCCCCC;
  top: 430px;
  left: 0;
  width: 100%;
  height: 22px;
  border-radius: 0 0 5px 5px;
  transition: 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: #1C9DC3;
}

.swiper-button-next:after {
  transform: rotate(180deg);
}

.news__main__button {
  display: none;
}

.c-detail + p {
  display: none;
}

.c-detail {
  margin-top: 30px;
}

.c-detail__slider-container {
  margin-bottom: 45px;
}

.c-detail__content-title {
  font-family: "Lora", sans-serif;
  margin-top: 0;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 31px;
  color: #004C75;
}

.c-detail__story {
  font-family: "GothamPro", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 174.5%;
  color: #3A3A3A;
}

.c-detail__story i, .news-detail i {
  font-family: "Lora", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 16px;
  line-height: 181%;
  color: #6B6B6B;
  position: relative;
  display: block;
  margin-left: 23px;
}

.c-detail__story i:after, .news-detail i:after {
  position: absolute;
  display: block;
  content: "";
  width: 6px;
  height: 100%;
  left: -22px;
  top: 2%;
  background-color: #DF6682;
}

.c-detail__story iframe {
  width: 100%;
  max-width: 560px;
  /*height: auto;*/
  max-height: 315px;
}

.help__num-detail {
  padding: 20px 0 60px 0;
}

.help__num-title {
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 31px;
  color: #6D5359;
}

.c-detail__videos {
  margin: 45px 0;
}

.c-details__docs-title {
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 31px;
  color: #004C75;
}

.swiper-slide-high {
  object-fit: contain !important;
  position: absolute;
}

.swiper-slide-blurred {
  position: absolute;
  filter: blur(4px);
}

.c-detail__document {
  display: flex;
  margin-right: 50px;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.c-detail__document:hover .doc-name {
  color: #FF295B;
}

.c-detail__document:hover svg path {
  fill: #FF295B;
}

.c-detail__document svg {
  margin-right: 12px;
}

.c-detail__document-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-detail__docs {
  margin-bottom: 33px;
}

.c-detail__docs-content {
  display: flex;
  flex-wrap: wrap;
}

.doc-name {
  font-size: 18px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: #171C28;
  transition: 0.3s;
}

.doc-weight {
  font-size: 14px;
  color: #A6A2A2;
}

.c-detail__diagnosis div i {
  font-family: "Lora", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 14px;
  color: #004C75;
}

.c-detail__diagnosis div p {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #7C7C7C;
}

.c-detail__repost {
  margin-bottom: 55px;
  display: flex;
  align-items: center;
}

.pages-content .c-detail__repost ul li:after {
  display: none;
}

.c-detail__repost p {
  margin-right: 53px;
}

.c-detail__repost ul {
  width: 160px;
  display: flex;
}

.c-detail__name {
  width: 48%;
  margin-top: 0;
}

.c-detail__repost p {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 15px;
  display: flex;
  align-items: center;
  color: #3A3A3A;
  border-radius: 8px;
}

.c-detail__related h2 {
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 31px;
  color: #6D5359;
}

.c-detail__preview-pic {
  object-fit: cover;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.c-detail__related-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-detail__related-wrap a {
  font-size: 24px;
  color: #004C75;
}

.c-detail__cloud-left {
  position: absolute;
  left: 0;
  top: 15%;
  z-index: -1;
}

.c-detail__cloud-right {
  position: absolute;
  right: 0;
  bottom: 3%;
  z-index: -1;
}

.related-wrapper {
  /*justify-content: space-between;*/
  flex-wrap: nowrap;
}

.related-wrapper .needhelp__item {
  width: 32%;
}

.search-mob-input {
  width: 220px !important;
  outline: none;
}

.burger-wrap {
  height: 100%;
  width: 93px;
  background: #DF6682;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  position: absolute;
  top: 0;
  right: 0;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
  height: 41px;
  width: 31px;
  cursor: pointer;
}

.hamburger__line {
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background-color: #ffffff;
  position: relative;
  transition: 0.3s ease-in-out;
}

.header-mob-drop {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7294117647);
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
}

.mob-drop__content {
  display: flex;
  height: 100%;
}

.mobile-nav__drop {
  display: none;
}

.mobile-nav__drop.active {
  display: flex !important;
  margin-top: 10px;
}

.mobile-nav-arrow {
  padding: 8px;
}

.mobile-nav__item-wrap {
  display: flex;
  justify-content: center;
}

.mobile-nav__drop li a {
  font-size: 17px !important;
}

.mobile-nav__drop li {
  margin: 3px 0 !important;
}

.o-fonde-content {
  margin-top: 40px;
  font-family: "GothamPro", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 174.5%;
  color: #3A3A3A;
}

.o-fonde-content ul, .pages-content ul {
  padding-left: 10px;
  margin-bottom: 20px;
}

.o-fonde-content ul li, .pages-content ul li {
  line-height: 26px;
  position: relative;
}

.o-fonde-content ul li:after, .pages-content ul li:after {
  position: absolute;
  display: block;
  content: "";
  left: -22px;
  top: 12px;
  height: 5px;
  width: 5px;
  background: #BDBCBB;
  border-radius: 50%;
}

.about__main-banner + p {
  margin-top: 40px;
  font-family: "GothamPro", sans-serif;
  font-size: 16px;
  line-height: 174.5%;
  color: #3A3A3A;
}

.mob-drop__content-left {
  width: 60%;
  margin-left: auto;
  background: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  justify-content: unset !important;
  min-height: 100vh;
  height: fit-content;
  padding-bottom: 20px;
}

.mob-drop__content-left ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  align-items: center;
}

.mob-drop__content-left ul li {
  margin: 10px 0;
  padding: 0;
}

.mob-drop__content-left ul li a {
  font-size: 20px;
  color: #4F4F4F;
}

.mod-drop__top {
  height: 92px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.mod-drop__top .header__logo img {
  height: 70px;
}

.mob-drop__buttons label {
  margin-bottom: 20px;
  display: block;
}

.mob-drop__buttons label input {
  width: 100%;
  height: 51px;
  border-radius: 60px;
  border: 1px solid #004C75;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "GothamPro", sans-serif;
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
  color: #004C75;
}

.mob-drop__buttons label input::placeholder {
  color: #004C75;
}

.mob-drop__links {
  margin-bottom: 70px;
}

.wrapper {
  padding-top: 110px;
  position: relative;
  overflow-x: hidden;
}

.mob-drop__help {
  background-color: #FF295B;
  text-transform: uppercase;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  height: 51px;
  color: #fff;
}

.mob-drop__phone {
  text-align: center;
  display: block;
  font-size: 24px;
  color: #004C75;
  margin-top: 30px;
}

.news__main__first__img img {
  max-width: 100%;
  width: 100%;
}

.news__main__blocks__img img {
  max-width: 100%;
  height: 206px;
  object-fit: cover;
}

.main__form__line-tree {
  bottom: -34px;
  right: -50px;
}

.needhelp__button__more {
  display: block;
}

.news__container {
  display: flex;
}

.sec_layer {
  z-index: -2;
}

.pages-content {
  width: 70%;
  padding-right: 60px;
  box-sizing: border-box;
}

.main-sidebar {
  width: 30%;
}

.about {
  padding-bottom: 70px;
}

.p-title {
  font-weight: bold;
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-size: 69px;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #AE2A34 0%, #2E7589);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0;
}

.news__list {
  display: flex;
  flex-direction: column;
}

.news__item {
  display: flex;
  margin-bottom: 57px;
}

.news__item-container {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.news__item-pic {
  width: 40%;
  border-radius: 4px;
  overflow: hidden;
  height: 210px;
  /*margin-right: 37px;*/
}

.thanks__item-pic {
  width: 40%;
  border-radius: 4px;
  overflow: hidden;
  height: 298px;
  /*margin-right: 37px;*/
}

.news__item-pic img {
  width: 100%;
  max-width: 267px;
  height: 100%;
  border-radius: 4px;
  /*overflow: hidden;*/
  /*object-fit: cover;*/
}

.thanks__item-pic img {
  width: 100%;
  max-width: 210px;
  height: 100%;
  border-radius: 4px;
  /*overflow: hidden;*/
  /*object-fit: cover;*/
}

@media (max-width: 768px) {
  .news__item-pic {
    height: unset;
  }
  .news__item-pic img {
    width: 100%;
    height: 100%;
    max-width: unset;
  }
  .thanks__item-pic {
    height: unset;
  }
  .thanks__item-pic img {
    width: 100%;
    height: 100%;
    max-width: unset;
  }
}
.news__item-title {
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  color: #6D5359;
  margin: 4px 0 17px;
  margin-top: 0px !important;
}

.news__item-date {
  font-family: "GothamPro", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 154.5%;
  color: #6B6B6B;
  margin-bottom: 17px;
}

.news__item-preview {
  font-family: "GothamPro", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 174.5%;
  color: #3A3A3A;
}

.news-detail {
  display: flex;
  flex-direction: column;
}

.news-detail h2 {
  margin-top: 0;
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  color: #6D5359;
}

.news-detail span {
  color: #6D5359;
  font-family: "GothamPro", sans-serif;
  margin-bottom: 9px;
}

.news-detail p {
  line-height: 174.5%;
  color: #3A3A3A;
}

.news-detail img {
  object-fit: contain;
  margin-right: auto;
  margin-bottom: 20px;
  max-width: 100%;
}

.sidebar {
  background: rgba(255, 255, 255, 0.79);
  border-radius: 16px;
  margin-bottom: 80px;
  overflow: hidden;
}

.sidebar li {
  position: relative;
  transition: 0.3s;
}

.sidebar li:after {
  position: absolute;
  display: block;
  bottom: 0;
  left: 8%;
  content: "";
  width: 83%;
  height: 1px;
  background-color: rgba(28, 157, 195, 0.54);
}

.sidebar li:last-child:after {
  display: none;
}

.sidebar li.active {
  background-color: #FF295B;
}

.sidebar li.active:after, .sidebar li.active-prev:after {
  display: none;
}

.sidebar li:hover {
  background-color: #FF295B;
}

.sidebar li:hover a {
  color: #fff;
}

.sidebar li:hover::after {
  display: none;
}

.sidebar li.active a {
  color: #fff;
}

.sidebar ul li:last-child {
  border-bottom: none;
}

.sidebar li a {
  color: #4F4F4F;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 27px 34px;
  display: block;
  overflow: hidden;
}

.modern-page-navigation {
  font-family: "Lora", sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 24px;
  line-height: 262.5%;
  color: #9EA9BA;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-link {
  color: #9EA9BA;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.pagination-link:hover {
  background: rgba(28, 157, 195, 0.66);
  border-radius: 50%;
  color: #fff;
}

.modern-page-current {
  width: 60px;
  height: 60px;
  background: rgba(28, 157, 195, 0.66);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-arrow {
  width: 60px;
  height: 60px;
  color: #1C9DC3;
  border-radius: 50%;
  border: 1px solid #1C9DC3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-sizing: border-box;
}

.pagination-arrow:hover,
.modern-page-previous:hover {
  color: #fff;
  background-color: #1C9DC3;
}

.pagination-arrow:hover svg path,
.modern-page-previous:hover svg path {
  stroke: #fff;
}

.modern-page-previous {
  margin-right: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #1C9DC3;
  box-sizing: border-box;
}

.modern-page-previous svg {
  transform: rotate(-180deg);
}

.breadcrumbs {
  display: flex;
  margin-bottom: 25px;
  margin-top: 35px;
}

.breadcrumb-item {
  color: #7C7C7C;
  font-size: 14px;
  padding-right: 8px;
}

.breadcrumb-item a span {
  color: #7C7C7C;
}

.staff__title {
  font-weight: 500;
  font-size: 15px;
  line-height: 109.5%;
  margin-bottom: 10px;
  height: 90px;
}

.staff__content {
  font-size: 14px;
  line-height: 24px;
}

.staff__content span {
  font-weight: bold;
  font-style: italic;
  color: #004C75;
  padding-right: 8px;
}

.staff__content__item:last-child span {
  display: block;
}

.documents__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 45px;
}

.documents__item__img {
  display: block;
  margin-right: 50px;
}

.documents__text {
  width: calc(100% - 100px);
  font-size: 14px;
  line-height: 169%;
  color: #4F4F4F;
}

.documents__title {
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 16px;
  width: 100%;
}

.documents__bottom a:first-child {
  color: #004C75;
}

.documents__bottom a:last-child {
  color: #1C9DC3;
  display: inline-block;
  margin-left: 15px;
}

.programs__list {
  display: flex;
  flex-direction: column;
}

.programs__item {
  display: flex;
  margin-bottom: 35px;
}

.programs__item-desc {
  display: flex;
  flex-direction: column;
  width: 70%;
}

.programs__item-desc p {
  font-family: "GothamPro", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 174.5%;
  margin-top: 0;
  color: #3A3A3A;
}

.programs__item-desc h3 {
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  color: #6D5359;
  margin: 4px 0 17px;
}

.programs__item-pic {
  width: 30%;
  border-radius: 4px;
  overflow: hidden;
  height: 210px;
  margin-right: 37px;
}

.programs__item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programs__item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.programs__item-support {
  padding: 0 10px;
  outline: none;
  background: #FF295B;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-family: "GillSans", sans-serif;
  color: #F9F9F9;
  transition: 0.3s;
  text-transform: uppercase;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
}

.programs__item-support:hover {
  background: #1C9DC3;
}

.d-programs__item-desc {
  line-height: 27px;
  color: #3A3A3A;
}

.d-programs__item {
  height: fit-content;
}

.d-programs__item-desc i {
  font-size: 17px;
  font-weight: 500;
  position: relative;
  padding-left: 15px;
  display: block;
}

.d-programs__item-desc i:after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: -10%;
  width: 4px;
  height: 130%;
  background-color: rgba(124, 124, 124, 0.4705882353);
}

.d-programs__item-pic img {
  width: 100%;
}

.d-programs__views {
  display: flex;
  font-size: 13px;
  margin-top: 10px;
  align-items: center;
}

.d-programs__views img {
  width: 20px;
  margin-right: 7px;
}

.program-file {
  margin: 10px 0;
  display: flex;
}

.program-file img {
  margin-right: 35px;
}

.program-file__links {
  display: flex;
  align-items: center;
}

.program-file__links a {
  color: #004C75;
  font-size: 14px;
}

.program-file__links p {
  color: #004C75;
  font-size: 14px;
  margin: 0 8px;
}

.program-file__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.program-file__info span {
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 16px;
  width: 100%;
}

.d-programs__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
}

.sb-programs__link.active {
  background-color: #FF295B;
  color: #fff;
}

.about-s__desc {
  line-height: 26px;
}

.about-s {
  padding-bottom: 120px;
}

.help {
  padding-bottom: 100px;
}

.help__container {
  display: flex;
}

.p-subtitle {
  font-family: "Lora", sans-serif;
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 30px;
}

.partners__item {
  color: #3A3A3A;
}

.partners__item .staff__img {
  height: 215px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.partners__detail__top {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.partners__detail__img {
  width: 50%;
}

.partners__detail__img img {
  max-width: 100%;
}

.partners__detail__desc {
  width: 48%;
}

.partners__detail__desc span {
  display: block;
  font-weight: bold;
  font-style: italic;
  color: #004C75;
  margin-bottom: 10px;
}

.partners__detail__item {
  margin-bottom: 10px;
}

select.form-control {
  height: 48px;
}

.form-control {
  padding: 0 12px;
}

.form-control {
  border-radius: 8px;
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #8FB1C2;
  padding-left: 16px;
  padding-right: 75px;
  font-family: "GothamPro", sans-serif;
  outline: none;
  background-color: transparent;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  width: 100%;
}

.NewsCalMonthNav {
  padding: 8px 0;
  line-height: 1.42857143;
  vertical-align: top;
}

.table-striped > tbody > tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.table-striped > tbody > tr td {
  padding: 8px;
  border: 1px solid #ddd;
}

.table-striped {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.events__date {
  font-family: "GothamPro", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 154.5%;
  color: #6B6B6B;
  margin-bottom: 10px;
}

.events__count {
  font-size: 14px;
}

.gallery__title {
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  color: #6D5359;
  margin: 0 0 17px;
  display: block;
  transition: all 0.3s;
}

.gallery__title:hover {
  background: linear-gradient(90deg, #AE2A34 0%, #2E7589);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery__text {
  font-family: "GothamPro", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 174.5%;
  color: #3A3A3A;
}

.gallery__img a {
  display: inline-block;
  width: 31%;
  margin-right: 2%;
}

.gallery__img a:last-child {
  margin-right: 0;
}

.gallery__img a img {
  max-width: 100%;
}

.gallery__item {
  margin-bottom: 30px;
}

.gallery__detail {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gallery__detail a {
  display: inline-block;
  max-height: 115px;
  margin-bottom: 10px;
}

.gallery__detail a img {
  max-width: 100%;
}

.needhelp__date {
  margin-bottom: 10px;
}

.readmore {
  display: block;
  color: #004C75;
  font-size: 12px;
}

.needhelp__item {
  color: #3A3A3A;
}

.form__group label {
  display: block;
  font-weight: 400;
  margin-bottom: 5px;
}

.form__group__text h4 {
  margin: 30px 0 10px 0;
}

.form__group {
  margin-bottom: 20px;
}

.form__group input, .form__group select {
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  border: 1px solid rgba(28, 157, 195, 0.54);
  height: 40px;
  border-radius: 5px;
  background: transparent;
}

#form_call .hystmodal__window {
  padding: 0;
}

#form_call .form__group {
  padding: 0 20px;
  box-sizing: border-box;
}

#form_call .box_title {
  margin-top: 20px;
}

#form_call .n-p__final {
  padding-top: 20px;
  height: auto;
  padding-bottom: 20px;
}

#form_call .hystmodal__styled button {
  background-color: #FF295B;
  margin: 20px auto 0 auto;
  cursor: pointer;
  width: 410px;
  height: 89px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  margin: 0 auto;
  border-radius: 49px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.19);
  position: relative;
  font-weight: 400;
  transition: 0.3s;
}

#form_call .success {
  text-align: center;
}

/*#form_call .hystmodal__window {
  width: auto;
  max-width: 1160px;
}*/
#form_call .hystmodal__window {
  width: auto;
  margin: 0 auto;
  padding: 25px;
  max-width: 700px;
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  position: absolute;
  left: 50%;
}

.form textarea {
  height: 155px;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  border: 1px solid rgba(28, 157, 195, 0.54);
  border-radius: 5px;
  background: transparent;
}

.form__group_file input {
  border: none;
  padding: 0;
  height: auto;
}

.btn__form {
  border: none;
  background: #FF295B;
  color: #fff;
  transition: all 0.3s;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.btn__form:hover {
  background: #1C9DC3;
}

.personal {
  margin-bottom: 10px;
}

.pages-content__full {
  width: 100% !important;
  padding-right: 0 !important;
}

.title-transfer {
  font-weight: bold;
  padding-left: 34px;
  box-sizing: border-box;
}

.form__select {
  width: 100%;
  margin-bottom: 20px;
}

.form__select .help-radio-style {
  text-align: center;
}

.custom-select {
  border: 1px solid #8FB1C2;
  border-radius: 8px;
  padding-left: 16px;
  height: 48px;
  width: 100%;
  padding-left: 17px;
  color: #000;
  background-color: transparent;
  -webkit-appearance: button;
  appearance: button;
  font-family: "GothamPro", sans-serif;
}

.events.btn-base {
  padding: 7px 19px;
  background: #FF295B;
  color: #fff;
}

.postup__wrap {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.postup .form-control {
  border-color: #8FB1C2;
  border-radius: 8px;
}

.filter__button--reset .main-form-button {
  background: #F4F3F3;
  color: #000;
  margin-left: 20px;
}

.personal-table {
  margin-top: 40px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.personal-table .main-card {
  margin-bottom: 20px;
}

.postup__wrap label {
  margin-bottom: 5px;
  display: block;
}

#modal-success {
  width: 400px;
  height: 100px;
  padding: 30px;
}

.success {
  color: red;
  margin-top: 10px;
}

.input__form div:first-child {
  display: inline-block;
  vertical-align: top;
}

.error__text {
  font-size: 24px;
  color: #1C9DC3;
  transition: all 0.3s;
}

.error__text:hover {
  opacity: 0.6;
}

.form-invalid-error {
  color: red;
}

.form_in_pozhertvovaniya .n-p__final-form.active {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-width: 850px;
}

.form_in_pozhertvovaniya .n-p__layer-sec.active {
  position: fixed;
}

.form_in_pozhertvovaniya .n-p__final-form label {
  width: 50%;
}

.form_in_pozhertvovaniya2 .n-p__final-form.active {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-width: 850px;
}

.form_in_pozhertvovaniya2 .n-p__layer-sec.active {
  position: fixed;
}

.form_in_pozhertvovaniya2 .n-p__final-form label {
  width: 50%;
}

.form_in_pozhertvovaniya3 .n-p__final-form.active {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-width: 850px;
}

.form_in_pozhertvovaniya3 .n-p__layer-sec.active {
  position: fixed;
}

.form_in_pozhertvovaniya3 .n-p__final-form label {
  width: 50%;
}

.n-p__final .about__privacy {
  top: auto;
  width: 100%;
  text-align: left;
  max-width: 450px;
  padding: 0 20px;
  margin: 10px auto 15px;
  box-sizing: border-box;
}

.form-group__value {
  margin-bottom: 20px;
}

button:focus {
  outline: none;
}

.dezign {
  color: #fff;
}

.mp-link-cat {
  display: flex;
  cursor: pointer;
  z-index: 10;
}

.text_tel {
  display: flex;
  flex-direction: row;
}

.h3 {
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  color: #6D5359;
  margin: 4px 0 17px;
  padding-top: 20px;
}

.about a {
  color: #0A83A7;
}

.img_logo_uni {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px 0px;
}

.img_logo_uni img {
  height: auto;
  object-fit: contain;
}

.ul_link li {
  color: #0A83A7;
  padding-bottom: 15px;
  padding-left: 10px;
  list-style: disc;
}

.ul_link li:after {
  display: none !important;
}

.footer__uni svg {
  max-width: 40px;
  max-height: 40px;
}

.footer__uni svg:last-child {
  max-height: 16px;
  margin-bottom: 10px;
  margin-left: 4px;
}

.footer__uni {
  background: #fff;
  padding: 5px 0 0 5px;
  box-sizing: border-box;
  display: block;
}

.footer__side {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  padding-bottom: 20px;
}

.footer__bottom__item span {
  color: #FF295B;
}

#form_help h3 {
  font-weight: bold;
  font-size: 1.2em;
  line-height: 100%;
  color: #004C75;
  margin: 30px 0 20px 0;
}

.pages-content h3 {
  font-size: 30px;
  line-height: 35px;
  margin: 0 0 25px 0;
}

.input__wrapper {
  width: 100%;
  position: relative;
  margin: 15px 0;
  text-align: center;
}

.input__file, .input__file_1, .input__file_2 {
  opacity: 0;
  position: absolute;
}

.input__file-icon-wrapper {
  height: 19px;
  width: 24px;
  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;
}

.input__file-button-item {
  line-height: 1;
  margin-top: 1px;
  margin-right: 30px;
}

.input__file-button {
  width: 100%;
  max-width: 207px;
  height: 46px;
  background: #1C9DC3;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
}

.header-help__mob-link {
  display: none;
  margin-right: 65px;
  font-size: 11px;
  height: 32px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.c-detail__info--mob, .c-detail__help-btn--mob {
  display: none;
}

.help-radio-label .help-radio-style i.ruble-sym {
  font-weight: 700;
  margin-left: 5px;
  margin-bottom: 4px;
}

.banner__sum {
  background: transparent;
  border: none;
  font-size: 35px;
  line-height: 55px;
  color: #fff;
  width: 85px;
  font-family: "GothamPro";
  -moz-appearance: none;
}

.banner__sum::placeholder {
  font-size: 35px;
  line-height: 55px;
  color: #fff;
  opacity: 0.85;
  font-family: "GothamPro";
}

.banner__sum::-moz-placeholder {
  font-size: 35px;
  line-height: 55px;
  color: #fff;
  opacity: 0.85;
  font-family: "GothamPro";
}

.banner__sum::-webkit-input-placeholder {
  font-size: 35px;
  line-height: 55px;
  color: #fff;
  opacity: 0.85;
  font-family: "GothamPro";
}

.banner__sum:-ms-input-placeholder {
  font-size: 35px;
  line-height: 55px;
  color: #fff;
  opacity: 0.85;
  font-family: "GothamPro";
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; &lt;- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* &lt;-- Apparently some margin are still there even though it's hidden */
}

.banner__price span {
  padding-left: 0;
}

.needhelp-index-wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .text_tel {
    display: flex;
    flex-direction: column;
  }
  .logo_mob {
    width: 100%;
    padding-top: 20px;
  }
  .img_logo_uni {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0px;
    padding-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
  }
}
.bogdasha-pic {
  display: none;
}

.c-table td {
  padding: 10px;
  line-height: 22px;
}

.n-p__some-numeral span {
  font-size: 28px;
  line-height: 39px;
  padding-right: 5px;
}

.n-p__some-numeral .veof {
  font-size: 28px;
  line-height: 39px;
}

.n-p__some-img {
  display: block;
}

.n-p__final .about__privacy {
  font-size: 11px;
}

.n-p__sms ul {
  list-style: circle !important;
  display: block;
  border: none;
  height: auto;
  padding: 0px !important;
  margin: 0px;
}

.n-p__sms ul li {
  height: auto;
  text-align: left;
  list-style: circle !important;
  border: none;
  text-transform: unset;
  display: block;
}

.n-p__sms ul li a {
  color: #0A83A7;
}

.n-p__sms p a {
  color: #0A83A7;
}

.n-p__sms p {
  font-size: 22px;
  line-height: 30px;
}

.small_text, .small_text ul, .small_text ul li, .small_text p {
  font-size: 11px !important;
  line-height: 12px !important;
  padding: 0px !important;
  padding-bottom: 5px !important;
  margin: 0px !important;
}

.small_text, .small_text ul, .small_text p {
  padding-bottom: 10px !important;
}

.n-p__sms {
  padding-top: 0px !important;
}

.applebew {
  margin-left: 50px !important;
}

@media screen and (max-width: 700px) {
  .new-payment-desk.applebew {
    height: 50px !important;
  }
  .ne_p {
    top: unset !important;
  }
  .success__link {
    display: block;
  }
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #df6682 !important;
}

.owl-theme .owl-dots .owl-dot span {
  background: rgba(223, 102, 130, 0.4) !important;
}

.c-detail__info-wrap {
  transition: all 0.5s;
  position: sticky;
  top: 125px;
}

.personal-table .col-4 {
  width: 23%;
}

@media screen and (max-width: 480px) {
  .sms-operators {
    width: 100%;
    object-fit: contain;
  }
  .c-table {
    font-size: 12px;
  }
}
.contacts__map {
  position: relative;
  width: 860px;
  height: 740px;
}

.heart {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
  z-index: 10;
}

.modern-map {
  filter: grayscale(1);
}

.contacts-deco-2 {
  z-index: 100;
  pointer-events: unset;
  top: 726px;
}

.about-cloud-rh--contacts {
  position: absolute;
  right: -362px;
  top: 2%;
  display: none;
  pointer-events: none;
}

.hero-flower-right--contacts {
  display: none;
}

.needhelp__img {
  position: relative;
}

.needhelp__img:after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(/assets/watercolor-136eac164a552f14697f7d3320e9a308bc608e7e9d00f9b5d8658c2267eb0cfe.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 43px;
  width: 43px;
  bottom: 0;
  left: 0;
}

.frame-mob-lh, .frame-mob-rh {
  display: none;
}

.error-form {
  width: 400px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 30px;
  position: relative;
}

.error-form__layer {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(46, 47, 48, 0.74);
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.error-form__submit {
  width: 60%;
  height: 40px;
  background-color: #FF295B;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto;
  border-radius: 49px;
  box-shadow: 0 4px 20px rgb(0 0 0/19%);
  position: relative;
  border: none;
  transition: 0.3s;
  font-family: "GothamPro", sans-serif;
  cursor: pointer;
}

.error-form__submit:hover {
  opacity: 0.6;
}

.error-form__close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 1px;
  top: -50px;
  cursor: pointer;
}

.error-form__title {
  font-size: 22px;
  font-weight: bold;
}

.error-form__message {
  resize: none;
  padding: 10px;
  margin-bottom: 20px;
  font-family: "GothamPro", sans-serif;
  border-radius: 4px;
}

.error-form__message::placeholder {
  font-size: 14px;
  font-family: "GothamPro", sans-serif;
}

.error-form-messages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.error-form-messages span {
  margin-top: 10px;
}

.help-input.active {
  background-color: #1C9DC3;
  color: #fff;
}

.help-input.clicked::placeholder {
  opacity: 0;
}

.help-form__labels .help-radio-label .help-radio-style.unactive {
  background-color: #fff;
  color: #000;
}

.help-form__labels .help-radio-label:hover .help-radio-style.unactive {
  background-color: #1C9DC3;
  color: #000;
}

.help-form__labels .help-radio-label:hover .help-radio-style.unactive i.ruble-sym {
  color: #fff;
}

.about-form__input.value {
  background-color: #1C9DC3;
  color: #fff;
}

.dialog__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
}

.search-form-mobile {
  position: relative;
}

.search-form-mobile .children__search-icon input[name=s] {
  display: none;
}

.search-form-mobile .children__search-icon {
  height: 51px;
  width: 50px;
  border-radius: 0px 25px 25px 0;
}

.search-mob-input:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-mob-input:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-mob-input:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-mob-input:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hystmodal__wrap1 {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  min-height: 100%;
  margin: auto;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

#cookie_notification {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 999999;
}

#cookie_notification p {
  margin: 0;
  font-size: 1rem;
  text-align: center;
}

.cookie_accept {
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  height: 30px;
}

.cookie_accept:hover {
  text-decoration: underline;
}

@media (min-width: 576px) {
  #cookie_notification.show {
    display: flex;
  }
  .cookie_accept {
    margin: 0 0 0 25px;
    border: none;
  }
}
@media (max-width: 575px) {
  #cookie_notification.show {
    display: flex;
    text-align: center;
  }
  .cookie_accept {
    margin: 0;
    border: none;
  }
  #cookie_notification {
    bottom: 0px;
    width: calc(100% - 20px);
    max-width: 100%;
    transform: translateX(-50%);
    padding: 10px;
  }
  #cookie_notification p {
    font-size: 0.8rem;
  }
}
#cookie_notification .hystmodal__close {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
}

.help-item .needhelp__img,
.help-item .help-item__grid {
  height: 50%;
}

.help-item .help-item__grid {
  display: grid;
  grid-template-rows: 0.3fr 0.2fr 0.4fr 1fr;
}

.help-item .help-item__grid .needhelp__title {
  margin-bottom: 0;
}

.news__container .news-detail,
.news__container .news-detail span {
  display: block;
}

.p-contacts .contacts__form-wrapper .contacts__form-title {
  font-family: "Lora", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  color: #6D5359;
}

.new_fix_button {
  position: fixed;
  left: 15px;
  bottom: 15px;
  width: 300px;
  z-index: 999999;
}

@media screen and (max-width: 1281px) {
  .new_fix_button {
    position: fixed;
    left: 15px;
    bottom: 15px;
    width: 270px !important;
    z-index: 999999;
  }
}
@media screen and (max-width: 768px) {
  .new_fix_button {
    width: 195px !important;
    font-size: 13px;
    line-height: unset;
    z-index: 999999;
  }
}
.c-detail__help-btn {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #modal_fand .hystmodal__window, .tab-wrapper .tab-item {
    padding: 15px 0px;
    width: 95%;
    padding: 25px;
  }
  #new_reg_form .filter__button--reset {
    margin-top: 0px;
  }
  #new_reg_form .flex {
    flex-wrap: wrap;
  }
  #new_reg_form .flex .filter__button {
    margin: 10px;
  }
  #new_reg_form .flex .filter__button a {
    color: #fff;
  }
  .personal_class .news__container {
    flex-direction: column-reverse;
  }
  .personal_class .main-sidebar {
    display: flex;
    width: 100%;
    margin-bottom: 0px;
  }
  .personal_class .sidebar {
    width: 100%;
    margin-bottom: 0px;
  }
  .personal_class .sidebar li a {
    padding: 15px 25px;
  }
  .personal_class .sidebar li {
    background-color: #f0f0f0;
  }
  .personal_class .sidebar li.active {
    background-color: #FF295B;
  }
  .personal_class .postup__wrap {
    margin-top: 20px;
  }
}
.c_item_card {
  width: calc(25% - 50px);
  min-height: 110px;
  border: 1px solid rgba(28, 157, 195, 0.41);
  background: #fff;
  margin: 0 20px 0px 0px;
  transition: 0.2s ease-in-out;
  padding: 15px;
  border-radius: 15px;
  position: relative;
}

.c_item_card:last-child {
  margin: 0 0px 0px 0px;
}

.c_item_card a {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: #17183b;
  margin-bottom: 15px;
  display: block;
}

.c_item_card a:hover {
  text-decoration: underline;
}

.c_item_card .datetext {
  font-size: 13px;
  line-height: 16px;
  color: #17183b;
  position: absolute;
  bottom: 15px;
}

.c_item_card:hover {
  box-shadow: 8px 8px 16px -10px #727272;
}

.c-details__docs-title {
  position: relative;
}

.pre_title {
  font-family: "GothamPro";
  font-weight: normal;
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 15px;
  line-height: 30px;
  color: #004C75;
}

.pre_title a {
  color: #004C75;
  text-decoration: none;
  line-height: 20px;
}

.buttonki {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  width: 70%;
  max-width: unset;
}

.main-form-button {
  cursor: pointer;
}

.buttonki .main-form-button {
  margin-right: 25px;
  margin-top: 25px;
  margin-bottom: 25px;
  width: 250px;
}

.all_back {
  color: #004C75;
  margin-top: 25px;
  display: block;
  font-family: "GothamPro";
  text-transform: uppercase;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .c_item_card {
    width: 100%;
    min-height: 70px;
    border: 1px solid rgba(28, 157, 195, 0.41);
    background: #fff;
    margin: 0 0px 0px 0px;
    margin-bottom: 15px;
    transition: 0.2s ease-in-out;
    padding: 15px;
    border-radius: 15px;
  }
  .c_item_card a {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .pre_title {
    position: relative;
  }
  .buttonki {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .how__help__text.buttonki .button {
    margin-bottom: 0px;
    margin-right: 0px;
    width: 100%;
  }
  .all_back {
    font-size: 16px;
    line-height: 20px;
  }
  .buttonki .main-form-button {
    margin-right: 0px;
    margin-top: 25px;
    width: 100%;
  }
}
.button--pulse2 {
  color: #fff;
  animation: radial-pulse2 3s infinite;
  background: #FF295B;
}

@keyframes radial-pulse2 {
  0% {
    background-color: rgba(28, 157, 195, 1);
    box-shadow: 0 0 5px rgba(28, 157, 195, 1);
  }
  50% {
    background-color: rgba(28, 157, 195, 0.8);
    box-shadow: 0 0 20px rgba(28, 157, 195, 0.8);
  }
  100% {
    background-color: rgba(28, 157, 195, 0.7);
    box-shadow: 0 0 5px rgba(28, 157, 195, 0.7);
  }
}
#form_yes .box_title {
  font-size: 19px !important;
  line-height: 29px !important;
}

.about-form {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}

.main-sidebar .c-detail__info.c-detail__info--desktop {
  position: -webkit-sticky;
  position: sticky;
  top: 85px;
}

.kre {
  display: none;
}

@media (max-width: 600px) {
  .kre {
    display: flex;
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 768px) {
  #modal_fand .hystmodal__window, .tab-wrapper .tab-item {
    padding: 15px 0px;
    width: 95%;
    padding: 25px;
  }
  #new_reg_form .filter__button--reset {
    margin-top: 0px;
  }
  #new_reg_form .flex {
    flex-wrap: wrap;
  }
  #new_reg_form .flex .filter__button {
    margin: 10px;
  }
  #new_reg_form .flex .filter__button a {
    color: #fff;
  }
  .personal_class .news__container {
    flex-direction: column-reverse;
  }
  .personal_class .main-sidebar {
    display: flex;
    width: 100%;
    margin-bottom: 0px;
  }
  .personal_class .sidebar {
    width: 100%;
    margin-bottom: 0px;
  }
  .personal_class .sidebar li a {
    padding: 15px 25px;
  }
  .personal_class .sidebar li {
    background-color: #f0f0f0;
  }
  .personal_class .sidebar li.active {
    background-color: #FF295B;
  }
  .personal_class .postup__wrap {
    margin-top: 20px;
  }
}
.iti--container {
  z-index: 99999 !important;
}

.iti__country-list {
  display: block !important;
  padding: 0px !important;
  bottom: unset !important;
  max-height: 180px !important;
}

.iti__country-name {
  color: #000 !important;
  width: auto !important;
  padding-right: 10px !important;
}

.iti__country-list.iti__hide {
  display: none !important;
}

.iti__country {
  width: 100% !important;
  height: unset !important;
  border: unset !important;
  align-items: unset !important;
  justify-content: unset !important;
}

.iti__divider {
  display: none !important;
}

.iti__dial-code {
  color: #a4a4a4 !important;
}

.pages-content p i:first-child {
  margin-top: 20px !important;
}

.pages-content p i {
  margin-top: 0px !important;
}

.c-detail__document:hover {
  fill: #FF295B;
}

.c-detail__document img {
  margin-right: 12px;
}

#swal2-html-container ol {
  text-align: left;
}

#swal2-html-container ol li {
  margin-bottom: 5px;
}

.grecaptcha-badge {
  display: none;
}

div.news-list img.preview-picture {
  float: left;
  margin: 0 4px 6px 0;
}

p.news-item {
  margin: 0;
  margin-bottom: 15px;
}

.news-date-time {
  font-size: 95%;
  display: block;
  color: #82929a;
}

.preview-picture {
  border: 1px solid #E4E7E9;
}

.price-card {
  display: block;
  text-decoration: none;
  outline: none;
  border: 1px solid #FF295B;
  border-radius: 8px;
  padding: 7px 12px 10px 16px;
}

.price-card-cap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  align-items: flex-end;
  margin-bottom: 3px;
}

.price-card-cap__value {
  margin-right: 15px;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.3px;
  font-family: Montserrat Medium, Arial, sans-serif;
  font-weight: 400;
  color: black;
}

.price-card-cap__data {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #727272;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
}

.price-card__txt {
  font-size: 13px;
  line-height: 1.2;
  color: #17183b;
  margin-bottom: 4px;
}

.price-card__contact {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #727272;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
}

.c-detail__story em, .news-detail em {
  font-family: Lora, sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  line-height: 181%;
  color: #6b6b6b;
  position: relative;
  display: block;
  margin-left: 23px;
}

div.news-list {
  word-wrap: break-word;
}

div.news-list img.preview_picture {
  float: left;
  margin: 0 4px 6px 0;
}

.news-date-time {
  color: #486DAA;
}

.name_par {
  text-align: center;
  font-size: 13px;
  line-height: 15px;
  color: #727272;
  font-weight: 500;
  padding: 5px;
}

.needhelp-bottom .main-form-button {
  color: white;
}

.already-help__desc {
  min-height: 175px;
  max-height: 175px;
  height: 175px;
}

.hystmodal.hystmodal--simple {
  z-index: 99998 !important;
}

.swal2-container {
  z-index: 99999 !important;
}

.number_circle {
  display: flex;
  justify-content: center;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 15px;
  margin-right: 20px;
  background: #FF2F60;
  color: white;
}

.qrcode_donation {
  display: flex;
  justify-content: space-around;
}

.qrcode_donation .qrcode {
  width: 100%;
  padding: 30px 51px 23px 51px;
}

.qr_text_block {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.qr_border_text {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  justify-content: center;
}

.qrcode_first_text {
  font-size: 35px;
}

.qr_border {
  display: flex;
  flex-direction: row;
  margin-left: 25px;
}

.qrcode_tinkoff_mob {
  padding: 26px 99px 163px 99px;
}

.qrcode_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
}

.qrcode_card_text {
  font-family: "GothamPro";
  color: black;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  padding-left: 81px;
  padding-right: 81px;
}

.qrcode_hand {
  position: absolute;
  height: 671px;
  right: 29px;
  bottom: 0;
}

.qrcode_sbp {
  display: none;
}

.qrcode_ul {
  width: max-content;
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.qrcode_text_in_ul {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
}

video {
  width: 100%;
}

@media (max-width: 767px) {
  .modern-page-current {
    width: 30px;
    height: 30px;
    background: rgba(28, 157, 195, 0.66);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pagination-arrow {
    width: 30px;
    height: 30px;
    color: #1C9DC3;
    border-radius: 50%;
    border: 1px solid #1C9DC3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-sizing: border-box;
  }
  .modern-page-previous {
    margin-right: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #1C9DC3;
    box-sizing: border-box;
  }
  .pagination-link {
    color: #9EA9BA;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
  .main__partners__wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.needhelp__img .label-text {
  width: 60%;
  background-color: #004C75;
  position: absolute;
  right: 0px;
  bottom: 20px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  display: flex;
  align-items: center;
}

.needhelp__img .label-text span {
  margin: 10px 10px 10px 20px;
  color: white;
  font-family: "GothamPro";
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
}

@media screen and (max-width: 1680px) {
  .header-decor-lh {
    left: -214px;
  }
  .hero-flower-left {
    position: absolute;
    top: 308px;
    left: -120px;
    width: 196px;
    z-index: -1;
  }
  .main__tezis {
    background-position-x: center;
  }
  .main__program__bg_2 {
    top: 528px;
    right: -72px;
  }
  .p-contacts .contacts-deco-2 {
    top: 769px;
  }
  .qrcode_tinkoff_mob {
    padding: 0 90px 145px 90px;
  }
  .qr_border {
    display: flex;
    flex-direction: row;
    margin-left: 25px !important;
  }
}
@media screen and (max-width: 1440px) {
  .header-decor-lh {
    left: -267px;
    top: -15px;
  }
  .hero-flower-left {
    display: none;
  }
  .hero-flower-right {
    top: 400px;
  }
  .qrcode_tinkoff_mob {
    padding: 0 90px 145px 90px;
  }
  .qr_border {
    display: flex;
    flex-direction: row;
    margin-left: 25px !important;
  }
}
@media screen and (max-width: 1366px) {
  .header__top {
    width: 100%;
  }
  .header__phone {
    font-size: 15px;
  }
  .header__social a {
    margin-right: 8px;
  }
  .main__partners__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .about__banner {
    background-position: center;
  }
  .banner__bottom__wrap {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
  }
  .banner__bg {
    background-position: top;
  }
  .banner__bottom__bg {
    width: 109%;
    left: -58px;
    bottom: -42px;
  }
  .banner__bottom__wrap .col-4 {
    width: 20%;
  }
  .help__flowers {
    right: -116px;
  }
  .help__num-vector img {
    width: 104%;
    left: -2%;
    bottom: 5%;
  }
  .main__program__bg_2 {
    width: 573px;
    height: 570px;
    top: 530px;
    right: -20px;
  }
  .footer-deco-lh,
  .footer-deco-rh,
  .main__form__line-vector {
    display: none;
  }
  .main__form {
    border-bottom: 1px solid #F7B1C5;
  }
  .qrcode_tinkoff_mob {
    padding: 0 90px 145px 90px;
  }
  .qr_border {
    display: flex;
    flex-direction: row;
    margin-left: 25px !important;
  }
}
@media screen and (max-width: 1281px) {
  .contacts__left {
    z-index: 100;
  }
  .contacts__map {
    width: 747px;
    height: 740px;
  }
  .children__desc {
    padding-right: 117px;
  }
  .button {
    padding: 0 11px;
  }
  .header-help-btn {
    margin-left: 15px !important;
  }
  .mob-drop__links .header__nav__drop {
    display: none;
  }
  .header__nav__item--drop svg {
    top: 6px;
    right: -22px;
  }
  .header {
    padding-bottom: 7px;
    display: flex;
    align-items: center;
  }
  .header__right {
    padding-top: 0;
  }
  .c-detail__main {
    width: 60%;
  }
  .c-detail__info {
    width: 40%;
  }
  .header__bottom {
    margin-top: 0;
    padding-right: 71px;
  }
  .hero-flower-right {
    display: none;
  }
  .header__top {
    display: none !important;
  }
  .search__button {
    display: none !important;
  }
  .header__bottom a:last-child {
    display: block;
  }
  .search__button {
    display: none;
  }
  .button--pulse {
    margin-left: 39px;
  }
  .burger-wrap {
    display: flex;
  }
  .header__top {
    display: none;
  }
  .main__program__bg_2 {
    top: 610px;
    right: -55px;
    transform: scale(0.8);
  }
  .how__help__text p:nth-child(2) {
    margin-bottom: 20px;
  }
  .main__about__link {
    font-size: 24px;
    font-weight: 500;
  }
  .header-decor-rh,
  .help__num,
  .help__flowers {
    display: none;
  }
  .header-decor-lh {
    left: -305px;
    top: -15px;
  }
  .banner__bottom__wrap .col-4 {
    width: 25%;
  }
  .banner__title {
    font-size: 59px;
    line-height: 50px;
  }
  .banner__text {
    font-size: 18px;
    line-height: 130%;
  }
  .banner__price span {
    padding-left: 0px;
  }
  .button--big {
    height: 40px;
    line-height: 40px;
  }
  .banner__price {
    margin-right: 20px;
  }
  .banner__bg {
    background-size: cover;
    height: 650px;
    background-repeat: no-repeat;
  }
  .banner__img {
    height: 480px;
  }
  .banner__bottom__item img {
    max-width: 60px;
  }
  .banner__bottom__bg {
    width: 108%;
    left: -38px;
    bottom: -50px;
  }
  .banner__bottom__wrap {
    width: 90%;
    margin: 0 auto;
  }
  .banner__bottom__item img {
    margin-right: 20px;
  }
  .needhelp-cloud {
    position: absolute;
    top: -53px;
    left: -282px;
    z-index: -1;
  }
  .needhelp__img {
    height: 226px;
  }
  .needhelp__wrap {
    justify-content: space-between;
  }
  .main__program__block h3 span {
    position: relative;
  }
  .main__program__block h3 span:after {
    content: "";
    position: absolute;
    width: 63px;
    height: 55px;
    right: -83px;
    top: 15px;
    background: url(/assets/progr-mob-f63822588a8b35d1af474be7fec81f872a85d979dbecfa7d309cc92c1a7b8767.svg) no-repeat;
  }
  .main__doc__wrap .main__about__link {
    margin-top: 50px;
  }
  .needhelp {
    padding: 80px 0 65px 0;
  }
  .section h3 {
    font-size: 36px;
    line-height: 31px;
  }
  .button__block {
    width: 155px;
    font-size: 0.7em;
  }
  .main__form__wrap {
    width: 80%;
  }
  .main__form__line-tree {
    width: 40%;
  }
  .main__about__img {
    margin-right: 60px;
  }
  .main__about__text {
    width: calc(100% - 485px);
  }
  .main__partners__item {
    max-width: 50%;
    margin-right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: start;
  }
  .banner__price {
    padding-bottom: 0;
  }
  .banner__text {
    margin-bottom: 25px;
  }
  .button--small {
    font-size: 13px;
  }
  .button--big {
    line-height: 14px;
    font-size: 11px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .qrcode_hand {
    position: absolute;
    height: 517px;
    right: 6px;
    bottom: 0;
  }
  .qrcode_sbp {
    display: none;
  }
  .qrcode_sber_mob {
    padding: 30px 51px 23px 51px !important;
  }
  .qrcode_tinkoff_mob {
    padding: 0 61px 7px 61px;
  }
  .qr_border {
    display: flex;
    flex-direction: row;
    margin-left: 25px !important;
  }
  .qrcode_card_text {
    font-family: "GothamPro";
    color: black;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    padding-left: 81px;
    padding-right: 81px;
  }
  .sber-payment {
    height: 48px !important;
    margin-left: 12px !important;
  }
}
@media screen and (max-width: 1025px) {
  .needhelp__diagnosis--top {
    margin-bottom: 10px;
  }
  .main__doc__list {
    flex-wrap: wrap;
  }
  .main__doc__link {
    margin-bottom: 63px;
  }
  .header__bottom .button:nth-child(2) {
    margin: 0 10px;
  }
  .children__desc {
    padding-right: 20px;
    margin-bottom: 0 !important;
  }
  .mob-drop__links {
    margin-bottom: 30px;
  }
  .header__logo img {
    width: 195px;
  }
  .header__logo-text {
    font-size: 12px;
    bottom: 9px;
    left: 50px;
  }
  .mob-drop__content-left {
    margin-top: 30px;
  }
  .qrcode_sber_mob {
    padding: 30px 51px 23px 51px !important;
  }
  .qrcode_tinkoff_mob {
    padding: 0 64px 7px 64px;
  }
  .qr_border {
    display: flex;
    flex-direction: row;
    margin-left: 25px !important;
  }
  .qrcode_card_text {
    font-family: "GothamPro";
    color: black;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    padding-left: 81px;
    padding-right: 81px;
  }
  .sber-payment {
    height: 48px !important;
    margin-left: 12px !important;
  }
}
@media screen and (max-width: 993px) {
  .needhelp-index-wrap .needhelp__item:last-child {
    display: none;
  }
  .footer__uni svg {
    max-width: 90px;
    max-height: 45px;
  }
  .wrapper {
    padding-top: 100px;
  }
  .button--small {
    font-size: 12px;
  }
  .header__logo img {
    width: 170px;
  }
  .about__main-banner {
    padding: 25px;
  }
  .header__logo-text {
    width: 163px;
    font-size: 10px;
  }
  .about__main-banner p {
    font-size: 27px;
  }
  .header__bottom {
    padding-right: 57px;
  }
  .header__right {
    width: 73%;
  }
  .button {
    padding: 0 9px;
  }
  .news__item-pic {
    width: 40%;
    margin-right: 13px;
  }
  .thanks__item-pic {
    width: 40%;
    margin-right: 13px;
  }
  .news__item-container {
    width: 60%;
  }
  .news__item-title {
    margin-bottom: 10px !important;
  }
  .news__item-date {
    margin-bottom: 6px;
  }
  .main-sidebar {
    width: 35%;
  }
  .pages-content {
    width: 65%;
    padding-right: 40px;
  }
  .help-option-style {
    width: 30px;
    height: 30px;
    box-sizing: border-box;
  }
  .about-form .help-option-text {
    font-size: 13px;
  }
  .help-radio-option input:checked + .help-option-style:after {
    width: 14px;
    height: 14px;
  }
  .about-form .sum-donation-main-button {
    width: 100%;
  }
  .swiper-button-prev {
    top: 18px;
    left: 0;
    height: 26px;
  }
  .c-detail__main {
    padding-right: 20px;
  }
  .p-title {
    font-size: 56px;
    margin-bottom: 0;
  }
  .about__main-form {
    width: 50%;
    margin: 0 auto 50px auto;
  }
  .about__banner-wrapper {
    width: 63%;
  }
  .about__main-text {
    width: 100%;
  }
  .about__main {
    flex-wrap: wrap;
  }
  .about__main-text {
    margin-bottom: 40px;
  }
  .about-form {
    width: 100%;
  }
  .contacts__map {
    z-index: -1;
    top: 18px;
    left: -97px;
    width: 628px;
  }
  .contacts__title {
    font-size: 48px;
    margin: 30px 0;
  }
  .contacts-left-decor {
    left: -219px;
  }
  .main__program__bg_1 {
    display: none;
  }
  .children__title {
    width: 85%;
  }
  .children__desc {
    padding-right: 39px;
  }
  .main__about-last {
    display: none;
  }
  .mob-drop__links {
    margin-bottom: 20px;
  }
  .mob-drop__buttons label {
    margin-bottom: 8px;
  }
  .banner__img {
    width: 73%;
    height: 597px;
    position: relative;
    top: -26px;
  }
  .banner__title {
    width: 84%;
    line-height: 30px;
    font-size: 30px;
  }
  .banner__price {
    font-size: 24px;
  }
  .banner__text {
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 45px;
  }
  .bogdasha-pic {
    position: absolute;
    right: -44px;
    top: -25px;
  }
  .n-p__close svg path {
    fill: #181818;
  }
  .n-p__close svg {
    height: 22px;
  }
  .n-p__close {
    right: 20px;
    top: 20px;
  }
  .n-p__final-close svg path {
    fill: #181818;
  }
  .n-p__final-close svg {
    height: 22px;
  }
  .n-p__final-close {
    right: 20px;
    top: 20px;
  }
  .n-p__tabs ul,
  .n-p__tabs-types {
    padding: 0 16px;
  }
  .n-p__tabs_referal ul,
  .n-p__tabs_referal-types {
    padding: 0 16px;
  }
  .n-p h3 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .n-p h2 {
    margin-bottom: 0;
  }
  .n-p__tabs li {
    font-size: 17px;
    height: 57px;
  }
  .n-p__tabs_referal li {
    font-size: 17px;
    height: 57px;
  }
  .n-p__radio {
    width: 32%;
  }
  .visa-payment {
    height: 42px !important;
  }
  .n-p__radio img {
    margin-left: 22px;
    height: 28px;
  }
  .apple-google-payment {
    margin-left: 30px !important;
    height: 28px !important;
  }
  .sber-payment {
    height: 48px !important;
    margin-left: 12px !important;
  }
  .tinkoff-payment {
    margin-left: 33px !important;
    height: 31px !important;
  }
  .alfabank-payment-style {
    height: 20px !important;
  }
  .n-p__radio p {
    margin: 25px 0 25px;
    line-height: 17px;
  }
  .n-p__current {
    padding: 32px 16px;
  }
  .n-p__some__desc {
    width: 75%;
    padding: 10px 10px 10px 24px;
  }
  .n-p__some-pic {
    width: 115px;
    margin: 0;
  }
  .n-p__some-much span {
    margin-left: 15px;
  }
  .n-p__list {
    padding: 40px 16px 47px 16px;
  }
  .n-p__final h2 {
    margin-bottom: 20px !important;
  }
  .n-p__final span {
    width: 95%;
    margin: 16px auto 20px auto;
  }
  .n-p__final-input {
    width: 100%;
  }
  .n-p__final-form label {
    width: 32%;
  }
  .n-p__final-last p {
    margin-left: 100px;
    line-height: 22px;
    top: 27px;
  }
  .n-p__sms {
    padding: 20px 16px;
  }
  .n-p__banks {
    padding: 20px 16px;
    display: grid;
  }
  .n-p__tabs-banks h3 {
    text-align: left;
    padding: 0 18px;
  }
  .n-p__banks-item {
    width: 39%;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
  }
  .n-p {
    width: 100%;
  }
  .hero-flower-right {
    display: none;
  }
  .burger-wrap {
    width: 70px;
  }
  .header__right {
    padding-top: 7px;
  }
  .banner__img {
    height: 500px;
  }
  .banner__bottom__bg {
    display: none;
  }
  .container {
    padding: 0 20px;
  }
  .banner__bottom__wrap {
    width: 100%;
    -webkit-flex-wrap: wrap;
    /* Safari */
    flex-wrap: wrap;
  }
  .banner__bottom__item img {
    max-width: 68px;
  }
  .banner__bottom__wrap .col-4 {
    width: 47.9%;
    padding-bottom: 20px;
    border-bottom: 1.37758px solid rgba(0, 76, 117, 0.14);
  }
  .banner__bottom__wrap .col-4:first-child,
  .banner__bottom__wrap .col-4:nth-child(3) {
    border-right: 1.37758px solid rgba(0, 76, 117, 0.14);
  }
  .banner__bottom__wrap .col-4:nth-child(3),
  .banner__bottom__wrap .col-4:nth-child(4) {
    padding-top: 20px;
  }
  .banner__bottom__item img {
    margin-right: 25px;
    margin-left: 20px;
  }
  .banner__bottom__title br {
    display: none;
  }
  .section h3 {
    font-size: 30px;
  }
  .needhelp {
    padding: 40px 0 20px 0;
  }
  .needhelp__item {
    width: 48%;
  }
  .needhelp__item:nth-child(2) {
    margin-right: 0;
  }
  .needhelp__button__more {
    display: block;
  }
  .needhelp__button__link {
    display: block;
    width: 214px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background: #FFFFFF;
    border: 1px solid #1C9DC3;
    box-sizing: border-box;
    border-radius: 60px;
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
    color: #004C75;
    margin: 0 auto;
  }
  .mobile-nav-arrow {
    padding: 5px;
  }
  .news__main__first__img {
    width: 62%;
    margin-right: 3%;
  }
  .news__main__first__text {
    width: 35%;
  }
  .news__main__first {
    width: 100%;
  }
  .news__main__blocks {
    display: none;
  }
  .news__main__first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    /* Safari */
    justify-content: space-between;
  }
  .news__main__wrap {
    -webkit-flex-wrap: wrap;
    /* Safari */
    flex-wrap: wrap;
  }
  .news__main__button {
    display: block;
    width: 254px;
    height: 51px;
    text-align: center;
    line-height: 51px;
    background: #FFFFFF;
    border: 1px solid #1C9DC3;
    box-sizing: border-box;
    border-radius: 60px;
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
    color: #004C75;
    margin-top: 27px;
    margin-right: auto;
    margin-left: auto;
  }
  .all__link {
    display: none;
  }
  .news-cloud {
    top: -130px;
  }
  .main__form {
    padding: 60px 0 50px 0;
    border: none;
  }
  .main__form__text {
    font-size: 18px;
    line-height: 150%;
  }
  .section h3 {
    margin: 0 0 15px 0;
  }
  .personal {
    font-size: 14px;
  }
  .input__form input {
    height: 50px;
    padding: 0 36px;
    margin-right: 20px;
    margin-top: 15px;
  }
  .main__form__line-tree {
    bottom: 35px;
    width: 35%;
    right: -25px;
  }
  .fond-cloud {
    display: none;
  }
  .main__about__img {
    width: 210px;
  }
  .main__about__img img {
    max-width: 100%;
  }
  .main__about {
    background: url(/assets/fond-bg-79fb7d9916d257c6069d4f6484197cbcab6d1abf9020ef0ce260eceece6aa129.jpg) no-repeat;
    background-size: cover;
  }
  .main__about__text {
    width: 100%;
  }
  .section .main__about__text h3,
  .section .main__about__text h4,
  .section .main__about__text p {
    color: #fff;
  }
  .main__about__link {
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-top: 20px;
  }
  .main__about__link svg path {
    stroke: #fff;
  }
  .main__doc__list {
    width: 100%;
    margin-bottom: 26px;
  }
  .main__doc__text h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .main__doc__wrap h3 {
    margin-bottom: 19px;
  }
  .main__doc__text p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .main__doc__text__num {
    font-weight: 500;
  }
  .main__doc__content {
    display: block;
  }
  .main__program__block h3 span:after {
    display: none;
  }
  .main__doc .main__about__link {
    color: #49AEF3;
  }
  .main__program {
    padding: 55px 0 0 0;
  }
  .main__program__text {
    height: initial !important;
  }
  .main__doc__wrap h3 {
    margin-bottom: 10px;
  }
  .needhelp__item.staff__item:last-child {
    display: block;
  }
  .postup__wrap .col-3 {
    width: 47.33%;
  }
  .banner__sum::-moz-placeholder {
    font-size: 24px;
    line-height: 44px;
  }
  .banner__sum::-webkit-input-placeholder {
    font-size: 24px;
    line-height: 44px;
  }
  .banner__sum:-ms-input-placeholder {
    font-size: 24px;
    line-height: 44px;
  }
  .banner__sum {
    font-size: 24px;
    line-height: 44px;
    width: 65px;
  }
  .qrcode_hand {
    display: none;
  }
  .qrcode_sbp {
    display: none;
  }
  .qrcode_sber_mob {
    padding: 30px 51px 23px 51px !important;
  }
  .qrcode_tinkoff_mob {
    padding: 26px 33px 7px 33px;
  }
  .qr_border {
    display: flex;
    flex-direction: row;
    margin-left: 25px !important;
  }
  .qrcode_invisible_block {
    display: none;
  }
}
@media screen and (max-width: 769px) {
  .main__doc__text {
    width: 100%;
  }
  .wrapper {
    overflow: hidden;
  }
  .footer__side {
    justify-content: center;
  }
  .main__doc__list {
    margin-bottom: 25px;
    margin-top: 30px;
  }
  .main__help__item h4 {
    margin-bottom: 10px !important;
  }
  .how__help h3 {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .main__doc__wrap .main__about__link {
    margin-top: 20px;
  }
  .header__bottom a {
    display: none;
  }
  .documents__item__img {
    margin-right: 20px;
  }
  .documents__text {
    width: 100%;
  }
  .documents__bottom a:last-child {
    margin-left: 4px;
  }
  .about__main-banner {
    height: 353px;
    padding: 35px 25px;
  }
  .mobile-nav__drop {
    margin-top: 10px;
  }
  .mobile-nav__drop li a {
    font-size: 14px !important;
  }
  .main-form-button {
    margin-left: 0 !important;
  }
  .pages-content {
    padding-right: 0;
    width: 100%;
  }
  .main-sidebar {
    display: none;
  }
  .wrapper {
    padding-top: 80px;
  }
  .p-title {
    margin-bottom: 0;
    font-size: 52px;
  }
  .header__right {
    padding-top: 0;
  }
  .mob-drop__content-left {
    margin-top: 0;
  }
  .header__logo img {
    width: 130px;
  }
  .header__right {
    width: 100%;
  }
  .button--big {
    font-size: 14px;
  }
  .header__bottom {
    padding-right: 60px;
  }
  .header__logo-text {
    font-size: 10px;
    bottom: 7px;
    left: 37px;
  }
  .about__main-form {
    width: 100%;
  }
  .help-radio-option-about {
    width: 30%;
  }
  .about-form .help-form__bottom {
    justify-content: center;
  }
  .about__banner-wrapper h2 {
    font-size: 39px;
  }
  .about__privacy {
    top: 8px;
  }
  .help-radio-option-about {
    width: 50%;
  }
  .about__banner {
    background-position: inherit;
  }
  .about__privacy {
    top: 0;
    width: 100%;
  }
  .about {
    padding-top: 0;
  }
  .about__title {
    font-size: 26px;
    line-height: 28px;
  }
  .contacts__left {
    width: 100%;
  }
  .contacts__right {
    width: 0;
  }
  .contacts__map {
    left: -342px;
    display: none;
  }
  .contacts__form-wrapper {
    width: 100%;
  }
  .contacts__form-labels {
    margin-bottom: 25px;
    flex-direction: column;
  }
  .contacts__form label:first-child {
    margin-bottom: 22px;
  }
  .contacts__form-personal {
    font-size: 13px;
    /*    width: 80%;*/
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .contacts__form-submit {
    width: 100%;
  }
  .contacts__left-item {
    padding-left: 62px;
  }
  .c-detail__main {
    padding-right: 20px;
    width: 70%;
  }
  .c-detail__story i {
    margin-left: 55px;
  }
  .related-wrapper .needhelp__item {
    width: 50%;
  }
  .c-detail__related-wrap a {
    font-size: 20px;
  }
  .c-detail__info {
    width: 30%;
  }
  .s-need {
    background-image: url(/assets/s-need-bg-06684cf21a4e5f873d8848c5526c0ed5a1488c6a1c5310b7c795941290731826.png);
    padding: 25px 0;
    background-size: cover;
  }
  .main__program h4 {
    margin-bottom: 35px;
  }
  .footer__item-contacts {
    width: 50%;
    margin: 0 auto;
    text-align: center;
  }
  .footer__text,
  .footer__title {
    display: none;
  }
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding-top: 16px;
    flex-direction: column;
    align-items: center;
    line-height: 20px;
  }
  .main__help__wrap {
    flex-direction: column;
  }
  .main__help__item {
    width: 48%;
    margin-bottom: 30px;
    margin-right: 0;
  }
  .main__help__left {
    justify-content: space-between;
  }
  .main__tezis {
    background-position: calc(35% - 50px);
  }
  .footer__item:nth-child(2),
  .footer__item:nth-child(4) {
    display: none;
  }
  .footer__wrap {
    flex-wrap: wrap;
  }
  .footer__item:nth-child(3) {
    width: 100%;
  }
  .footer__socials {
    justify-content: center;
    margin-bottom: 20px;
  }
  .main__help__right {
    justify-content: space-between;
    display: flex;
  }
  .main__help__right img,
  .how-help-wrapper {
    width: 48%;
  }
  .how__help__text h3,
  .how__help__text p {
    color: #fff;
    width: 70%;
  }
  .main__program__bg_2 {
    top: 749px;
    right: -122px;
    transform: scale(0.6);
  }
  .how__help__text .button {
    width: 233px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main__program__list {
    flex-direction: column;
  }
  .main__program__item {
    width: 100%;
    border: none;
    text-align: left;
    padding: 0;
    margin-bottom: 22px;
  }
  .main__program__text {
    height: unset;
    text-align: left;
    margin-bottom: 8px;
  }
  .main__program__link {
    text-align: left;
  }
  .main__program__title {
    padding: 0;
    margin-bottom: 8px;
  }
  .n-p__list .n-p__some {
    height: unset;
  }
  .main__program__bg_2 {
    display: none;
  }
  .banner__bottom__item img {
    margin-right: 20px;
    max-width: 40px;
    margin-left: 0;
  }
  .needhelp-index-wrap {
    flex-wrap: wrap;
  }
  .qrcode_hand {
    display: none;
  }
  .qrcode_sbp {
    display: none;
  }
  .qrcode_sber_mob {
    padding: 30px 51px 23px 51px !important;
  }
  .qrcode_tinkoff_mob {
    padding: 26px 33px 7px 33px;
  }
  .qr_border {
    display: flex;
    flex-direction: row;
    margin-left: 25px !important;
  }
  .qrcode_invisible_block {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .header__right {
    display: none;
  }
  .bogdasha-pic {
    display: none;
  }
  .postup__wrap .col-3 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  /*.postup .flex{
        display: block;
    }*/
  .postup .flex .filter__button {
    width: 50%;
    margin: 0px;
  }
  .filter__button--reset {
    margin-top: 20px;
  }
  .c-detail__cloud-left,
  .c-detail__cloud-right {
    max-width: 100%;
  }
}
@media screen and (max-width: 481px) {
  .needhelp__sum__item {
    width: 50%;
  }
  .needhelp__sum__item:last-child {
    display: flex;
    justify-content: flex-end;
  }
  .needhelp-index-wrap .needhelp__item:last-child {
    display: flex;
  }
  .main__doc__list {
    flex-wrap: wrap;
  }
  .frame-mob-lh {
    display: block;
    position: absolute;
    left: 0;
    top: 66px;
    z-index: -1;
  }
  .frame-mob-rh {
    display: block;
    position: absolute;
    right: 0;
    top: 100px;
    z-index: -1;
  }
  .banner__price {
    width: max-content;
    margin: 0 auto 20px auto !important;
  }
  .footer__uni svg {
    max-width: 64px;
    max-height: 39px;
  }
  .needhelp-index-wrap {
    flex-direction: column;
  }
  .n-p__some--heart {
    display: none;
  }
  .button-custom {
    position: relative;
    bottom: auto;
    margin: 0;
  }
  .n-p__submit {
    width: 90%;
    height: 55px;
  }
  .n-p__banks-item div {
    display: block;
  }
  .n-p__banks-item div a {
    display: block;
  }
  .n-p__banks-item div a:first-child {
    margin-bottom: 10px;
  }
  .hystmodal__close {
    top: -5px;
    right: -7px;
  }
  .news-detail iframe {
    width: 100%;
  }
  .news-detail img {
    width: 100%;
  }
  .news__item {
    flex-direction: column;
  }
  .news__item-container {
    width: 100%;
  }
  .news__item {
    margin-bottom: 40px;
  }
  .news__item-pic {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .thanks__item-pic {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .about__main-banner {
    padding: 25px;
    height: 320px;
  }
  .about__main-banner p {
    font-size: 27px;
    width: 80%;
    text-shadow: 0 0 5px #fff;
  }
  .mobile-nav__drop li {
    margin: 6px 0 !important;
  }
  .mobile-nav__drop li a {
    font-size: 15px !important;
  }
  .header-mob-drop {
    overflow: scroll;
  }
  .mobile-nav__drop {
    margin-top: 8px;
  }
  .mob-drop__content {
    padding-top: 13%;
  }
  .c-detail__slide {
    border: 3px solid transparent;
    box-sizing: border-box;
    border-radius: 6px !important;
  }
  .c-detail__slide.swiper-slide-thumb-active {
    border: 3px solid #E54E7C;
  }
  .breadcrumbs {
    margin-top: 10px;
    flex-wrap: wrap;
    line-height: 22px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .slider-thumbs {
    width: 100%;
    height: 100px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .slider-main {
    width: 100%;
  }
  .c-detail__slider-container {
    display: flex;
    flex-direction: column-reverse;
    height: 430px;
  }
  .p-title {
    margin-bottom: 30px;
    font-size: 34px;
    line-height: 40px;
  }
  .about {
    padding-bottom: 60px;
  }
  .header__logo-text {
    font-size: 10px;
    bottom: 8px;
    left: 36px;
  }
  .mob-drop__content-left {
    width: 100%;
  }
  header {
    height: 67px !important;
    background-color: #fff !important;
  }
  .header__right {
    display: none;
  }
  .about-cloud-lh {
    display: none;
  }
  .contacts__title {
    font-size: 40px;
    margin: 20px 0;
  }
  .contacts .container .main__program__bg_2 {
    top: 845px;
    right: -182px;
    z-index: 0;
    transform: scale(0.4) !important;
  }
  .contacts__left-item svg {
    width: 40px;
  }
  .contacts__left-item:last-child svg {
    width: 35px;
  }
  .contacts__form label input {
    font-size: 20px;
  }
  .c-detail__main {
    padding-right: 0;
    width: 100%;
    order: 2;
  }
  .c-detail__info {
    width: 100%;
    order: 2;
    position: relative;
    margin-top: 10px;
  }
  .c-detail__info:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: -20px;
    width: 120%;
    height: 100%;
    z-index: -1;
    background: #EBF6F6;
  }
  .c-detail__diagnosis div p {
    margin-top: 0;
  }
  .c-detail__other {
    order: 3;
    width: 100%;
  }
  .c-detail__related-wrap a {
    width: 134px;
    font-size: 18px;
    font-weight: 500;
  }
  .related-wrapper {
    flex-wrap: wrap;
  }
  .related-wrapper .needhelp__item {
    width: 100%;
  }
  .slider-thumbs {
    margin-right: 10px;
  }
  .swiper-button-prev {
    top: 21px;
    height: 24px;
  }
  .swiper-button-next {
    top: 329px;
    height: 24px;
  }
  .c-detail__info-wrap {
    margin-bottom: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .c-detail__info--mob .c-detail__help-btn,
  .c-detail__content .c-detail__help-btn--mob {
    width: 100%;
  }
  .c-detail__help-btn--mob {
    display: flex;
  }
  .c-detail__content-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .c-detail__videos iframe {
    width: 100%;
  }
  .c-detail__document {
    margin-right: 25px;
  }
  .c-detail__related h2 {
    font-size: 28px;
    line-height: 29px;
  }
  .about__banner-wrapper {
    width: 100%;
  }
  .about__banner-wrapper h2 {
    font-size: 34px;
  }
  .about__banner-wrapper p {
    margin: 17px 0;
  }
  .about__summary-wrap {
    width: 100%;
  }
  .about__summary-label span {
    font-size: 28px;
  }
  .footer__bottom__item:last-child {
    text-align: center;
  }
  .footer__item-contacts {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .children__title {
    width: 100%;
    font-size: 30px;
    margin-bottom: 0;
    line-height: 32px;
  }
  .children__heading {
    flex-direction: column;
  }
  .children__desc {
    padding-right: 0;
    width: 100%;
  }
  .children__search {
    width: 100%;
  }
  .banner__bottom__wrap {
    padding: 10px 0;
  }
  .header__bottom a:last-child {
    display: block;
    width: 122px;
    height: 31px;
    box-sizing: border-box;
    font-size: 11px;
  }
  .banner__bg {
    background-image: url(/assets/hero-bg-mob-a525d72a001210016433ff8637bf5c1f05a423f3316e3c9f81499eb03925c21c.png) !important;
    height: 670px;
  }
  .header__bg {
    background-image: none !important;
  }
  #boxercontainer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: static;
    transform: none !important;
  }
  .banner__img {
    height: fit-content;
    position: static;
    width: 220px;
  }
  .banner__center__text {
    width: 100%;
  }
  .banner__title {
    width: 100%;
    font-size: 41px;
    text-align: center;
    margin: 0;
    line-height: 35px;
    color: #fff;
    -webkit-text-fill-color: unset;
  }
  .banner__text {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 45px;
    color: #fff;
    text-align: center;
    margin-top: 12px;
  }
  .c-detail__info--mob {
    display: block;
  }
  .c-detail__info--desktop {
    display: none;
  }
  .c-detail__slider-container {
    margin-bottom: 20px;
  }
  .banner__bottom {
    margin-top: 140px;
  }
  .header__logo-text.scrolling {
    font-size: 9px;
  }
  .banner__bottom .container {
    padding: 0;
  }
  .header-help__mob-link {
    display: flex;
  }
  .banner__bottom__item {
    width: 100% !important;
    padding: 20px 15px 20px !important;
    margin-right: 0;
  }
  .c-detail__document svg {
    width: 30px;
  }
  .c-detail__document-info {
    width: 100%;
  }
  /*.banner__bottom__title{
        font-size: 21px;
    }*/
  .mp-link-cat {
    height: 40px;
    padding: 0 30px;
  }
  .needhelp__item {
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }
  .needhelp__button__link {
    width: 100%;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
  }
  .news__main__first {
    flex-direction: column;
  }
  .news__main__first__img {
    width: 100%;
    margin-right: 0;
  }
  .news__main__first__text {
    width: 100%;
  }
  .news__main__first__title {
    font-size: 18px;
  }
  .news__main__button {
    width: 100%;
  }
  .main__form__text {
    font-size: 14px;
    line-height: 150%;
  }
  .main__form__wrap {
    width: 100%;
  }
  .main__form__text + form {
    display: flex;
    flex-direction: column;
  }
  .input__form {
    display: flex;
    flex-direction: column;
  }
  .input__form input {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .main__form__line-tree {
    bottom: 168px;
    width: 40%;
    right: -77px;
    z-index: 1;
    display: none;
  }
  .helpsum-cloud {
    display: none;
  }
  .main__form__text {
    width: 80%;
  }
  .main__doc__wrap h3 {
    text-align: center;
    width: 100%;
    margin: 20px auto 20px auto;
  }
  .main__doc__title {
    bottom: -194px;
    text-align: center;
  }
  .main__doc__link {
    margin-bottom: 80px;
    width: 40%;
  }
  .main__doc__text p {
    line-height: 22px;
  }
  .main__program {
    padding: 0;
  }
  .main__program__block h3 span:after {
    right: 30%;
    z-index: -1;
    top: -19px;
  }
  .main__program__item {
    text-align: center;
    border-bottom: 1px solid #E44E80;
    margin-bottom: 32px;
  }
  .main__program__item:last-child {
    border: none;
  }
  .main__program__bg_2 {
    top: 943px;
    right: -174px;
    transform: scale(0.6) !important;
  }
  .main__program h4 {
    margin-bottom: 8px;
    text-align: left;
  }
  .main-prog-title {
    margin-bottom: 37px !important;
    text-align: center !important;
  }
  .main__help h3 {
    text-align: left;
  }
  .main__help__right {
    flex-direction: column;
  }
  .main__help__right img,
  .how-help-wrapper {
    width: 100%;
  }
  .main__help {
    padding: 70px 0 70px 0;
  }
  .main__help__right a {
    margin-top: 20px;
  }
  .main__tezis-quote {
    width: 80%;
    font-size: 16px;
    line-height: 24px;
  }
  .main__tezis {
    height: 260px;
    background-size: cover;
  }
  .main__tezis-quote svg {
    top: -42px;
    left: -54px;
    width: 50px;
  }
  .quote__name {
    font-size: 20px;
  }
  .main__help__item {
    width: 100%;
  }
  .how__help__text p {
    line-height: 22px;
    width: 100% !important;
  }
  .how__help__text .button {
    margin-bottom: 30px;
  }
  .main__program__text {
    text-align: center;
  }
  .main__program__link {
    text-align: center;
  }
  .main__doc__list {
    justify-content: space-between;
  }
  .banner__help {
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .banner__price {
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .form_in_pozhertvovaniya2 {
    display: block !important;
    position: absolute;
    width: 100%;
  }
  .banner__text {
    margin-bottom: 30px;
  }
  .banner__center__wrap {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }
  .wrapper {
    padding-top: 90px;
  }
  .banner__help a {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF295B;
    color: #fff;
    font-size: 18px;
    padding: 0 20px;
    box-sizing: border-box;
    box-shadow: 0px 4px 24px #FF295B;
    width: 90%;
    margin: 0 auto;
  }
  .banner__sum {
    font-weight: 500;
  }
  .header__logo {
    width: 190px;
  }
  .n-p__list .n-p__some {
    height: unset;
  }
  .n-p__main-title {
    font-size: 24px;
    width: 80%;
    margin: 0 auto;
    line-height: 24px;
    margin-top: 45px;
  }
  .n-p__main-name {
    font-size: 20px !important;
    margin-bottom: 5px;
    text-align: center !important;
  }
  .n-p__diagnosis {
    font-size: 14px;
    color: #A5A5A5;
    padding: 0;
    align-items: baseline;
    margin: 0 auto 10px auto;
    width: 67%;
    display: block;
  }
  .n-p__tabs ul {
    flex-direction: column;
    border-bottom: none;
  }
  .n-p__tabs_referal ul {
    flex-direction: column;
    border-bottom: none;
  }
  .n-p__tabs li {
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #DEDEDE;
  }
  .n-p__tabs_referal li {
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #DEDEDE;
  }
  .n-p__tabs li.active {
    color: #fff;
    background-color: #FF295B;
  }
  .n-p__tabs_referal li.active {
    color: #fff;
    background-color: #FF295B;
  }
  .n-p h3 {
    font-size: 18px;
    text-align: left;
    padding: 0 16px;
  }
  .visa-payment-desk {
    display: none;
  }
  .visa-payment-mobile {
    display: block;
  }
  .n-p__radio {
    width: 100%;
    justify-content: flex-start;
  }
  .apple-google-payment {
    margin-left: 53px !important;
    height: 37px !important;
  }
  .visa-payment {
    height: 28px !important;
    margin-left: 51px !important;
  }
  .yandex-payment {
    height: 30px !important;
    margin-left: 54px !important;
  }
  .sber-payment {
    height: 52px !important;
    margin-left: 45px !important;
  }
  .alfabank-payment-style {
    height: 27px !important;
    margin-left: 55px !important;
  }
  .tinkoff-payment {
    margin-left: 51px !important;
    height: 38px !important;
  }
  .webmoney-payment {
    margin-left: 51px !important;
    height: 38px !important;
  }
  .new-payment-desk {
    margin-left: 51px !important;
    height: 38px !important;
  }
  .yandex_money {
    margin-left: 51px !important;
    height: 38px !important;
  }
  .qiwi-payment-style {
    margin-left: 51px !important;
    height: 38px !important;
  }
  .mobile-bill-payment {
    margin-left: 51px !important;
    height: 38px !important;
  }
  .n-p__current {
    height: 100%;
    flex-direction: column;
  }
  .n-p__some {
    width: 100%;
    position: relative;
  }
  .n-p__some--left {
    margin-bottom: 25px;
  }
  .n-p__some-right h2 {
    text-align: center;
    margin-bottom: 25px;
  }
  .n-p__triangle {
    border-top: 20px solid #1C9DC3;
    bottom: -60px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .n-p {
    top: 2%;
  }
  .n-p__list h3 {
    text-align: center;
    font-size: 24px;
  }
  .n-p__final-form-wrap {
    flex-direction: column;
  }
  .n-p__final-form label {
    width: 100%;
  }
  .n-p__final-form {
    height: 450px;
    padding: 40px 16px;
  }
  .n-p__final-input {
    margin-bottom: 15px;
  }
  .n-p__submit-form {
    width: 100%;
  }
  .submit-form-wrap {
    width: 100%;
  }
  .n-p__final-last {
    width: 100%;
  }
  .n-p__final-last .checkbox-move {
    top: 8px;
  }
  .n-p__final-last p {
    top: 0;
    flex-direction: row;
    width: 60%;
    align-items: center;
    justify-content: center;
    font-weight: 300;
  }
  .n-p__final-last p b {
    margin-left: 20px;
    font-weight: 300;
    text-transform: uppercase;
  }
  .n-p__sms p {
    width: 100%;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .n-p__banks-item {
    width: 64%;
    margin-bottom: 35px;
  }
  .n-p__sms {
    padding: 20px 16px 70px 16px;
    font-size: 20px;
  }
  .button__block {
    width: 135px;
  }
  .button__block-donate {
    width: 100%;
  }
  .about__banner {
    padding-bottom: 0;
  }
  .about {
    padding-bottom: 0;
  }
  .personal-table {
    margin-top: 20px;
  }
  .personal-table .main-card {
    width: 100%;
  }
  .qrcode_hand {
    display: none;
  }
  .qrcode_sbp {
    display: block;
  }
  .qrcode_donation {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
}
@media screen and (max-width: 600px) {
  blockquote {
    margin-left: 0;
    margin-right: 0;
  }
  header {
    z-index: 990;
  }
  .pages-content iframe {
    width: 100%;
    height: 50vw;
  }
  .footer__uni {
    display: flex;
  }
  .footer__uni svg:last-child {
    max-height: 30px;
    margin-top: 5px;
  }
  .n-p h2 {
    margin-bottom: 20px;
  }
  .n-p__some-img {
    max-width: 150px;
  }
  .button-custom.r,
  .button-custom.r .chbox_layer {
    position: absolute;
    bottom: 3px;
    right: 3px;
  }
  .n-p__some__desc div p {
    font-size: 11px;
    line-height: 12px;
  }
  .n-p__some__desc h4 {
    font-size: 16px;
  }
  .n-p__some__desc {
    padding: 8px;
  }
  .checkbox-move .knobs:before {
    top: 3px;
    left: 4px;
  }
  .n-p__some-numeral span {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 30px;
    padding-right: 5px;
  }
  .n-p__some-numeral .veof {
    font-size: 24px;
    line-height: 30px;
  }
  .n-p__some-img {
    display: block;
    width: 100%;
    min-height: 105px;
    object-fit: cover;
    object-position: center;
  }
  section.about .n-p__some__desc {
    width: 62%;
  }
  .n-p__final-form.pozh.active {
    top: -190px;
    z-index: 900;
  }
  .form_in_pozhertvovaniya2 .n-p__final-form label {
    width: 100%;
  }
  .program-file__links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
  .program-file__links p {
    color: #004C75;
    font-size: 14px;
    margin: 0px;
  }
  .d-programs__bottom .programs__item-support {
    line-height: 18px;
  }
  .footer__uni svg {
    max-width: 80px;
    max-height: 45px;
  }
  .c-detail__slider-container {
    height: auto;
  }
  .c-detail {
    margin-top: 0px;
  }
  .needhelp__diagnosis.needhelp__diagnosis--top {
    height: auto;
  }
  .postup__wrap .col-2 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 14px;
  }
  .programs__item-pic {
    width: 100%;
    margin-right: 0px;
  }
  .programs__item {
    flex-direction: column;
  }
  .programs__item-desc {
    width: 100%;
  }
  .programs__item h3 {
    font-size: 30px;
    line-height: 35px;
    margin: 0px;
    padding-top: 15px;
  }
  .contacts__form-labels label {
    width: 100%;
  }
  .n-p__final-last.pozh p {
    top: unset;
  }
  .n-p__radio img {
    max-width: 78%;
  }
  .qrcode_text_in_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
  }
  .qrcode_ul {
    width: max-content;
    display: flex;
    align-items: center;
    margin-left: 15px;
  }
  .qrcode_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    width: 320px !important;
  }
  .qrcode_sber_mob {
    padding: 30px 51px 23px 51px !important;
  }
  .qrcode_tinkoff_mob {
    padding: 26px 33px 7px 33px;
  }
  .qr_border_text {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3;
    justify-content: center;
  }
  .qrcode_logo_mini {
    display: none;
  }
  .qrcode_card_text {
    font-family: "GothamPro";
    color: black;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    padding-left: 81px;
    padding-right: 81px;
  }
  .qrcode_donation {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .qrcode_first_text {
    font-size: 25px;
  }
  .qrcode_sbp {
    display: block;
  }
}
@media screen and (max-width: 350px) {
  .banner__bg {
    height: 720px;
  }
  .footer__uni svg {
    max-width: 70px;
  }
}
@media screen and (max-width: 376px) {
  .header__logo-text {
    font-size: 9px;
    bottom: 8px;
    left: 31px;
  }
  .banner__bottom__title {
    font-size: 21px;
  }
  .mp-link-cat {
    padding-right: 0;
  }
  .header-help__mob-link {
    margin-right: 58px;
  }
  .n-p__some__desc {
    width: 64%;
  }
}
@media screen and (max-width: 600px) {
  .form_in_pozhertvovaniya2 .n-p__final-form label {
    display: flex;
    flex-direction: column;
  }
  .n-p__final-form label:last-child {
    width: 100%;
  }
  .n-p__final-form .iti {
    width: 100%;
  }
}
