.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

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

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

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

.carousel__track {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__container :focus {
  outline: none;
}

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

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__toolbar__items {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


html,
body {

  scroll-behavior: smooth;

}

.intro__inner:after {
  display: none;
}

.intro__inner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48vh;
}

.intro__title {
  font-size: 60px;
  line-height: 140%;
  /*max-width: 400px;*/
  padding-top: 0;
}

.intro__inner-banner {
  display: block;
  width: 100%;
  max-width: 401px;
  height: 401px;
}

.intro__inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1500px) {
  .intro__title {
    font-size: 40px;
  }

  .intro__inner-banner {
    max-width: 300px;
    height: 300px;
    align-self: center;
  }
}

@media (max-width: 992px) {
  .intro__inner-banner {
    margin-bottom: 20px;
  }

  .intro__inner-flex {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-top: 25vh;
  }
}

@media (max-width: 575px) {
  .intro__title {
    font-size: 30px;
  }
}

@media (min-width: 1365px) and (max-height: 700px) {
  .header {
    padding-top: 90px;
  }

  .intro__title {
    font-size: 63px;
  }
}

.services__info-nav {

  text-align: center;

}

.services__content-btn {

  justify-content: space-between;

}

.services__content-btn span {

  padding-right: 25px;

}

.services__content-btn:before {

  content: '';

  display: block;

  width: 1px;

  height: 1px;

  background-color: transparent;

}



/* Изменение  28 число */

.mb-0 {

  margin-bottom: 0px;

}

.quantity {

  font-family: 'HelveticaNeueCyr-Roman';

  margin-bottom: 83px;

  color: black;

  text-align: center;

  font-size: 25px;

}



.partners__content:before {

  top: -70px;

}



.event__columns-tabs a:not(:first-child) {

  margin-left: 20px;

}

/* Баннер */

.event__banner {

  position: relative;

  margin-top: 50px;

}

.event__banner img {

  max-width: 100%;

  position: absolute;

  top: 0;

  left: 50%;

  -webkit-transform: translate(-50%);

  -ms-transform: translate(-50%);

  transform: translate(-50%);

}

.event__banner:hover .event__center-bg {

  -webkit-filter: grayscale(0%);

  filter: grayscale(0%);

}

.event__center-bg {

  height: 150px;

  -webkit-filter: grayscale(100%);

  filter: grayscale(100%);

  -webkit-transition: -webkit-filter .5s ease;

  transition: -webkit-filter .5s ease;

  -o-transition: filter .5s ease;

  transition: filter .5s ease;

  transition: filter .5s ease, -webkit-filter .5s ease;

  margin-bottom: 15px;

}

.event__banner-items {

  display: flex;

  align-items: center;

}

.event__banner-link {

  background-color: transparent;

  color: #000000;

  font-size: 21px;

  font-family: 'HelveticaNeueCyr-Heavy';

  border: 2px solid #ef4833;

  padding: 12px 9px 12px 9px;

  border-radius: 50%;

  -webkit-transition: all .5s ease;

  -o-transition: all .5s ease;

  transition: all .5s ease;

  margin-bottom: 32px;

  cursor: pointer;

}

.event__banner-items a:not(:first-child) {

  margin-left: 20px;

}


.event__title {
  max-width: 100%;
}

@media (max-width: 575px) {
  .event__columns-top {
    justify-content: center;
  }

  .event__banner-link {

    margin-bottom: 20px;

    margin-left: 20px;

    font-size: 16px;

  }

  .event__columns-top-title {
    padding-left: 20px;
  }

  .event__columns-top-title {
    font-size: 50px;
  }

  .event__banner-items a:first-child {

    margin-left: 0;

  }

}

.event__columns-top img {
  max-width: 235px;
  max-height: 445px;
  height: auto;
}


.contacts__inner {

  align-items: flex-start;

}

.contacts-maps__title {
  font-family: 'HelveticaNeueCyr-Heavy';
  font-size: 60px;
  color: #ef4833;
  margin-bottom: 15px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .contacts-maps__title {
    font-size: 40px;
  }

}

@media (max-width: 475px) {
  .contacts-maps__title {
    font-size: 29px;
  }
}

/* .contacts-wrapper {
    display: flex;
    width: 50%;
    flex-direction: column;

} */
.contacts p {
  font-family: 'HelveticaNeueCyr-Heavy';
  font-size: 35px;
  color: #ef4833;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .contacts-wrapper {
    width: 100%;
  }
}

.contacts__phone {

  margin-bottom: 10px;

}



.footer__bottom-wrapp {

  display: flex;

  flex-direction: column;

}

.footer__bottom-phone {

  margin-bottom: 10px;

}










.about__content {
  display: none;

}

.about {
  padding-top: 145px;
}

@media (max-width: 992px) {
  .about {
    padding-top: 80px;
  }
}

.about:before {
  display: none;
}

/* Страница эксперт */

.expert__title {

  margin-bottom: 45px;

}



.expert__nav {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

}



.expert__nav-link {

  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;

  font-family: "HelveticaNeueCyr-Medium";

  width: 170px;

  height: 170px;

  border: 2px solid #ef4833;

  border-radius: 50%;

  font-size: 20px;

  line-height: 20px;

  -webkit-transition: all .5s ease;

  -o-transition: all .5s ease;

  transition: all .5s ease;

  margin-bottom: 50px;

  text-align: center;

}



.expert__nav-link:hover {

  background-color: #ef4833;

  color: #ffffff;

}



.expert__nav-link:hover span {

  color: #ffffff;

}



.expert__nav-link:not(:first-child) {

  margin-left: 30px;

}



.expert__nav-link span {

  color: #000000;

  -webkit-transition: all .5s ease;

  -o-transition: all .5s ease;

  transition: all .5s ease;

}



.expert__nav-link.active {

  background-color: #ef4833;

}



.expert__nav-link.active span {

  color: #ffffff;

}



.expert-gallery__inner {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  margin-left: -10px;

  margin-right: -10px;

}



.expert-gallery__item {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -ms-flex-preferred-size: 33.333%;

  flex-basis: 33.333%;

  text-align: center;

  padding-left: 10px;

  padding-right: 10px;

  margin-bottom: 55px;

}



.expert-gallery__item:after {

  content: '';

  display: inline-block;

  width: 100%;

  height: 2px;

  background-color: #1e1e1e;

}



.expert-gallery__item p {

  font-family: 'HelveticaNeueCyr-Heavy';

  font-size: 18px;

  line-height: 1.2;

  font-weight: 400;

  color: #a1a1a1;

  margin-bottom: 40px;

  -webkit-box-flex: 1;

  -ms-flex-positive: 1;

  flex-grow: 1;

}



.expert-gallery__item-img {
  width: 220px;
  height: 220px;
  margin-bottom: 45px;
  border-radius: 50%;
  overflow: hidden;
}



.expert-gallery__item-img img {

  width: 100%;
  height: 100%;


  -o-object-fit: cover;

  object-fit: cover;

}



.expert-gallery__title {

  font-family: 'HelveticaNeueCyr-Bold';

  font-size: 24px;

  line-height: 30px;

  color: #000000;

  margin-bottom: 18px;

}

@media (max-width: 992px) {
  .footer__bottom-last {
    margin-bottom: 25px;
  }

  .contacts__socials {
    padding: 0 10px;
  }

  .expert-gallery__item {

    -ms-flex-preferred-size: 50%;

    flex-basis: 50%;

    margin-bottom: 30px;

  }

}

@media (max-width: 650px) {

  .expert-gallery__item {

    -ms-flex-preferred-size: 100%;

    flex-basis: 100%;

  }

}



@media (max-width: 550px) {

  .expert__nav-link {

    width: 97px;

    height: 97px;

    font-size: 13px;

  }



  .expert__nav-link:not(:first-child) {

    margin-left: 15px;

  }

}







/* Правка первого экрана 100vh */

@media (max-wdith: 1520px) {

  .intro__btn {

    width: 155px;

    height: 155px;

    font-size: 18px;

    padding-left: 32px;

    padding-right: 25px;

  }

}


@media (max-width: 768px) {
  .event__columns {
    flex-basis: 47%;
  }

  .event__columns-top img {
    height: 445px;
  }
}

@media (max-width: 620px) {
  .event__columns {
    flex-basis: 100%;
  }
}





/* телеграм */

.telegram-phone i {

  background-color: transparent;

  color: #ef4833;

  font-size: 22px;

}

.phone-contacts {

  margin-bottom: 5px;

}



@media (max-width: 550px) {

  .contacts__email a,
  .contacts__phone a {

    margin-left: 5px;

  }

  .contacts__email,
  .contacts__phone {

    padding: 0 5px;

  }

  .contacts__socials {

    padding: 0 5px;

  }

}



/* ссылки переделка на интсграмм */

.intro__socials-link i {

  font-size: 25px;

  color: #fff;



}

@media (max-width: 575px) {

  .intro__socials-link i {

    font-size: 15px;

  }

}

.footer__socials-links i {

  font-size: 20px;

  color: #fff;

}

.event__banner p {
  color: #000;
  font-size: 18px;
  line-height: 30px;
}

/* Число для вывода количество логотипов */
.quantity {
  margin-bottom: 19px;
  color: #ef4833;
  font-size: 50px;
}

.quantity {
  display: inline-block;
  text-align: center;
  border-radius: 30px;
  padding: 10px 25px;
  background-color: #ef4833;
  color: #fff;
  font-size: 30px;
  margin-left: 15px;
}

.title-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

.services .title--big {
  max-width: 340px;
}

@media(max-width:1250px) {
  .partners__title {
    font-size: 70px;
  }
}

@media(max-width:999px) {
  .header__social {
    display: none;
  }
}

@media(max-width:900px) {
  .partners__title {
    font-size: 50px;
  }
}

@media(max-width:699px) {
  .partners__title {
    font-size: 40px;
  }
}

@media (max-width: 550px) {
  .title-wrap {
    flex-direction: column;
  }

  .quantity {
    margin-left: 0;
  }

  .partners__title {
    font-size: 30px !important;
    margin-bottom: 10px;
  }
}

.partners__item {
  height: 100%;
  cursor: pointer;
}

.partners__item img {
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
  filter: grayscale(100%);
}

.partners__item:hover img {
  filter: grayscale(0%);
}

.partners__item:hover {
  background-color: #ccc;
}

.cards__news .capabilities__columns-list {
  margin-left: 20px;
}

.contacts__email {
  margin-bottom: 10px;
}


.header__wrapper-phone {
  display: flex;
  flex-direction: column;
}

.header__top-phone {
  margin-bottom: 5px;
}

.header__top {
  align-items: flex-start;
}

@media (max-width: 575px) {
  .intro__inner:after {
    display: none;
  }
}

.event__center-bg {
  height: 326px;
}

@media (max-width: 992px) {
  .footer__center {
    order: 1;
  }

  .event__center-bg {
    height: 221px;
  }
}

@media (max-width: 650px) {
  .event__center-bg {
    height: 178px;
  }

}

@media (max-width: 475px) {
  .event__center-bg {
    height: 100px;
  }
}

.slider-img:before {
  display: none
}

.services__content-inner {
  display: none;
}

.services__content-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17vh;
  height: 17vh;
  border-radius: 50%;
  font-size: 2.1119vh;
  font-family: 'HelveticaNeueCyr-Medium';
  line-height: 2.1119vh;
  border: 2px solid #ef4833;
  margin-bottom: 30px;
  color: #000000;
  transition: all .4s ease;
  text-align: center;
  margin-left: 25px;
}

.services__content-link:hover {
  background-color: #ef4833;
  color: #fff;
}

.services__content-link.active {
  background-color: #ef4833;
  color: #fff;
}

.services__content-link:first-child {
  margin-left: 0px;
}

@media (max-width: 992px) {
  .services__content-inner {
    display: flex;
    align-items: flex-start;
  }

}

@media (max-width: 768px) {
  .services__content-inner {
    flex-wrap: wrap;
  }

  .services__content-link {
    width: 15vh;
    height: 15vh;
    font-size: 1.6555vh;
    margin-left: 10px;
  }

  .services__content-link:first-child {
    margin-left: 10px;
  }
}

.contacts p {
  color: black;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .intro::after {
    width: 102.4287vh;
    height: 46.4287vh;
    top: 20%;
  }
}

@media (max-width: 1300px) {
  .news__inner {
    margin-left: -15px;
    margin-right: -15px;
  }

  .news__cards {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 992px) {
  .news__inner {
    margin-left: -10px;
    margin-right: -10px;
  }

  .news__cards {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 992px) {
  .footer__center img {
    width: 250px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1024px) {
  .intro::after {
    top: 15%;
    height: 73.4287vh;
  }
}

/* тут было 420 */
@media (max-width: 420px) {
  .intro::after {
    height: 355px;
    max-width: 90%;
  }
}

@media (max-width: 412px) {
  .intro::after {
    height: 355px;
    max-width: 90%;
  }
}

@media (max-width: 375px) {
  .intro::after {
    height: 325px;
    max-width: 90%;
  }
}

@media (max-width: 321px) {
  .intro::after {
    height: 300px;
    max-width: 90%;
  }
}

/* ПРОСТИТЕ */

/* @media (min-width: 374px) and (max-height: 825px) {
  .intro::after {
    width: 400px;
    height: 355px;
    max-width: 90%;
  }
}
@media (min-width: 413px) and (max-height: 737px) {
  .intro::after {
    width: 400px;
    height: 375px;
    max-width: 90%;
  }
}
@media (min-width: 320px) and (max-height: 569px) {
  .intro::after {
    width: 400px;
    height: 290px;
    max-width: 90%;
  }
}
@media (min-width: 360px) and (max-height: 641px)  {
  .intro::after {
    width: 400px;
    height: 320px;
    max-width: 90%;
  }
} */


.news__navigation-link active {
  background-color: black;
  color: white;
}

@media (max-width: 575px) {
  .intro__inner {
    padding-bottom: 75px;
  }

}

@media (max-width: 575px) {
  .services__title {
    font-size: 33px;
  }
}


/* Картинки в services обучение */
.services__content-image-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.services__content-image-item {
  text-align: center;
  flex-basis: 30%;
  padding: 10px;
  margin-bottom: 25px;
}

.services__content-image-item img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .services__content-image-item img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .services__content-image-inner {
    flex-direction: column;
  }
}

.news__navigation-link.active {
  background-color: #000;
  color: #fff;
}

.event__banner-link:hover {
  background-color: #ef4833;
  color: #fff;
}

@media (max-width: 992px) {
  .services__title.title.market-title {
    font-size: 70px;
    line-height: 70px;
  }
}

@media (max-width: 768px) {
  .services__title.title.market-title {
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .services__title.title.market-title {
    font-size: 35px;
    line-height: 45px;
  }
}

.cards__news-content.page-link {
  display: flex;
  flex-direction: column;
}

.services__info-nav {
  font-size: 2.05vh;
}

@media (max-width: 768px) {
  .services__content-btn {
    padding: 25px 0;
  }
}

.news__navigation {
  margin-left: 15px;
}

.cards__info-text {
  font-size: 18px;
  line-height: 30px;
}

.swiper-container.swiper-slider__img.slider-default-margin {
  margin-top: 40px;
  margin-bottom: 70px;
}

.partners {
  margin-bottom: 35px;
}

/* navigation mobile */
/* navigation mobile */
/* navigation mobile */
/* navigation mobile */
.news__navigation-mobile {
  display: none;
  align-items: center;
}

.news__navigation-mobile-prew,
.news__navigation-mobile-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid rgb(218, 213, 213);
  background-color: #fff;
  border-radius: 50%;
  transition: all .7s ease;
  margin-left: 10px;
}

.news__navigation-mobile-prew span,
.news__navigation-mobile-next span {
  transition: all .7s ease;
  color: #000000;
  font-size: 18px;
}

.news__navigation-mobile-prew:hover,
.news__navigation-mobile-next:hover {
  background-color: black;
  color: #fff;
}

.news__navigation-mobile-prew:hover span,
.news__navigation-mobile-next:hover span {
  color: #fff;
}

.news__navigation-mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgb(218, 213, 213);
  border-radius: 50%;
  font-family: 'HelveticaNeueCyr-Roman';
  font-size: 18px;
  color: #000000;
  margin-left: 10px;
  transition: all .7s ease;
}

.news__navigation-mobile-link.active {
  background-color: black;
  color: #fff;
}

@media (max-width: 768px) {
  .news__navigation-mobile {
    display: flex;
  }

  .news__navigation-mobile-prew,
  .news__navigation-mobile-next {
    width: 50px;
    height: 50px;
  }

  .news__navigation-mobile-link {
    width: 50px;
    height: 50px;
  }
}

.cards__news {
  padding-bottom: 0;
}

.slider-img {
  margin-top: 0;
}

.swiper-slider__img {
  margin-bottom: 0;
  margin-top: 25px;
}

/* Ебанный бред, мб позже сделать более изящнее */
.menu__list-item:hover .menu__list-link--arrow.arrow-color {
  color: #ef4833;
}

.menu__list-item:hover .header-secondary-link {
  color: #ef4833;
}

@media (max-width: 992px) {
  .arrow-color {
    color: #fff;
  }

  .menu__list-link.header-secondary-link {
    color: #fff;
  }

  .menu__list-item:hover .menu__list-link--arrow.arrow-color {
    color: #f8e821;
  }

  .menu__list-item:hover .header-secondary-link {
    color: #f8e821;
  }
}

/* Новая страница */
/* Exper html cod */
.expert-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-family: 'HelveticaNeueCyr-Heavy';
}

.expert-inner__content {
  flex-basis: 50%;
}

.expert-inner__content p {
  font-family: 'HelveticaNeueCyr-Light';
  font-size: 30px;
  line-height: 40px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 70px;
}

.expert-inner__title {
  font-size: 80px;
  line-height: 100px;
  color: #ef4833;
  margin-bottom: 30px;
}

.expert-inner__subtitle {
  font-size: 39px;
  line-height: 1.2;
  font-weight: 900;
  color: #000000;
  margin-bottom: 44px;
}

.expert-inner__link {
  font-family: 'HelveticaNeueCyr-Bold';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: #000000;
  padding-left: 20px;
  transition: .5s ease;
}

.expert-inner__link span {
  margin-right: 10px;
}

.expert-inner__link:hover {
  color: #fff;
  background-color: black;
}

.expert-inner__img {
  flex-basis: 40%;
}

.expert-inner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-img {
  max-width: 420px;
  max-height: 420px;
}

.expert-link {
  position: relative;
  width: 100%;
}

.expert-link::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 170px;
  width: 82.7%;
  height: 2px;
  background-color: black;
}

/* media */
@media (max-width: 1200px) {
  .expert-inner__title {
    font-size: 80px;
    line-height: 80px;
  }

  /* .expert-inner__subtitle {
    font-size: 39px;
  } */
}

@media (max-width: 992px) {
  .expert-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .expert-inner__content {
    order: 1;
  }

  .expert-inner__img {
    margin-bottom: 20px;
  }

  .expert-inner__content p {
    margin-bottom: 40px;
  }

  .expert-inner__title {
    font-size: 60px;
    margin-bottom: 15px;
  }

  .expert-inner__subtitle {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .expert-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .expert-link:before {
    display: none;
  }
}

@media (max-width: 768px) {
  .expert-inner__title {
    font-size: 40px;
    line-height: 40px;
  }

  .expert-inner__subtitle {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .expert-inner__content p {
    font-size: 20px;
    line-height: 20px;
  }

  .expert-inner__title {
    font-size: 35px;
    line-height: 35px;
  }

  .expert-inner__link {
    width: 140px;
    height: 140px;
    font-size: 15px;
    padding-left: 15px;
  }
}


@media (max-width: 575px) {
  .news__navigation {
    margin-left: 0px;
  }

  .news__navigation-prew {
    width: 40px;
    height: 40px;
    margin-right: 5px;
  }

  .news__navigation-next {
    width: 40px;
    height: 40px;
  }

  .news__navigation-link {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
}


/*! Voiting */
.btn-def i {
  margin-right: 15px;
}

.p-v-md {
  padding-top: 50px;
  padding-bottom: 50px;
}

.boxes-3 {
  letter-spacing: -15px;
}

.boxes-3 * {
  letter-spacing: 0;
}

.boxes-3 figure,
.boxes-3 .boxes-cell {
  display: inline-block;
  vertical-align: top;
}

.boxes-3:not(.serried) {
  margin-left: -1.29%;
  margin-right: -1.29%;
}

.boxes-3:not(.serried) figure,
.boxes-3:not(.serried) .boxes-cell {
  margin-left: 1.29%;
  margin-right: 1.29%;
  width: 30.75333%;
}

.boxes-3 figure,
.boxes-3 .boxes-cell {
  width: 33.33333%;

}

.figure-m-v-20 figure,
.figure-m-v-20 .boxes-cell {
  margin-top: 20px;
  margin-bottom: 20px;
}

.votign-items .comlist {
  position: relative;
}

.votign-items .item:after,
.votign-items .breadcrumb .item:after {
  vertical-align: middle;
}

.votign-items .item:after,
.votign-items .pagination-div .pagination .next .item:after {
  margin-top: 4px;
}

.votign-items .item:after,
.votign-items .input-icon .item:after {
  font-size: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  color: #dddddd;
}

.item span:nth-child(2) {
  text-align: right;
  padding: 0 5px;
  white-space: nowrap;
}

.votign-items .item {
  counter-increment: list;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  color: #242424;
  padding: 10px 15px;
  padding-left: 45px;
  min-height: 55px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
}

.votign-items .item>span:nth-child(1) {
  min-width: 150px;
}

.votign-items .item:nth-child(even) {
  background-color: #f6f6f6;
}

.votign-items .item:before,
.votign-items .item:after {
  content: counter(list);
  position: absolute;
  display: inline-block;
  width: 30px;
  left: 5px;
  top: -webkit-calc(50% - 15px);
  top: calc(50% - 15px);
  height: 30px;
  margin-right: 10px;
  color: white;
  background-image: -webkit-gradient(linear, left top, right top, from(#ae1446), to(#e5175a));
  background-image: -webkit-linear-gradient(left, #ae1446, #e5175a);
  background-image: -o-linear-gradient(left, #ae1446, #e5175a);
  background-image: linear-gradient(to right, #ae1446, #e5175a);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.votign-items .item:after {
  content: "\f004";
  background-image: none;
  opacity: 0;
  color: #e5175a;
  font-size: 25px;
}

.votign-items .item.change:after {
  -webkit-animation: buh 3s ease 1;
  animation: buh 3s ease 1;
}

.votign-items .item:nth-child(2):before {
  background-image: -webkit-gradient(linear, left top, right top, from(#f7d995), to(#e0b360));
  background-image: -webkit-linear-gradient(left, #f7d995, #e0b360);
  background-image: -o-linear-gradient(left, #f7d995, #e0b360);
  background-image: linear-gradient(to right, #f7d995, #e0b360);
}

.votign-items .item:nth-child(3):before {
  background-image: -webkit-gradient(linear, left top, right top, from(#5b5b5b), to(#9a9a9a));
  background-image: -webkit-linear-gradient(left, #5b5b5b, #9a9a9a);
  background-image: -o-linear-gradient(left, #5b5b5b, #9a9a9a);
  background-image: linear-gradient(to right, #5b5b5b, #9a9a9a);
}

.votign-items .item:nth-child(3)~div:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#d6d6d0), to(#d6d6d0));
  background-image: -webkit-linear-gradient(left, #d6d6d0, #d6d6d0);
  background-image: -o-linear-gradient(left, #d6d6d0, #d6d6d0);
  background-image: linear-gradient(to right, #d6d6d0, #d6d6d0);
}

.votign-items .cap-content {
  background-color: #f2f7f8;
  padding: 20px 30px;
  padding-left: 40px;
  position: relative;
  counter-reset: list;
  font-weight: 800;
  font-size: 1.25em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 110px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.votign-items .cap-content>span {
  position: relative;
  display: block;
  width: 100%;
  color: black;
  font-family: "HelveticaNeueCyr-Medium";
  font-size: 16px;
}

.votign-items .cap-content>span:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  left: -15px;
  top: 3px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-color: red;
  background: -webkit-gradient(linear, left top, right top, from(#ae1446), to(#e5175a));
  background: -webkit-linear-gradient(left, #ae1446, #e5175a);
  background: -o-linear-gradient(left, #ae1446, #e5175a);
  background: linear-gradient(to right, #ae1446, #e5175a);
}

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

.boxes-3:not(.serried) figure,
.boxes-3:not(.serried) .boxes-cell {
  margin-left: 1.29%;
  margin-right: 1.29%;
  width: 30.75333%;
}

.btn-def:not([class*="bg-color"]),
.btn-icon:not([class*="bg-color"]) {
  background-color: #e5175a;
  background: -webkit-gradient(linear, left top, right top, from(#ae1446), to(#e5175a));
  background: -webkit-linear-gradient(left, #ae1446, #e5175a);
  background: -o-linear-gradient(left, #ae1446, #e5175a);
  background: linear-gradient(to right, #ae1446, #e5175a);
}

.shadow-style-1,
.btn-def:not([class*="bg-color"]),
.btn-icon:not([class*="bg-color"]),
.menu ul.menu-list>li:last-child a,
.short-week-nav ul li:last-child a,
.owl-btn:hover,
.flickity-btn-1 .flickity-prev-next-button:hover,
.owl-btn:focus,
.flickity-btn-1 .flickity-prev-next-button:focus {
  -webkit-box-shadow: -4px 4px 30px -2px rgba(229, 23, 90, 0.8);
  box-shadow: -4px 4px 30px -2px rgba(229, 23, 90, 0.8);
}


.btn-style,
.btn-def,
.btn-icon,
.btn-opacity {
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  text-transform: uppercase;
  font-family: "HelveticaNeueCyr-Medium";
  -webkit-border-radius: 2em;
  border-radius: 2em;
  font-size: 15px;
}

.btn-def a {
  padding-top: 1.3em;
  padding-bottom: 1.3em;
  padding-left: 3.7em;
  padding-right: 3.7em;
  display: block;
  color: #fff;
  font-family: 'HelveticaNeueCyr-Medium';
}

.btn-style a,
.btn-def a,
.btn-icon a,
.btn-opacity a,
.btn-style button,
.btn-def button,
.btn-icon button,
.btn-opacity button,
.btn-style .btn-this,
.btn-def .btn-this,
.btn-icon .btn-this,
.btn-opacity .btn-this {
  line-height: normal;
  position: relative;
  min-width: 190px;
}

.entry-header {
  margin-bottom: 20px;
}

.entry-header h1 {
  font-size: 50px;
  color: black;
  font-family: 'HelveticaNeueCyr-Bold';
  margin-bottom: 25px;
}

.entry-header p {
  font-size: 18px;
  color: black;
  line-height: 170%;
}

@media (max-width: 992px) {
  .flex-adaptive {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 800px) {

  .boxes-3:not(.serried) figure,
  .boxes-3:not(.serried) .boxes-cell {
    margin-left: 1.29%;
    margin-right: 1.29%;
    width: 47.42%;
  }
}

@media (max-width: 575px) {

  .boxes-3:not(.serried) figure,
  .boxes-3:not(.serried) .boxes-cell {
    margin-left: 0%;
    margin-right: 0%;
    width: 100%;
  }
}


.intro__inner-row {
  align-items: center;
  justify-content: space-between;
}

.intro__btn {
  margin-left: 0;
  margin-right: 120px;
}

.language {
  display: flex;
}

.language__item {
  padding: 10px;
}

.language__item-link {
  border-bottom: 2px solid transparent;
  color: #fff;
  font-size: 20px;
  font-family: 'HelveticaNeueCyr-Medium';
  transition: color .5s ease;
}

.language__item-link:hover {
  color: black;
}

.language__item-link.active:hover {
  border-bottom: 2px solid black;
}

.language__item-link.active {
  border-bottom: 2px solid #fff;
  transition: all .5s ease;
}

.cards__info-text__subtitle {
  display: block;
}

.cards__info-text__subtitle .services__content-btn {
  margin-top: 50px;
  margin-bottom: 50px;
}


.cards__slider-img {
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  .cards__slider-img {
    width: 100%;
  }

  .cards__info-text__subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .cards__info-text__subtitle p {
    padding-left: 0;
    padding-right: 0;
  }

  .header__social {
    display: none;
  }

  .language {
    flex-direction: column-reverse;
  }

  .language__item {
    padding: 0 5px 5px 5px;
  }
}


@media (max-width: 650px) {
  .capabilities__columns {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .capabilities__inner {
    margin-left: 0;
    margin-right: 0;
  }

}

.footer__bottom-secondary {
  margin-top: 75px;
}

.voiting__slider:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}

.header.header-secondary {
  margin-top: 50px;
}

.ad-content-wrapper {
  height: 50px;
}

.ad-content-wrapper .ad-desc p {
  font-size: 16px;
}

.header {
  padding-top: 95px;
}

.header__bottom,
.obloshka {
  margin-top: 30px;
}

@media (max-width: 992px) {
  .header.header-secondary {
    margin-top: 0px;
  }

  .header {
    padding-top: 20px;
  }

  .header__bottom,
  .obloshka {
    margin-top: 0;
  }
}

.top-secondary__title span {
  display: inline-block;
  color: #ef4833;
}


#map-voiting-canvas {
  height: 100%
}

/* .intro__inner {
  height: calc(100vh - 75px);
  min-height: inherit;
  transform: translateY(75px);
}
.intro{
  transform: translateY(75px);
  min-height: inherit;
} */

/* Добавил новые стили под vh блок */
/* .header__bottom {
  margin-bottom: 0;
}
.obloshka {
  margin-top: 30px;
}
.ad-content-wrapper {
  height: 60px;
}
.header  {
  padding-top: 100px;
}
.intro {
  height: 100vh;
}
.intro__inner {
  justify-content: flex-start;
}
.intro__title {
  padding-top: 38vh;
}
.intro__inner-row {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .intro__inner {
    justify-content: flex-end;
  }
  .header {
    padding-top: 20px;
  }
} */


.header__logo {
  margin-left: 0;
}


/* Banners */
.about__banner-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.about__banner-img {
  margin-right: 20px;
}

.about__banner-img:last-child {
  margin-right: 0px;
}

.about__banner-img img {
  max-width: 100%;
}

@media (max-width: 992px) {
  .about__banner-flex {
    margin-bottom: 70px;
  }
}

@media (max-width: 768px) {
  .about__banner-flex {
    margin-bottom: 50px;
  }
}

.voiting__inner {
  width: 100%;
}

.voiting__video-inner {
  padding: 0;
}

.dowload-doc {
  font-family: 'HelveticaNeueCyr-Medium';
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(239, 72, 51);
  width: 170px;
  height: 170px;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  margin-top: 50px;
  transition: all .3s ease-in-out;
}

.dowload-doc:hover {
  background-color: #ae1446;
}


@media (max-width: 768px) {
  .dowload-doc {
    width: 130px;
    height: 130px;
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .entry-header-voiting h1 {
    line-height: 50px;
  }
}

.top-secondary__title {
  font-size: 75px;
}

.bottom-secondary__laguage.voiting-language {
  font-size: 20px;
}

.bottom-secondary__laguage.voiting-language a.active {
  color: #f8e821;
}

.bottom-secondary__laguage.voiting-language a {
  color: #fff;
}

@media (max-width: 575px) {
  .header__logo {
    margin-left: 50px;
  }

  .header__title {
    margin-left: 5px;
    font-size: 12px;
  }

  .header__logo a span {
    font-size: 28px;
  }

  .bottom-secondary__laguage.voiting-language {
    font-size: 16px;
  }
}

.bottom-secondary__laguage.voiting-language {
  font-weight: bold;
}

/* Makon */

/* MAKON */
.fixed-block {
  background-color: #ef4833;
  display: none;
}

.fixed-block.active {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  width: 100%;
  display: block;
}

.fixed-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

.fixed-block__item {
  margin-right: 45px;
  padding: 10px 0px;
}

.fixed-block__item:last-child {
  margin-right: 0px;
}

.fixed-block__item a {
  font-family: 'HelveticaNeueCyr-Bold';
  display: flex;
  align-items: center;
  width: 150px;
  height: 50px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;

}

.fixed-block__item a span {
  padding-left: 37px;
}

.head__row {
  position: relative;
  margin-bottom: 82px;
}

.macon-title {
  font-family: 'HelveticaNeueCyr-Bold';
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 2;
}

.macon-title span {
  color: #ef4833;
}

.header.header-last {
  padding-top: 45px;
}

.header__inner-last {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-last__phone {
  display: flex;
  align-items: center;
}

.phone-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ef4833;
  border-radius: 50%;
  margin-right: 15px;
}

.phone-number a {
  display: block;
  font-family: 'HelveticaNeueCyr-Bold';
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}

.phone-number span {
  font-family: 'HelveticaNeueCyr-Light';
}

.header-last__logo a span {
  font-size: 48px;
  color: #fff;
}

.header-last__language a {
  font-size: 14px;
  color: #a4a5af;
  transition: all .3s ease;
  text-transform: uppercase;
}

.header-last__language a.active {
  color: #f5ea20;
}

.header-last__language a:hover {
  color: #f5ea20;
}

.hero {
  position: relative;
  margin-bottom: 297px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  padding-top: 150px;
}

.hero__bottom-image {
  position: relative;
  bottom: -75px;
  z-index: 10;
  text-align: center;
}

.hero__bg-text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-family: 'HelveticaNeueCyr-Bold';
  font-size: 370px;
  line-height: 80px;
  font-weight: 700;
  position: absolute;
  top: 110px;
  left: 0;
  z-index: -1;
  text-transform: uppercase;
  width: 100%;
}


.hero__bottom-image img {
  max-width: 100%;
}

.hero__top {
  display: flex;
  justify-content: space-between;
}

.voiting__info {
  position: relative;
  z-index: 10;
}

.hero__top-title {
  padding: 10px;
  max-width: 500px;
}

.hero__top-text {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  color: #ffffff;
  max-width: 720px;
  padding: 10px;
}

.hero__bottom {
  align-items: flex-end;
}

.wrapper.bg-macon-color {
  overflow: hidden;
  background-color: #141742;
}

.razvitie {
  padding-top: 30px;
  padding-bottom: 30px;

}

.razvitie__video {
  position: relative;
  z-index: 5;
  max-width: 1170px;
  margin: 0px auto 170px auto;
}

.razvitie__video img {
  width: 100%;
}

.razvitie__btn {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f5ea20;
  transition: all .3s ease;
}

.razvitie__btn span {
  transition: all .3s ease;
  font-size: 25px;
}

.razvitie__btn:hover {
  background-color: black;
}

.razvitie__btn:hover span {
  color: #ffffff;
}

.razvitie__info-row {
  display: flex;
  justify-content: space-between;
}

.text {
  max-width: 620px;
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  padding: 10px;
}

.bg-title {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-family: 'HelveticaNeueCyr-Bold';
  font-size: 380px;
  line-height: 80px;
  font-weight: 700;
  opacity: 0.1;
}

.forum-row {
  display: flex;
  justify-content: center;
}

.forum-row p {
  font-family: 'HelveticaNeueCyr-Bold';
  font-size: 80px;
  line-height: 80px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  opacity: 0.1;
}

.forum-row p:not(:first-child) {
  margin-left: 36px;
}

.part {
  padding-top: 70px;
  padding-bottom: 150px;
}

.part__inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;

}

.part__item {
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;

}

.part__item-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #0a0d38;
  padding: 38px 30px 49px 30px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.part__item-body p {
  opacity: 0.5;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 400;
  color: #d0d3fe;
  position: relative;
  z-index: 10;
}

.part__item-title {
  font-family: 'HelveticaNeueCyr-Bold';
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 31px;
  position: relative;
  z-index: 10;
}

.part__item-number {
  font-family: 'HelveticaNeueCyr-Bold';
  font-size: 200px;
  line-height: 80px;
  font-weight: 700;
  color: #141742;
  position: absolute;
  bottom: 29px;
  right: -33px;
}

.numbers {
  padding-bottom: 50px;
  margin-bottom: 150px;
  padding-top: 50px;
}

.numbers__row {
  max-width: 850px;
  margin: 0 auto 82px auto;
}

.numbers__block {
  display: flex;
  justify-content: space-between;
  border: 5px solid #ef4833;
  padding-left: 150px;
  padding-right: 150px;
  padding-top: 55px;
  padding-bottom: 55px;
}

.numbers__item {
  padding: 10px;
  color: #ef4833;
}

.numbers__item p {
  font-size: 50px;
}

.numbers__item-count {
  font-family: 'HelveticaNeueCyr-Bold';
  font-size: 80px;
  text-align: center;
}

.spikers {
  padding-top: 50px;
  padding-bottom: 50px;
}

.spikers__inner {
  display: flex;
  flex-wrap: wrap;

}

.spikers__item {
  width: 25%;
  margin-bottom: 50px;
  cursor: pointer;
}

.spikers__item-image {
  filter: grayscale(100%);
  transition: all .4s ease;
}

.spikers__item:hover .spikers__item-image {
  filter: grayscale(0%);
}

.spikers__item-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  object-position: top;
}

.spikers__item-text {
  padding-left: 30px;
  padding-top: 27px;
  padding-bottom: 15px;
  padding-right: 30px;
}

.spikers__item-text h5 {
  font-family: 'HelveticaNeueCyr-Bold';
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 13px;
  max-width: 165px;
}

.spikers__item-text p {
  font-size: 18px;
  font-weight: 400;
  color: #d1d4ff;
  opacity: 0.5;
}

.voiting-partners.bg-macon-color {
  background-color: #ffff;
}


/*Media makon*/

.container-2 {
  max-width: 1430px;
  padding: 0 10px;
  margin: 0 auto;
}

@media (max-width: 1500px) {
  .container-2 {
    max-width: 1250px;
  }
}

@media (max-width: 1900px) {
  .forum-row p {
    font-size: 75px;
  }

  .forum-row p:not(:first-child) {
    margin-left: 25px;
  }
}

@media (max-width: 1800px) {
  .forum-row p {
    font-size: 50px;
  }

  .forum-row p:not(:first-child) {
    margin-left: 15px;
  }
}

@media (max-width: 1650px) {
  .bg-title {
    top: 75px;
  }

  .fixed-block__item:last-child {
    display: none;
  }
}

@media (max-width: 1500px) {
  .hero__bg-text {
    font-size: 325px;
  }

  .hero {
    height: 100%;
  }

  .hero__inner {
    height: 100%;
  }

  .top-secondary__title {
    font-size: 65px;
    line-height: 60px;
  }
}

@media (max-width: 1450px) {
  .bg-title {
    top: 0;
  }

  .fixed-block__inner {
    padding: 0 30px;
  }

  .fixed-block__item a {
    font-size: 20px;
    padding: 18px 0px;
  }

  .fixed-block__item a span {
    padding-left: 25px;
  }
}

@media (max-width: 1400px) {
  .razvitie__video {
    max-width: 1037px;
  }

  .text {
    font-size: 25px;
    line-height: 37px;
    max-width: 550px;
  }

  .hero {
    margin-bottom: 175px;
  }

  .top-secondary__title {
    font-size: 54px;
    line-height: 55px;
  }

  .hero__top-text {
    font-size: 22px;
    line-height: 29px;
    max-width: 546px;
  }

  .hero__bg-text {
    font-size: 280px;
  }

  .macon-title {
    font-size: 65px;
    line-height: 65px;
  }

  .part__item-title {
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 22px;
  }

  .razvitie__video {
    margin: 0 auto 100px auto;
  }

  .head__row {
    margin-bottom: 60px;
  }

  .bg-title {
    font-size: 280px;
  }
}

@media (max-width: 1200px) {
  .hero__bg-text {
    display: none;
  }

  .numbers {
    padding-bottom: 24px;
    margin-bottom: 75px;
  }

  .numbers__block {
    padding-left: 70px;
    padding-right: 70px;
  }

  .part {
    padding-top: 46px;
    padding-bottom: 66px;
  }

  .part__item {
    width: 33.3%;
  }

  .macon-title {
    font-size: 65px;
    line-height: 65px;
  }

  .bg-title {
    display: none;
  }

  .forum-row {
    display: none;
  }

  .fixed-block__item a {
    font-size: 16px;
  }

  .fixed-block__item a span {
    padding-left: 10px;
  }

  .fixed-block__item {
    margin-right: 0px;
  }

  .spikers__item {
    margin-bottom: 35px;
  }

  .spikers__item-text {
    padding: 20px;
  }

  .spikers__item-text h5 {
    font-size: 20px;
    line-height: 20px;
    max-width: 100%;
  }
}

@media (max-width: 992px) {

  .hero {
    margin-bottom: 150px;
  }

  .hero__top-text {
    font-size: 17px;
    line-height: 23px;
    max-width: 346px;
  }

  .spikers {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .numbers__item-count {
    font-size: 60px;
  }

  .numbers__item p {
    font-size: 35px;
  }

  .part__item-number {
    font-size: 150px;
    line-height: 50px;
  }

  .part__item-title {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 18px;
  }

  .part__item-body {
    padding: 33px 20px 38px 25px;
  }

  .text {
    font-size: 25px;
    line-height: 32px;
    padding: 20px;
  }

  .macon-title {
    font-size: 50px;
    line-height: 50px;
  }

  .none-fixed {
    display: none;
  }

  .spikers__item {
    width: 33.3%;
  }
}

@media (max-width: 768px) {
  .fixed-block__item a {
    width: 120px;
  }

  .fixed-block__item a span {
    display: none;
  }

  .razvitie__info-row {
    flex-direction: column;
  }

  .hero__inner {
    padding-top: 76px;
  }

  .phone-number a {
    font-size: 15px;
  }

  .phone-block {
    width: 40px;
    height: 40px;
  }

  .header-last__logo a span {
    font-size: 30px;
  }

  .header.header-last {
    padding-top: 18px;
  }

  .voiting__info-item h4 {
    line-height: 13px;
    font-size: 14px;
  }

  .voiting__info-item {
    min-height: 58px;
  }

  .hero {
    margin-bottom: 50px;
  }

  .hero__bottom-image {
    bottom: -29px;
  }

  .hero__bottom-image img {
    max-width: 100%;
  }

  .top-secondary__title {
    font-size: 35px;
    line-height: 35px;
  }

  .top-secondary__title p {
    display: inline-block;
  }

  .hero__top {
    flex-direction: column;
  }

  .hero__top-title {
    max-width: 100%;
    text-align: center;
  }

  .hero__top-text {
    text-align: center;
    max-width: 100%;
  }

  .numbers {
    margin-bottom: 35px;
  }

  .numbers__block {
    padding-left: 40px;
    padding-right: 40px;
  }

  .numbers__item-count {
    font-size: 45px;
  }

  .numbers__item p {
    font-size: 25px;
  }

  .part {
    padding-bottom: 25px;
  }

  .part__item {
    width: 50%;
  }

  .head__row {
    margin-bottom: 40px;
  }

  .macon-title {
    font-size: 45px;
    line-height: 45px;
  }

  .text {
    font-size: 18px;
    line-height: 24px;
    padding: 20px;
    max-width: 100%;
  }

  .razvitie__btn {
    width: 90px;
    height: 90px;
  }

  .razvitie__btn span {
    font-size: 20px;
  }

  .razvitie__video {
    margin: 0 auto 50px auto;
  }

  .spikers__item {
    margin-bottom: 20px;
  }

  .spikers__item-text {
    padding: 15px;
  }

  .spikers__item-text h5 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
  }

  .spikers__item-text p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .header-last__logo a span {
    font-size: 25px;
  }

  .phone-number a {
    font-size: 14px;
    margin-bottom: 9px;
  }

  .phone-block {
    display: none;
  }

  .voiting__info-item p {
    font-size: 11px;
    line-height: 11px;
  }

  .hero__top-text {
    font-size: 15px;
    line-height: 18px;
  }

  .top-secondary__title {
    font-size: 25px;
    line-height: 25px;
  }

  .numbers__block {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .numbers__item-count {
    font-size: 30px;
  }

  .numbers__item p {
    font-size: 15px;
  }

  .part__item {
    width: 95%;
    margin: 0 auto;
  }

  .part__inner {
    margin-left: -5px;
    margin-right: -5px;
  }

  .part__item {
    padding-left: 5px;
    padding-right: 5px;
  }

  .part__item-title {}

  .part__item-number {
    font-size: 80px;
    line-height: 0;
    bottom: 25px;
    right: -10px;
  }

  .part__item {
    margin-bottom: 20px;
  }

  .razvitie__btn {
    width: 65px;
    height: 65px;
  }

  .razvitie__video {
    margin: 0 auto 35px auto;
  }

  .text {
    padding: 10px;
  }

  .fixed-block__item:nth-of-type(3) {
    display: none;
  }

  .fixed-block__item a {
    padding: 15px 0px;
  }

  .fixed-block__inner {
    padding: 0 10px;
  }

  .macon-title {
    font-size: 26px;
    line-height: 28px;
  }

  .head__row {
    margin-bottom: 25px;
  }

  .spikers__item-text h5 {
    font-size: 15px;
    line-height: 16px;
  }

  .spikers__item {
    width: 50%;
  }

  .spikers__item-text {
    padding: 10px;
  }

  .spikers__item-text p {
    font-size: 12px;
  }
}

.voiting__info-item {
  align-self: stretch;
  height: auto;
}

#map-canvas-makon {
  width: 100%;
  height: 100%;
}

/* Архив */
.hero-arhive {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 40%;
  background-color: #fff;
  width: 60px;
  height: 165px;
}

.hero-arhive p {
  color: #000000;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 18px;
  font-family: 'HelveticaNeueCyr-Bold';
  position: relative;
}

.hero-arhive p:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 1px solid #ef4833;
  border-radius: 50%;
  position: absolute;
  top: -20px;
}

.hero-arhive p:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ef4833;
  top: -15px;
  left: 8px;
}

@media (max-width: 1200px) {
  .hero-arhive {
    width: 40px;
    height: 140px;
  }

  .hero-arhive p {
    font-size: 14px;
  }

  .hero-arhive p:after,
  .hero-arhive p:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .hero-arhive {
    top: 30%;
    width: 20px;
    height: 100px;
  }

  .hero-arhive p {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .hero-arhive {
    top: 42%;
  }
}

.voiting-block-item {
  height: 120px;
}




.spikers__item-image {
  height: 490px;
}

@media (max-width: 1400px) {
  .spikers__item-image {
    height: 420px;
  }
}

@media (max-width: 992px) {
  .spikers__item-image {
    height: 380px;
  }
}

@media (max-width: 575px) {
  .spikers__item-image {
    height: 275px;
  }
}





/* Внутренняя spikers */
.spickers__intro {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.spickers__intro-row {
  display: flex;
}

.spickers__intro-image {
  overflow: hidden;
  border-radius: 20px;
  min-width: 470px;
  height: 590px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.spickers__intro-desc {
  border-radius: 20px;
  margin-left: 70px;
  padding: 2% 5% 2% 4%;
  background-color: #f2f7f8;
  position: relative;
}

.spickers__intro-desc h2 {
  font-size: 45px;
  line-height: 50px;
  color: #000;
  font-family: 'HelveticaNeueCyr-Bold';
  margin-bottom: 15px;
}

.spickers__intro-desc h3 {
  color: #ef4833;
  font-size: 35px;
  font-family: 'HelveticaNeueCyr-Bold';
}

.text-item {
  overflow-y: auto;
  margin-top: 50px;
  height: 380px;
  padding-right: 15px;
}

.text-item::-webkit-scrollbar {
  width: 5px;
  border-radius: 15px;
}

.text-item::-webkit-scrollbar-track {
  background: gray;
}

.text-item::-webkit-scrollbar-thumb {
  background-color: blue;
  border-radius: 15px;
  border: 3px solid #ef4833;
}

.text-item p {
  color: #000;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 15px;
}

.spickers__intro-desc:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background-color: inherit;
  z-index: -1;
  top: 30px;
  left: -10px;
  transform: rotate(58deg) matrix(0.9, -0.6, -0.1, 1.1, 0, 0);
}

.spickers__intro-desc .shadow-bottom {
  background-image: linear-gradient(to bottom, transparent 80%, white 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: none;
}

@media (max-width: 992px) {
  .spickers__intro {
    margin-top: 57px;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .spickers__intro-row {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }

  .spickers__intro-desc {
    margin-left: 0px;
    margin-top: 50px;
    padding: 5%;
    text-align: center;
  }

  .spickers__intro-desc:before {
    display: none;
  }

  .spickers__intro-desc h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .spickers__intro-desc h3 {
    font-size: 25px;
    line-height: 25px;
  }

  .text-item {
    margin-top: 25px;
  }

  .spickers__intro-image {
    min-width: 100%;
  }
}

@media (max-width: 575px) {
  .spickers__intro-image {
    height: 350px;
  }

  .spickers__intro-desc h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .spickers__intro-desc h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .text-item p {
    font-size: 15px;
    line-height: 20px;
  }

  .spickers__intro-desc .shadow-bottom {
    background-image: none;
  }
}

/* Правки по шапке */
.intro__inner-row {
  justify-content: flex-start;
}

.intro__btn {
  margin-left: 18%;
  margin-right: 0;
}


/* Стили для programm */

.programm-block-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #ef4833;
  position: relative;
  z-index: 1;
}

.programm-block-row.programm-before:before {
  content: '';
  position: absolute;
  width: 4000px;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
  height: 100%;
  background-color: #0a0d38;
  z-index: -1;
}

.programm-item {
  width: 33%;
  padding: 72px 20px 61px 0px;
}

.programm-item:nth-child(3) {
  padding-left: 10%;
}

.programm-item h4 {
  color: #ef4833;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  font-family: 'HelveticaNeueCyr-Bold';
  margin-bottom: 27px;
}

.programm-item h3 {
  font-size: 24px;
  line-height: 30px;
  font-family: 'HelveticaNeueCyr-Bold';
  color: #fff;
  margin-bottom: 10px;
}

.programm-item p {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-family: 'HelveticaNeueCyr-Light';
}

.programm-item.item-last p {
  font-family: 'HelveticaNeueCyr-Light';
  font-size: 18px;
  line-height: 24px;
  opacity: 0.5;
  margin-bottom: 20px;
}

.forum-row {
  margin-bottom: 40px;
}

.bg-programm {
  background-color: #0a0d38;
}

.programm {
  margin-bottom: 100px;
  padding-top: 70px;
}

.spikers {
  padding-top: 50px;
}

@media (max-width: 1550px) {
  .hero {
    margin-bottom: 250px;
  }
}

@media (max-width: 1366px) {
  .hero {
    margin-bottom: 180px;
  }
}

@media (max-width: 992px) {
  .hero {
    margin-bottom: 150px;
  }

  .programm-item {
    width: 50%;
    padding: 20px;
    margin-bottom: 25px;
  }

  .programm {
    margin-bottom: 50px;
    padding-top: 40px;
  }

  .programm-item:nth-child(3) {
    padding-left: 2.5%;
  }
}

@media (max-width: 768px) {
  .hero {
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .programm-item {
    width: 100%;
  }

  .none {
    display: none;
  }
}

.voiting-block-image {
  margin-left: 0px;
  margin-right: 0px;
}

.voiting-block-item {
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  width: 24%;
}

@media (max-width: 768px) {
  .voiting-block-item {
    width: 45%;
  }

}

@media (max-width: 575px) {
  .voiting-partners-block-title {
    font-size: 20px;
    line-height: 24px;
  }

  .voiting-block-item {
    height: 100px;
  }
}

.voiting-block-item img {
  max-width: 90%;
  max-height: 90%;
}



.part__item-body p {
  opacity: 0.9;
}

.programm-item.item-last p {
  opacity: 0.9;
}


.programm-item__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.programm-item__body {
  width: 33%;
  padding-left: 10px;
  padding-right: 10px;
}

.programm-item__image {
  height: 80px;
  text-align: center;
  background-color: #fff;
  padding: 5px;
}

.programm-item__image img {
  display: block;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}


/* Marketing style */

.m-empty-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.m-head__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 70px;
}

.m-head {
  width: 60%;
}

.m-head p {
  color: rgb(19, 14, 14);
  font-size: 22px;
  line-height: 30px;
  margin-top: 30px;
}

.m-head h2 {
  color: rgb(19, 14, 14);
  font-size: 40px;
  line-height: 40px;
  font-family: 'HelveticaNeueCyr-Bold';
}

.m-head h3 {
  color: rgb(19, 14, 14);
  font-size: 40px;
  line-height: 40px;
  font-family: 'HelveticaNeueCyr-Bold';
}

.m-head h4 {
  color: rgb(19, 14, 14);
  font-size: 22px;
  line-height: 30px;
}

.m-head__image {
  width: 200px;
}

.m-head__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.m-text,
.m-empty-info-text {
  font-size: 22px;
  line-height: 30px;
  color: #000;
  font-family: 'HelveticaNeueCyr-Light';
  max-width: 740px;

}

.m-text {
  padding-left: 20px;
}

.m-empty,
.m-company,
.m-razvitie,
.m-access,
.m-recom,
.questions {
  /*background-color: rgb(233, 229, 229);*/
  padding: 80px 0px;
}

.m-empty-info {
  padding: 0px 40px 0px 0px;
  width: 35%;
  border-right: 2px solid black;
}

.m-empty-desc {
  width: 60%;
}

.m-empty-info-text {
  max-width: 693px;
  margin-bottom: 30px;
}

.m-text p span {
  text-transform: uppercase;
  color: #ef4833;
  font-size: 30px;
}

.m-empty-desc>.m-empty-row {
  font-size: 32px;
  color: rgb(19, 14, 14);
  font-weight: 700;
  font-family: 'HelveticaNeueCyr-Bold';
}

.m-empty-desc>.m-empty-row span {
  color: #ef4833;
}

.m-empty-desc-images {
  display: flex;
  flex-wrap: wrap;

}

.m-empty-desc-item {
  width: 20%;
  text-align: center;
  margin-bottom: 15px;
}

.m-empty-desc-item p {
  font-size: 14px;
  line-height: 16px;
  color: #000;
}

.m-empty-desc-item-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px auto;
}

.m-empty-info-images {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.m-empty-info-item {
  width: 50%;
  height: 100px;
  padding: 0 15px;
  margin-bottom: 20px;
}

.m-empty-info-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.m-empty-desc-item-image img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.m-razvitie__image-row {
  display: flex;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
}

.m-razvitie__image-left {
  width: 40%;
  padding-left: 15px;
  padding-right: 15px;
}

.m-razvitie__images-right {
  width: 40%;
  padding-left: 15px;
  padding-right: 15px;
}

.m-razvitie__inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.m-head.m-head__bottom {
  margin-bottom: 30px;
}

.m-razvitie__item {
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;

  margin-bottom: 15px;
}

.m-razvitie__body {
  height: 75px;
}

.m-razvitie__body img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}


.m-company__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.m-company__item {
  width: 10%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
}

.m-company__body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 61px;
}

.m-company__body img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}



.m-access__row {
  display: flex;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 50px;
}

.m-access__item {
  padding-left: 15px;
  padding-right: 15px;
}

.m-access__row {}

.m-access__item>.m-head {
  margin-bottom: 35px;
}

.m-acces__list li {
  display: flex;
  align-items: flex-start;
  position: relative;
  color: #000;
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 30px;
}

.m-acces__list li:before {
  content: '';
  display: block;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ef4833;
  margin-right: 10px;
}



.m-recom__row {
  display: flex;
  flex-wrap: wrap;
}

.m-recom__item {
  width: 100%;

}

.m-recom__item-body {
  display: flex;

  height: 100%;
}

.m-recom__images {
  flex: 0 0 150px;
  position: relative;
}

.m-recom__image {
  height: 100%;

}

.m-recom__images p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ef4833;
  padding: 9px 5px;
  text-align: center;
  font-size: 11px;
  line-height: 12px;
}

.m-recom__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.m-recom-desc {
  border: 2px solid #000;
  padding: 10px 15px 17px 15px;
  width: 100%;
}

.m-recom-desc p {
  color: #000;
  font-size: 13px;
  line-height: 16px;
}

.m-recom-desc a {
  color: #000;
  display: block;
  transition: all .4s ease;
  margin-top: 4px;
}

.m-recom-desc a:hover {
  color: #0a0d38;
}

.m-recom-desc_image {
  width: 120px;
  height: 50px;
  margin-bottom: 5px;
}

.m-recom-desc_image img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.m-access__item {
  width: 45%;
}

.m-access__desc h2 {
  font-size: 20px;
  line-height: 25px;
  color: #000;
  margin-bottom: 50px;
}

.m-acces__contact-item {
  margin-bottom: 10px;
}

.m-acces__contact-item p {
  font-size: 18px;
  line-height: 22px;
  color: #000;
}

.m-acces__contact h3 {
  font-family: 'HelveticaNeueCyr-Bold';
  font-size: 32px;
  color: rgb(19, 14, 14);
  font-weight: 700;
  margin-bottom: 25px;
}

.m-acces__contact a {
  color: #000;
  font-size: 18px;
  line-height: 22px;
}

.m-acces__social {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.m-acces__social i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgb(19, 14, 14);
  margin-right: 10px;
  font-size: 14px;
  color: #fff;
}

.m-acces__social a {
  width: 33.33%;
  margin-bottom: 20px;
  color: #000;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
}

@media (max-width: 992px) {
  .m-recom__item {
    width: 50%;
  }

  .m-head.m-head__bottom {
    width: 100%;
    text-align: center;
  }

  .m-text p span {
    font-size: 22px;
  }

  .m-head h2 {
    font-size: 30px;
    line-height: 32px;
  }

  .m-access,
  .m-company,
  .m-empty,
  .m-razvitie,
  .m-recom,
  .questions {
    padding: 60px 0px;
  }

  .m-head h3 {
    font-size: 30px;
    line-height: 32px;
  }

  .m-head h4 {}

  .m-head p {}

  .m-head__row {
    margin-bottom: 50px;
  }

  .m-razvitie__item {
    width: 33%;
  }

  .m-company__item {
    width: 13%;
  }

  .m-empty-desc-item {
    width: 25%;
  }

  .m-text,
  .m-empty-info-text {
    font-size: 18px;
    line-height: 25px;
    max-width: 600px;
  }

  .m-empty-desc>.m-empty-row {
    font-size: 25px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .m-head p {
    color: #130e0e;
    font-size: 20px;
    line-height: 25px;
    margin-top: 30px;
  }

  .m-razvitie__image-row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .m-razvitie__image-left,
  .m-razvitie__images-right {
    padding-left: 10px;
    padding-right: 10px;
  }

  .m-access__item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .m-access__row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .m-text p span {
    font-size: 18px;
  }

  .m-empty-desc>.m-empty-row h3 {
    margin-bottom: 10px;
  }

  .m-empty-desc-item {
    width: 33.3%;
    margin-bottom: 20px;
  }

  .m-empty-info {
    margin-bottom: 60px;
  }

  .m-empty-desc {
    width: 100%;
  }

  .m-empty-desc>.m-empty-row {
    text-align: center;
  }

  .m-head {
    margin-bottom: 20px;
  }

  .m-head__row {
    margin-bottom: 40px;
  }

  .m-head__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .m-head {
    width: 100%;
    text-align: center;
  }

  .m-empty-info {
    width: 100%;
  }

  .m-empty-info-item {
    width: 25%;
  }

  .m-empty-info-text {
    max-width: 100%;
    text-align: center;
  }

  .m-empty-info {
    border-right: none;
    padding-right: 0;
  }

  .m-empty-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .m-head__image {
    width: 180px;
  }

  .m-text {
    padding-left: 0px;
    max-width: 100%;
    text-align: center;
  }

  .m-company__row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .m-company__item {
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .m-razvitie__image-row {
    flex-direction: column;
  }

  .m-razvitie__image-left,
  .m-razvitie__images-right {
    width: 100%;
  }

  .m-razvitie__item {
    width: 20%;
  }

  .m-razvitie__image-left {
    margin-bottom: 35px;
  }
}

@media (max-width: 680px) {
  .m-recom__item {
    width: 100%;
  }

  .m-recom__images {
    flex: 0 0 100px;
  }

  .m-recom-desc {
    padding: 10px 10px 10px 10px;
  }
}

@media (max-width: 600px) {
  .m-recom__images p {
    padding: 2px 3px;
  }

  .m-access__row {
    flex-direction: column;
  }

  .m-acces__list li:before {
    min-width: 25px;
    height: 25px;
  }

  .m-access__item {
    width: 100%;
  }

  .m-empty-info-item {
    height: 75px;
  }

  .m-empty-info-images {
    margin-left: -10px;
    margin-right: -10px;
  }

  .m-empty-info-item {
    width: 33.3%;
    padding: 0 10px;
  }

  .m-empty-desc-item {
    width: 50%;
  }

  .m-company__item {
    width: 20%;
    margin-bottom: 10px;
  }

  .m-head h2 {
    font-size: 23px;
    line-height: 26px;
  }

  .m-access,
  .m-company,
  .m-empty,
  .m-razvitie,
  .m-recom,
  .questions {
    padding: 35px 0px;
  }

  .m-head h3 {
    font-size: 23px;
    line-height: 26px;
  }

  .m-razvitie__item {
    width: 25%;
  }

  .m-razvitie__body {
    height: 50px;
  }
}

@media (max-width: 475px) {
  .m-company__item {
    width: 25%;
  }
}

/* Фикс блоков с партнетарми */
.voiting-partners-block-title {
  flex-grow: 1;
}

.voiting-wrapp {
  margin-bottom: 140px;
}

.voiting-partners-block {
  margin-bottom: 0;
}

.voiting-flex {
  display: flex;
}

.voiting-flex>.voiting-partners-block {
  width: 50%;
}

.voiting-partners-block-title {
  font-size: 65px;
  line-height: 70px;
}

.voiting-flex>.voiting-partners-block>.voiting-block-image>.voiting-block-item {
  width: 50%;
}

@media (max-width: 1200px) {
  .voiting-partners-block-title {
    font-size: 55px;
    line-height: 65px;
  }
}

@media (max-width: 992px) {
  .voiting-partners-block-title {
    font-size: 45px;
    line-height: 55px;
  }
}

@media (max-width: 768px) {
  .voiting-partners-block-title {
    font-size: 30px;
    line-height: 40px;
  }

  .voiting-flex>.voiting-partners-block>.voiting-block-image>.voiting-block-item {
    width: 90%;
  }
}

@media (max-width: 575px) {
  .voiting-partners-block-title {
    font-size: 18px;
    line-height: 25px;
  }
}

@media (max-width: 992px) {
  .voiting-wrapp {
    margin-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .voiting-wrapp {
    margin-bottom: 70px;
  }
}

@media (max-width: 575px) {

  .voiting-wrapp {
    margin-bottom: 50px;
  }
}


/* .topone + .item:before{
  content: '1' !important;
  background-image: linear-gradient(to right, #ae1446, #e5175a) !important;
}
.topone + .item{
  counter-reset: list !important;
} */

.header__logo a,
.top-secondary__logo,
.header-last__logo a,
.footer__bottom-logo a {
  display: block;
  width: 120px;
}

.header__logo a img,
.top-secondary__logo img,
.header-last__logo a img,
.footer__bottom-logo a img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 575px) {

  .footer__bottom-logo a,
  .header-last__logo a,
  .header__logo a,
  .top-secondary__logo {
    width: 90px;
  }
}

.capabilities__columns-info {
  color: #000;
}


.cards__info-text__subtitle p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer__center-bg {
  height: 300px;
}

.services__info {
  flex-basis: 30%;
}

/*form*/

.pathMark {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

.pathMark.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}

.pathMark.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}

.pathMark.check {
  stroke-dashoffset: -100;
  -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
  animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }

  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }

  100% {
    stroke-dashoffset: 900;
  }
}

/* OLD 
table.iksweb{text-decoration: none;border-collapse:collapse;width:100%;text-align:center;}
table.iksweb th{font-weight:normal;font-size:21px; color:#ef4833;background-color:#d4d4d4;}
table.iksweb td{font-size:21px;color:#354251;}
table.iksweb td,table.iksweb th{white-space:pre-wrap;padding:5px 5px;line-height:15px;vertical-align: border-left: 1px solid;
    border-right: 1px solid;
    border-bottom: 2px dashed #828282; middle; width: 400px;} 
table.iksweb tr:hover{background-color:#f9fafb}
table.iksweb tr:hover td{color:#000000;cursor:default;}
table.iksweb td p {
  line-height: 22px;
  margin-bottom: 0;
}
table.iksweb td p a{
  color: inherit;
}*/

table.iksweb {
  text-decoration: none;
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

table.iksweb th {
  font-weight: normal;
  font-size: 21px;
  color: #ef4833;
  background-color: #d4d4d4;
}

table.iksweb td {
  font-size: 18px;
  color: #354251;
}

table.iksweb td,
table.iksweb th {
  white-space: pre-wrap;
  padding: 15px 10px;
  line-height: 20px;
  vertical-align: middle;
  border: 1px solid #d4d4d4;
  width: 400px;
}

table.iksweb tr:hover {
  background-color: #f9fafb
}

table.iksweb tr:hover td {
  color: #000000;
  cursor: default;
}

table.iksweb td {
  line-height: 22px;
  margin-bottom: 0;
}

table.iksweb td a {
  color: inherit;
}

.mobile-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

/*Стили таблицы для бренд года 2020*/

table.ikswebtwo {
  text-decoration: none;
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

table.ikswebtwo th {
  font-weight: normal;
  font-size: 21px;
  color: #ef4833;
  background-color: #d4d4d4;
}

table.ikswebtwo td {
  font-size: 21px;
  color: #354251;
}

table.ikswebtwo td,
table.ikswebtwo th {
  white-space: pre-wrap;
  padding: 5px 5px;
  line-height: 15px;
  vertical-align: border-left: 1px solid;
  border-right: 1px solid;
  border-bottom: 2px dashed #828282;
  middle;
  width: 400px;
}

table.ikswebtwo tr:hover {
  background-color: #f9fafb
}

table.ikswebtwo tr:hover td {
  color: #000000;
  cursor: default;
}

table.ikswebtwo td p {
  line-height: 22px;
  margin-bottom: 0;
}

.mobile-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}


.service-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: space-between;
}

/*======================*/
.right-content-carts {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}

.content-cart {
  background: linear-gradient(141.63deg, #FEB03B 0%, #FF6231 100%);
  padding: 15px;
  border-radius: 14px;
}

.carts-body {
  flex: 0 1 50%;
  padding: 0 25px;
  margin-bottom: 50px;
}

.cart__top {
  display: flex;
  align-items: center;
  margin-bottom: 41px;
  padding: 0 25px;
}

.cart__img-item {
  width: 148px;
  height: 148px;
  position: relative;
  overflow: hidden;
  padding-bottom: 25%;
  border-radius: 100%;
  border: 2px solid #FFFF;
}

.cart__img-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart__contact {
  margin-left: 25px;
}

.incon__contact {
  display: flex;
  align-items: center;
  margin-bottom: 5px;

}

.contact__link {
  display: flex;
  align-items: center;
  color: #FFFF;
}

.contact__item-text {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 550;
}

.cart__bot {
  color: #000;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #FFFF;
  border-radius: 14px;
}

.cart__logo {
  margin-bottom: 16px;
}

.cart__bot p {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
  color: #555555;
}

.cart__logo {
  width: 170px;
  height: 70px;
  position: relative;
  overflow: hidden;
  padding-top: 25%;

}

.cart__logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .carts-body {
    padding: 0px 15px;
    margin-bottom: 30px;
  }

  .right-content-carts {
    margin: 0;
  }

  .cart__logo {
    padding-top: 0%;
  }

  .cart__top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cart__contact {
    margin-left: 0;
  }

  .cart__img-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 700px) {
  .carts-body {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cart__top {
    padding: 0;
    margin-bottom: 20px;
  }

  .cart__img-item {
    margin-bottom: 10px;
  }

  .cart__bot p {
    font-size: 14px;
    line-height: 150%;
  }
}

/*scticky*/

#sidebarWrap {
  width: 250px;
  float: right;
  position: relative;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
}

#sidebar {
  position: absolute;
}

#sidebar.fixed {
  position: fixed;
  top: 0;
  margin-top: 40px;
}

@media (max-width: 1725px) {
  #sidebarWrap {
    width: 215px;
  }

  .banner {
    width: 200px;
  }
}

@media (max-width: 1637px) {
  #sidebarWrap {
    display: none;
  }
}

@media (min-width: 2400px) {

  .banner {
    width: 350px;
  }

  #sidebarWrap {
    width: 370px;
  }
}

.mobile__banner {
  display: none;
}

@media (max-width: 1637px) {
  .mobile__banner {
    display: block;
  }

  .mobile__img {
    display: block;
    margin: 0 auto;
    margin-top: 50px;
  }
}

@media (max-width: 992px) {
  .mobile__img {
    width: 100%;
  }
}

/*Show - Hidden у формы резюме*/
.work {
  display: none;
  margin-bottom: 40px;
}

.cons {
  display: none;
  margin-bottom: 40px;
}

.hidden {
  display: block;
}

.top-table-items td {
  border-bottom: none !important;
}

.table-color-red {
  width: 100%;
  background: red;
  color: #ffff;
  border: none !important;
}

.table-color-red p {
  text-align: center;
  color: #ffff;
  font-size: 30px;
}

.text-color-red p {
  color: red;
}

/*.iksweb tbody tr:nth-child(2) ~ tr  td:nth-child(1) p{
	font-size: 30px;
    font-weight: 700;
}
.iksweb tbody tr:nth-child(50) td{
    border-bottom: none;
}
.iksweb tbody tr:nth-child(51) td{
	text-align: center;
    background: blue;
    color: #FFFF;
    border: none;

}
.iksweb tbody tr:nth-child(51) ~ tr td p{
	color:blue;
}
.iksweb tbody tr:nth-child(157) td{
	text-align: center;
    background: green;
    color: #FFFF;
    border: none;

}
.iksweb tbody tr:nth-child(156) td{
    border-bottom: none;
}
.iksweb tbody tr:nth-child(157) td p{
    color: #ffff !important;
}
.iksweb tbody tr:nth-child(157) ~ tr td p{
	color:green;
}
*/
/* Ретенги*/
/*.table-agent tr:nth-child(2) td{
	width: 100%;
    background: red;
    color: #ffff;
    border: none !important;
    font-size: 30px;
    font-weight: 700;
}
.table-agent tr:nth-child(2) td p{
    color: #ffff;
    font-size: 30px;
    font-weight: 700;
}
.table-agent tr:nth-child(2) ~ tr td p{
	color:red;
}
.table-agent tr:nth-child(16) td{
	width: 100%;
    background: blue;
    color: #ffff !important;
    border: none !important;
}
.table-agent tr:nth-child(16) td p{
    color: #ffff !important;
    font-size: 30px;
    font-weight: 700;
}
.table-agent tr:nth-child(16)~ tr td p{
    color: blue;
}
.table-agent tr:nth-child(32) td{
	width: 100%;
    background: green;
    border: none !important;
}
.table-agent tr:nth-child(32) td p{
    color: #ffff !important;
    font-size: 30px;
    font-weight: 700;
}
.table-agent tr:nth-child(32) ~ tr td p{
	color:green  !important;
}
.toble-creative tr:nth-child(1) ~ tr td:nth-child(1) p{
	font-size: 30px;
    font-weight: 700;
    color:red;
}
.toble-creative tr:nth-child(1) ~ tr td:nth-child(2) p{
    color: blue;
}
.toble-creative tr:nth-child(1) ~ tr td:nth-child(2) ~ td p{
    color: green;
}*/


/**/
.cards-nfo-text {
  max-width: 100%;

}

.about__us-inner {
  display: block;
}

.about__us-title {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .about__us-title {
    font-size: 40px;
  }
}


.komitet .expert__nav {
  flex-wrap: wrap;
}

.komitet .expert__nav-link {
  font-size: 16px;
}

.komitet .expert__nav-link:not(:first-child) {
  margin-left: 5px;
}


@media (max-width: 550px) {
  .komitet .expert__nav-link:not(:first-child) {
    margin-left: 5px;
  }

  .komitet .expert__nav-link {
    width: 150px;
    height: 150px;
    font-size: 13px;
  }
}

.flex__komitet {
  flex-wrap: wrap;
  display: flex;
}

.link__komitet {
  display: flex;
  margin: 0 0px 10px 10px;
  transition: 0.3s;
  flex: 1 1 auto;
  text-align: center;
  border: 2px solid #ef4833;
  transition: 0.3s;
  color: black;
  justify-content: center;
}


.link__komitet:hover {
  background-color: #ef4833;
  color: white;
}



.sub__flex__komitet {
  min-height: 160px;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
}

.sub__flex__komitet .img-content {
  border: 1px solid black;
  padding: 28px;
  flex-shrink: 0;
  height: 140px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img__komitet {
  width: 100%;
  transition: 0.3s;
  height: 100%;
  object-fit: contain;
}

.link__komitet:hover .img__komitet {
  filter: invert(1);
}

.link__komitet:hover .img-content {
  border-color: white;
}

.block-komitet .flex__komitet {
  margin-left: -10px;
}


.subtitle__komitet {
  width: 100%;
  font-family: 'HelveticaNeueCyr-Heavy';
  font-size: 24px;
  line-height: 50px;
  padding: 20px 20px;
}

@media (max-width: 550px) {
  .subtitle__komitet {
    font-size: 16px;
    padding: 25px 25px;
  }

  .img__komitet {
    /*width: 70px;*/
  }

  .subtitle__komitet {
    line-height: 30px;
  }
}

.about_expert {
  flex-basis: 24.333%;
}

@media (max-width: 650px) {
  .about_expert {
    flex-basis: 100%;
  }
}

.pravlenie__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pravlenie__flex .about__komitet {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 83px;
  border: 2px solid #ef4833;
  padding: 10px 25px;
  transition: 0.3s;
}

.about__komitet a {
  color: black;
}

.about__komitet:hover {
  background-color: #ef4833;
}

.about__komitet:hover a {
  color: white;
}


.arrow {
  font-size: 25px;
  font-weight: bold;
  margin-left: 10px;
}


@media (max-width: 768px) {
  .pravlenie__flex .about__komitet {
    margin-bottom: 40px;
  }
}

.about__us-inner p {
  color: black;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 25px;
}

ol {
  color: black;
  font-size: 18px;
  line-height: 25px;
}

ol li {
  margin-bottom: 15px;
}

.event__banner-items {
  flex-wrap: wrap;
}

/* table new 07.07.2022 */
.star-accent::after {
  content: "";
  display: flex;
  background-image: url('data:image/svg+xml,         <svg viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">             <path d="M13.0128 4.83435L10.6159 9.69158L5.25342 10.4711L9.13311 14.2543L8.2165 19.5939L13.0128 17.0726L17.8091 19.5914L16.8925 14.2517L20.7722 10.4711L15.4097 9.69158L13.0128 4.83435Z" fill="%23EF4833" fill-opacity="0.15"/>             <path d="M23.0699 8.95782L16.6232 8.02091L13.7413 2.17853C13.6626 2.01856 13.5331 1.88907 13.3732 1.81036C12.972 1.61231 12.4845 1.77735 12.2839 2.17853L9.40209 8.02091L2.95541 8.95782C2.77768 8.98321 2.61518 9.067 2.49076 9.19396C2.34035 9.34855 2.25747 9.55653 2.26033 9.77221C2.26318 9.98788 2.35154 10.1936 2.506 10.3442L7.17025 14.8916L6.0683 21.3129C6.04246 21.4623 6.05899 21.6159 6.11601 21.7564C6.17304 21.8968 6.26828 22.0185 6.39093 22.1076C6.51359 22.1966 6.65875 22.2496 6.80996 22.2604C6.96117 22.2711 7.11237 22.2393 7.24642 22.1686L13.0126 19.1369L18.7788 22.1686C18.9363 22.2524 19.1191 22.2803 19.2943 22.2498C19.7361 22.1736 20.0331 21.7547 19.957 21.3129L18.855 14.8916L23.5193 10.3442C23.6462 10.2197 23.73 10.0572 23.7554 9.8795C23.824 9.43517 23.5142 9.02384 23.0699 8.95782ZM16.8923 14.2518L17.8089 19.5914L13.0126 17.0727L8.21635 19.594L9.13295 14.2543L5.25326 10.4711L10.6158 9.69161L13.0126 4.83438L15.4095 9.69161L20.772 10.4711L16.8923 14.2518Z" fill="%23EF4833"/>         </svg>');
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  transition: 0.3s all ease;
}

.star-second::after {
  content: "";
  display: flex;
  background-image: url('data:image/svg+xml,         <svg viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">             <path d="M13.0128 4.83437L10.6159 9.6916L5.25342 10.4711L9.13311 14.2543L8.2165 19.5939L13.0128 17.0727L17.8091 19.5914L16.8925 14.2518L20.7722 10.4711L15.4097 9.6916L13.0128 4.83437Z" fill="%236433EF" fill-opacity="0.15"/>             <path d="M23.0699 8.95781L16.6232 8.0209L13.7413 2.17852C13.6626 2.01856 13.5331 1.88906 13.3732 1.81035C12.972 1.61231 12.4845 1.77735 12.2839 2.17852L9.40209 8.0209L2.95541 8.95781C2.77768 8.98321 2.61518 9.06699 2.49076 9.19395C2.34035 9.34854 2.25747 9.55653 2.26033 9.7722C2.26318 9.98787 2.35154 10.1936 2.506 10.3441L7.17025 14.8916L6.0683 21.3129C6.04246 21.4623 6.05899 21.6159 6.11601 21.7563C6.17304 21.8968 6.26828 22.0185 6.39093 22.1076C6.51359 22.1966 6.65875 22.2496 6.80996 22.2604C6.96117 22.2711 7.11237 22.2393 7.24642 22.1686L13.0126 19.1369L18.7788 22.1686C18.9363 22.2523 19.1191 22.2803 19.2943 22.2498C19.7361 22.1736 20.0331 21.7547 19.957 21.3129L18.855 14.8916L23.5193 10.3441C23.6462 10.2197 23.73 10.0572 23.7554 9.87949C23.824 9.43516 23.5142 9.02383 23.0699 8.95781V8.95781ZM16.8923 14.2518L17.8089 19.5914L13.0126 17.0727L8.21635 19.5939L9.13295 14.2543L5.25326 10.4711L10.6158 9.6916L13.0126 4.83438L15.4095 9.6916L20.772 10.4711L16.8923 14.2518V14.2518Z" fill="%236433EF"/>         </svg>');
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  transition: 0.3s all ease;
}

.arrow-accent::after {
  content: "";
  display: flex;
  background-image: url('data:image/svg+xml,         <svg viewBox="0 0 12 22" fill="none" xmlns="http://www.w3.org/2000/svg">             <path d="M-1.31134e-07 18.5L7.5 11L-7.86805e-07 3.5L1.5 0.500002L12 11L1.5 21.5L-1.31134e-07 18.5Z" fill="%23EF4833"/>         </svg>');
  background-repeat: no-repeat;
  width: 12px;
  height: 22px;
  transition: 0.3s all ease;
}

.g-rating-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .g-rating-wrapper {
    padding: 0 20px;
  }
}

.bg-accent {
  background-color: #ef4833;
}

.g-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .g-info {
    flex-direction: column;
  }
}

.g-info__logo {
  margin-right: 20px;
  position: relative;
  width: 100%;
  max-width: 440px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.g-info__logo::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 55%;
}

.g-info__logo img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .g-info__logo {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.g-info__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 466px;
}

.g-info__text p {
  font-family: "HelveticaNeueCyr-Light";
  font-weight: 300;
  line-height: 156%;
  font-size: 16px;
  color: #333333;
}

.g-info__btn {}

.g-btn {
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  color: #ef4833;
  font-size: 16px;
  letter-spacing: 0.03em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 90px;
  border: 1px solid #ef4833;
  border-radius: 10px;
  transition: 0.3s all ease;
}

.g-btn:hover {
  background: #ef4833;
  color: #fff;
}

.g-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 960px;
}

.g-rating__title {
  margin-bottom: 30px;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  color: #ef4833;
  font-size: 32px;
  letter-spacing: 0.03em;
}

.g-rating__table {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  border: 1px solid #ef4833;
}

.g-rating__row {
  display: flex;
  flex-direction: column;
}

.g-rating__row.active {
  border-color: transparent !important;
}

.g-rating__row:not(:last-child) {
  border-bottom: 1px solid #ef4833;
}

.g-rating__row:first-child .g-rating__row-content {
  padding: 12px 40px 12px 18px;
}

.g-rating__row:first-child .g-rating__row-content>*:nth-child(1) {
  /*background: #fff;*/
}

@media screen and (max-width: 979px) {
  .g-rating__row:first-child .g-rating__row-content>*:nth-child(1) {
    display: none;
  }
}

@media screen and (max-width: 979px) {
  .g-rating__row:first-child .g-rating__row-content {
    grid-template-columns: 1fr;
    padding: 10px 18px 10px 18px;
  }
}

.g-rating__row-content {
  display: grid;
  grid-template-columns: 35px 1fr 12px;
  grid-gap: 30px;
  align-items: center;
  width: 100%;
  padding: 10px 40px 10px 18px;

}

@media screen and (max-width: 979px) {
  .g-rating__row-content {
    display: flex;
    flex-direction: column;
    grid-gap: 0;
    padding: 10px 18px 10px 18px;
  }

  .g-rating__row-content>*:nth-child(1) {
    align-self: start;
    margin-bottom: 10px;
  }
}

.g-rating__btn.active:after {
  transform: rotate(90deg);
}

.g-rating__row-content>*:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #ef4833;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
}

.g-rating__name:first-child {
  display: flex;
  justify-self: center;
}

@media screen and (max-width: 979px) {
  .g-rating__name:first-child {
    justify-self: flex-start;
  }
}

.g-rating__name * {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .g-rating__name * {
    font-family: "HelveticaNeueCyr-Medium";
    font-weight: 500;
    font-size: 14px;
  }
}

.g-rating__row-inner {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.5fr;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .g-rating__row-inner {
    align-items: flex-end;
  }
}

@media screen and (max-width: 600px) {
  .g-rating__row-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .g-rating__row-inner {
    grid-gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-rating__row-name {
  display: flex;
  align-items: center;


}

@media screen and (max-width: 768px) {
  .g-rating__row-name {
    flex-direction: column;
    align-items: flex-start;
  }
}

.g-rating__row-name>*:last-child {
  font-size: 20px;
  letter-spacing: 0.03em;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
}

@media screen and (max-width: 480px) {
  .g-rating__row-name>*:last-child {
    font-size: 16px;
  }
}

.g-rating__row-logo {
  position: relative;
  width: 80px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-right: 30px;
  overflow: hidden;
  border-radius: 10px;
}

.g-rating__row-logo::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.g-rating__row-logo img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 979px) {
  .g-rating__row-logo {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}

@media screen and (max-width: 768px) {
  .g-rating__row-logo {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.g-rating__row-industry>* {
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 400;
  line-height: 125%;
  font-size: 16px;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 480px) {
  .g-rating__row-industry>* {
    font-size: 14px;
  }
}

.g-rating__row-num {
  display: flex;
  align-items: center;

  cursor: pointer;
}

.g-rating__row-num .star-second {
  margin-right: 8px;
}

.g-rating__row-num>*:last-child {
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  font-size: 20px;
  color: #6433ef;
  letter-spacing: 0.03em;
}

.g-rating__btn {
  background: transparent;
}

@media screen and (max-width: 480px) {
  .g-rating__row-num>*:last-child {
    font-size: 16px;
  }
}

@media screen and (max-width: 979px) {
  .g-rating__btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding: 6px 0;
    border-radius: 4px;
    background: #ef4833;
  }

  .g-rating__btn::after {
    transform: rotate(90deg);
    background-image: url('data:image/svg+xml,                 <svg viewBox="0 0 12 22" fill="none" xmlns="http://www.w3.org/2000/svg">                     <path d="M-1.31134e-07 18.5L7.5 11L-7.86805e-07 3.5L1.5 0.500002L12 11L1.5 21.5L-1.31134e-07 18.5Z" fill="white"/>                 </svg>');
  }
}

.g-rating__drop {
  display: flex;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s all ease;
  box-shadow: 0 18px 18px rgba(0, 0, 0, 0.15);
}

.g-rating__drop-inner {
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #ef4833;
}

.g-rating__drop-info {
  display: flex;
  padding: 30px 40px 30px 18px;
}

@media screen and (max-width: 600px) {
  .g-rating__drop-info {
    flex-direction: column;
  }
}

.g-rating__drop-logo {
  flex-shrink: 0;
  position: relative;
  width: 145px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-right: 30px;
  overflow: hidden;
  border-radius: 10px;
}

.g-rating__drop-logo::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.g-rating__drop-logo img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 600px) {
  .g-rating__drop-logo {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.g-rating__drop-text {
  display: flex;
  flex-direction: column;
}

.g-rating__drop-text>*:first-child {
  margin-bottom: 10px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #333333;
}

@media screen and (max-width: 480px) {
  .g-rating__drop-text>*:first-child {
    font-size: 16px;
  }
}

.g-rating__drop-text p {
  font-family: "HelveticaNeueCyr-Light";
  font-weight: 300;
  line-height: 125%;
  font-size: 16px;
  color: #333333;
  letter-spacing: 0.03em;

  margin: 0;
}

@media screen and (max-width: 480px) {
  .g-rating__drop-text p {
    font-size: 14px;
  }
}

.g-rating__drop-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

@media screen and (max-width: 600px) {
  .g-rating__drop-table {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .g-rating__drop-table {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-rating__drop-item {
  display: flex;
  flex-direction: column;
}

.g-rating__drop-item:nth-child(3n+3) * {
  border: none;
}

@media screen and (max-width: 600px) {
  .g-rating__drop-item .g-rating__drop-item-name {
    border-right: 1px solid #fff;
  }

  .g-rating__drop-item .g-rating__drop-num {
    border-right: 1px solid #ef4833;
  }

  .g-rating__drop-item:nth-child(even) * {
    border: none;
  }
}

.g-rating__drop-item-name {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px;
  background: #ef4833;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  line-height: 120%;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.03em;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 480px) {
  .g-rating__drop-item-name {
    border: none !important;
    font-size: 14px;
  }
}

.g-rating__drop-num {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid #ef4833;
}

@media screen and (max-width: 480px) {
  .g-rating__drop-num {
    border: none !important;
  }
}

.g-rating__drop-num>*:last-child {
  margin-left: 5px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  color: #ef4833;
  font-size: 20px;
  letter-spacing: 0.03em;
}

/* table new 07.07.2022 end */

/* text */
.g-rating-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 960px;
}

@media screen and (max-width: 1024px) {
  .g-rating-text {
    padding: 0 20px;
  }
}

.g-rating-text h1,
.g-rating-text h2,
.g-rating-text h3,
.g-rating-text h4,
.g-rating-text h5,
.g-rating-text h6 {
  margin-bottom: 50px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #333333;
}

.g-rating-text p {
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 400;
  font-size: 18px;
  line-height: 139%;
  letter-spacing: 0.03em;
  color: #333333;
}

.g-rating-text p:not(:last-child) {
  margin-bottom: 50px;
}

.g-text-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 100px;
  border-radius: 30px 30px 0px 0px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .g-text-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .g-text-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-text-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.g-text-card:first-child {
  border-left: 1px solid #ef4833;
}

.g-text-card:last-child {
  border-right: 1px solid #ef4833;
}

@media screen and (max-width: 768px) {
  .g-text-card {
    border-left: 1px solid #ef4833;
  }
}

.g-text-card:not(:last-child) .g-text-card__img {
  border-right: 1px solid #fff;
}

.g-text-card:not(:last-child) .g-text-card__info {
  border-right: 1px solid #ef4833;
}

.g-text-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 25px 0;
  background: #ef4833;
}

.g-text-card__info {
  display: flex;
  height: 100%;
  padding: 30px 24px;
  border-bottom: 1px solid #ef4833;
}

.g-text-card__info p {
  margin: 0;
  text-align: center;
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #333333;
}

.g-line {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 100px;
}

.g-line::after {
  content: "";
  display: flex;
  margin-top: 100px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ef4833, transparent);
}

.g-goup-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 130px;
  grid-row-gap: 50px;
}

@media screen and (max-width: 768px) {
  .g-goup-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-goup-card {
  display: flex;
  flex-direction: column;
}

.g-goup-card>*:first-child {
  margin-bottom: 20px;
}

.g-goup-card>*:first-child::after {
  position: relative;
  z-index: -1;
  content: attr(data-letter);
  margin-left: -40px;
  color: rgba(239, 72, 51, 0.5);
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 96px;
}

.g-goup-card p {
  font-size: 16px;
  margin: 0;
}

.g-list-line {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 470px;
}

.g-list-line li {
  display: flex;
  width: 100%;
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.03em;
  border: 1px solid #ef4833;
  border-radius: 8px;
  overflow: hidden;
}

.g-list-line li:not(:last-child) {
  margin-bottom: 10px;
}

.g-list-line li>*:first-child {
  flex-grow: 1;
  padding: 12px 20px;
  color: #fff;
  background: #ef4833;
}

.g-list-line li>*:last-child {
  padding: 12px 14px;
  color: #333333;
  background: #fff;
}

.g-ball-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

@media screen and (max-width: 768px) {
  .g-ball-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-ball-card {
  display: flex;
  flex-direction: column;
  border-radius: 30px 30px 0px 0px;
  overflow: hidden;
  background: #fff;
}

.g-ball-card p {
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 400;
  letter-spacing: 0.03em;
  font-size: 18px;
  margin: 0;
}

.g-ball-card__name {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
  background: #ef4833;
}

.g-ball-card__name p {
  color: #fff;
}

.g-ball-card__info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.g-ball-card__info p {
  color: #333333;
}

/* text end 07.07.2022 */

.g-intro {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.g-intro__decor {
  position: absolute;
  top: 0;
  right: 100px;
  display: flex;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: translateY(-100%);
  transition: 1.2s all ease;
}

@media screen and (max-width: 1600px) {
  .g-intro__decor {
    right: 10px;
  }
}

@media screen and (max-width: 600px) {
  .g-intro__decor {
    display: none;
  }
}

.g-intro__decor.active {
  transform: translate(0);
}

.g-intro__decor:not(:last-child) {
  top: auto;
  bottom: 0;
  left: 100px;
  transform: rotate(180deg) translateY(-100%);
}

@media screen and (max-width: 1600px) {
  .g-intro__decor:not(:last-child) {
    left: 10px;
  }
}

.g-intro__decor:not(:last-child).active {
  transform: rotate(180deg) translate(0);
}

.g-intro__decor p {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  color: transparent;
  font-size: 96px;
  letter-spacing: 0.03em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}

.g-intro>picture img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.g-intro__inner {
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding: 280px 10px 100px 10px;
}

@media screen and (max-width: 1366px) {
  .g-intro__inner {
    flex-direction: column;
  }
}

@media screen and (max-width: 979px) {
  .g-intro__inner {
    padding: 180px 10px 100px 10px;
  }
}

.g-intro__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 750px;
}

@media screen and (max-width: 1366px) {
  .g-intro__info {
    max-width: 100%;
    flex-direction: row;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .g-intro__info {
    flex-direction: column;
    align-items: center;
  }
}

.g-intro__title {
  margin-bottom: 40px;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  line-height: 100%;
  font-size: 70px;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .g-intro__title {
    text-align: center;
    font-size: 50px;
  }
}

@media screen and (max-width: 480px) {
  .g-intro__title {
    font-size: 34px;
  }
}

.g-intro__prev {
  position: relative;
  width: 100%;
  max-width: 526px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.g-intro__prev::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 54%;
}

.g-intro__prev img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.g-intro__prev img {
  border-radius: 30px;
}

.g-intro__prev-btn {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: transparent;
  filter: drop-shadow(0 0 10px #000);
}

.g-intro__round {
  position: absolute;
  bottom: -80px;
  left: -80px;
  display: flex;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  pointer-events: none;
  -webkit-animation: roundTransform 5s infinite linear;
  animation: roundTransform 5s infinite linear;
}

@media screen and (max-width: 1366px) {
  .g-intro__round {
    left: auto;
    bottom: auto;
    top: 10%;
    right: -50px;
  }

  .g-intro__round svg {
    width: 120px;
    height: 120px;
  }
}

.g-intro__cards {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 526px;
}

@media screen and (max-width: 1366px) {
  .g-intro__cards {
    max-width: 100%;
    flex-direction: row;
  }
}

@media screen and (max-width: 1024px) {
  .g-intro__cards {
    flex-direction: column;
    align-items: center;
  }
}

.g-intro__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-shadow: 8px 8px 20px #e21e3c;
  border: 5px solid #e21e3c;
  border-radius: 30px;
  transition: 0.3s all ease;
}

.g-intro__card:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (max-width: 1366px) {
  .g-intro__card:not(:last-child) {
    margin-bottom: 0;
    margin-right: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .g-intro__card:not(:last-child) {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .g-intro__card {
    max-width: 550px;
  }
}

.g-intro__card:hover {
  background: #e21e3c;
}

.g-intro__card>p {
  width: 100%;
  max-width: 476px;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 121%;
  font-size: 28px;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .g-intro__card>p {
    font-size: 20px;
  }
}

.g-intro__card-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.g-intro__card-info>p {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-size: 64px;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .g-intro__card-info>p {
    font-size: 40px;
  }
}

.g-intro__card-info>div {
  display: flex;
}

.g-intro__card-info>div p {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}

.g-intro__card-info>div p:first-child {
  line-height: 100%;
  font-size: 64px;
}

@media screen and (max-width: 480px) {
  .g-intro__card-info>div p:first-child {
    font-size: 40px;
  }
}

.g-intro__card-info>div p:last-child {
  line-height: 100%;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .g-intro__card-info>div p:last-child {
    font-size: 14px;
  }
}

@-webkit-keyframes roundTransform {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes roundTransform {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.g-rating__drop {
  transition: unset;
}

.g-rating__row-logo {
  flex-shrink: 0;
}




.g-assoc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 960px;

}

@media screen and (max-width: 1024px) {
  .g-assoc {
    padding: 0 20px;
  }
}

.g-assoc__info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .g-assoc__info {
    flex-direction: column;
  }
}

.g-assoc__info-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 580px;
}

@media screen and (max-width: 768px) {
  .g-assoc__info-text {
    margin-bottom: 20px;
  }
}

.g-assoc__info-text>h1,
.g-assoc__info-text>h2,
.g-assoc__info-text>h3,
.g-assoc__info-text>h4,
.g-assoc__info-text>h5,
.g-assoc__info-text>h6 {
  margin-bottom: 20px;
  font-family: "HelveticaNeueCyr-Bold";
  font-size: 40px;
  line-height: 120%;
  color: #000;
}

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

  .g-assoc__info-text>h1,
  .g-assoc__info-text>h2,
  .g-assoc__info-text>h3,
  .g-assoc__info-text>h4,
  .g-assoc__info-text>h5,
  .g-assoc__info-text>h6 {
    font-size: calc(32px + 8 * ((100vw - 320px) / 980));
  }
}

.g-assoc__info-text p {
  font-family: "HelveticaNeueCyr-Light";
  font-weight: 300;
  line-height: 156%;
  font-size: 16px;
  color: #333333;
}

.g-assoc__info-logo {
  position: relative;
  width: 100%;
  max-width: 250px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.g-assoc__info-logo::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 34%;
}

.g-assoc__info-logo img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.g-assoc__cards-logo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .g-assoc__cards-logo {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 580px) {
  .g-assoc__cards-logo {
    grid-template-columns: repeat(1, 1fr);

  }
}

.g-assoc__cards-col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 24px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.g-assoc__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}

.g-assoc__card.active {
  background: #ef4833;
}

.g-assoc__card.active .g-assoc__card-btn {
  background: #ef4833;
  color: #fff;
  box-shadow: 8px 8px 25px rgba(239, 72, 51, 0.45);
}

.g-assoc__card.active .g-assoc__card-btn svg {
  transform: rotate(90deg);
}

.g-assoc__card.active .g-assoc__card-btn path {
  fill: #fff;
}

.g-assoc__card.active .g-assoc__card-logo-btn {
  background: lightgrey;
}

.g-assoc__card-btn {
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  height: 150px;
  padding: 0 30px;
  border: 1px solid #ef4833;
  border-radius: 20px;
  background: #fff;
  line-height: 120%;
  color: #ef4833;
  font-size: 18px;
  text-align: left;
  font-family: "HelveticaNeueCyr-Bold";
  letter-spacing: 0.03em;
  transition: 0.3s all ease;
}

.g-assoc__card-btn svg {
  margin-left: 10px;
  flex-shrink: 0;
  transition: 0.3s all ease;
}

.g-assoc__card-btn path {
  transition: 0.3s all ease;
}

.g-assoc__card-btn:hover {
  background: #ef4833;
  color: #fff;
  box-shadow: 8px 8px 25px rgba(239, 72, 51, 0.45);
}

.g-assoc__card-btn:hover path {
  fill: #fff;
}

.g-assoc__card-logo-btn {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
  transition: 0.3s all ease;
}

@media screen and (max-width: 580px) {
  .g-assoc__card-logo-btn {
    width: 100%;
    height: 160px;
    margin: 0 auto;
  }
}

.g-assoc__card-logo-btn:hover {
  background: lightgrey;
}

.g-assoc__card-logo-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.g-assoc__card-drop {
  display: block;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-30px);
  transition: 0.3s all ease;
}

.g-assoc__card-drop-inner {
  display: flex;
  flex-direction: column;
  padding: 40px 30px 10px 30px;
  background-color: #ef4833;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.g-assoc__card-drop-inner>p {
  font-family: "HelveticaNeueCyr-Light";
  color: #fff;
  line-height: 139%;
  font-size: 18px;
  letter-spacing: 0.03em;
}

.g-assoc__card-drop-inner>p:not(:last-child) {
  margin-bottom: 10px;
}

.g-assoc__card-drop-inner>a {
  margin-top: 50px;
  font-family: "HelveticaNeueCyr-Bold";
  font-size: 20px;

  letter-spacing: 0.03em;
  color: white;
  text-decoration: underline;
}

.g-assoc__card-drop-inner>a:hover {
  text-decoration: none;
}

.g-assoc__card-drop-inner>ul li:not(:last-child) {
  margin-bottom: 10px;
}

.g-assoc__card-drop-inner>ul a {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  line-height: 170%;
  font-weight: 400;
  color: white;
  font-family: "HelveticaNeueCyr-Roman";
  word-break: break-all;
}

.g-assoc__card-drop-inner>ul a svg {
  width: 30px;
  margin-right: 10px;
  margin-top: 6px;
}

.g-assoc__card-drop-inner>ul a:hover {
  text-decoration: underline;
}

.g-assoc__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  margin-top: 100px;
  padding: 20px 30px;
  border: 1px solid #ef4833;
  border-radius: 10px;
  color: #000;
  font-size: 16px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  letter-spacing: 0.03em;
  background: white;
  transition: 0.3s all ease;
}

@media screen and (max-width: 350px) {
  .g-assoc__btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

.g-assoc__btn svg {
  margin-left: auto;
}

.g-assoc__btn path {
  transition: 0.3s all ease;
}

.g-assoc__btn:hover {
  background: #ef4833;
  color: #fff;
}

.g-assoc__btn:hover path {
  fill: #fff;
}

.g-assoc__form-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-assoc__form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 24px;
  width: 100%;
}

.g-assoc .select-cly select {
  display: none;
  width: 0;
  height: 0;
  visibility: hidden;
}

.g-assoc .select-cly .g-assoc__input {
  cursor: pointer;
}

.g-assoc__form .g-assoc__btn {
  margin: 0;
}

.g-assoc__field-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-assoc__field-wrap>svg {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.g-assoc__field-list-wrap {
  z-index: 10;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  display: flex;
  width: 100%;
  max-height: 200px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ef4833;
  border-radius: 10px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease;
}

.g-assoc__field-list-wrap.active {
  opacity: 1;
  pointer-events: painted;
}

.g-assoc__field-list-wrap ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: scroll;
  scrollbar-color: #ef4833 transparent;
  scrollbar-width: thin;
  padding-right: 10px;
}

.g-assoc__field-list-wrap ul::-webkit-scrollbar {
  width: 8px;
}

.g-assoc__field-list-wrap ul::-webkit-scrollbar-track {
  background-color: transparent;
}

.g-assoc__field-list-wrap ul::-webkit-scrollbar-thumb {
  background: #ef4833;
  border-radius: 1rem;
}

.g-assoc__field-list-wrap ul li {
  display: flex;
  width: 100%;
}

.g-assoc__field-list-wrap ul li:not(:last-child) {
  margin-bottom: 2px;
}

.g-assoc__field-list-wrap ul li {
  display: flex;
  width: 100%;
  padding: 6px 10px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s all ease;
}

.g-assoc__field-list-wrap ul li:hover {
  color: #fff;
  background: #ef4833;
}

.g-assoc__field-list-wrap ul li.active {
  background: #ef4833;
  color: #fff;
}

.g-assoc__label {
  margin-bottom: 10px;
  font-family: "HelveticaNeueCyr-Medium";
  font-size: 16px;
  color: #000;
}

.g-assoc__input {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  outline: none;
  border: 1px solid #ef4833;
  border-radius: 10px;
  font-family: "HelveticaNeueCyr-Medium";
  font-size: 16px;
  color: #000;
}

.g-assoc__textarea {
  width: 100%;
  padding: 10px 20px;
  outline: none;
  border: 1px solid #ef4833;
  border-radius: 10px;
  resize: none;
  font-family: "HelveticaNeueCyr-Medium";
  font-size: 16px;
  color: #000;
}

.g-assoc__textarea,
.g-assoc__input {
  transition: 0.3s all ease;
}

.g-assoc__textarea:focus,
.g-assoc__input:focus {
  box-shadow: 0 0 0 1px #ef4833 inset;
}

.g-assoc__form-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .g-assoc__form-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-assoc__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  grid-gap: 10px;
}
@media screen and (max-width: 850px) {
  .g-assoc__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .g-assoc__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.g-assoc__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.g-assoc__checkbox p {
  font-family: "HelveticaNeueCyr-Medium";
  font-size: 16px;
  margin: 0 !important;
  color: #000;
}
.g-assoc__checkbox-label {
  display: flex;
  flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
}
.g-assoc__checkbox-input {
  width: 0;
  height: 0;
  opacity: 0;
}
.g-assoc__checkbox-input:checked + .g-assoc__checkbox-content {
  background: #ef4833;
  border-color: #ef4833;
}
.g-assoc__checkbox-input:checked + .g-assoc__checkbox-content svg {
  opacity: 1;
}
.g-assoc__checkbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #ef4833;
  border-radius: 0.313rem;
  transition: 0.3s all ease;
}
.g-assoc__checkbox-content svg {
  transition: 0.3s all ease;
  opacity: 0;
}

.g-assoc__download {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border: 1px solid #ef4833;
  border-radius: 10px;
}

.g-assoc__download input {
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}

.g-assoc__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  width: 100%;
}

@media screen and (max-width: 979px) {
  .g-assoc__cards {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 14px;
  }
}

@media screen and (max-width: 600px) {
  .g-assoc__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 420px) {
  .g-assoc__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-assoc__card-desc {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  border-radius: 5px;
  border: 1px solid #ef4833;
}

.g-assoc__card-desc h1,
.g-assoc__card-desc h2,
.g-assoc__card-desc h3,
.g-assoc__card-desc h4,
.g-assoc__card-desc h5,
.g-assoc__card-desc h6 {
  color: #000;
  line-height: 120%;
  font-family: "HelveticaNeueCyr-Bold";
}

.g-assoc__card-desc:hover .g-assoc__card-link {
  text-decoration: none;
}

.g-assoc__card-desc:hover .g-assoc__card-link svg {
  transform: translateX(-20px);
}

.g-assoc__card-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.g-assoc__card-row:last-child {
  margin-top: auto;
}

.g-assoc__card-row:not(:last-child) {
  margin-bottom: 25px;
}

.g-assoc__card-icon {
  display: flex;
  width: 80px;
  height: 80px;
  padding: 16px;
  border: 1px solid #ef4833;
  border-radius: 5px;
  overflow: hidden;
}

.g-assoc__card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.g-assoc__card-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #ef4833;
  border-radius: 5px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #ef4833;
}

.g-assoc__card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 400;
  color: #000;
  text-decoration: underline;
}

.g-assoc__card-link svg {
  transition: 0.3s all ease;
}

/*new style*/

.g-assoc__download {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.title-candidates {
  font-family: "HelveticaNeueCyr-Bold";
  text-align: center;
  font-size: 40px;
  line-height: 120%;
  color: #000;
  margin-bottom: 20px;
}

.content-head a {
  color: #ef4833;
  font-size: 22px;
  display: block;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 1300px) {
  .title-candidates {
    font-size: 36px;
  }
}

.header.header-secondary {
  margin-top: 0;
}

.services__info-nav {
  font-size: 2.2vh;
}

.g-assoc__card-desc .new-title {
  border: 2px solid blue;
  padding: 10px 5px;
  text-align: center;
  justify-content: center;
  font-size: 22px;
  min-height: 83px;
  align-items: center;
}

.g-assoc__card-desc .new-title h3 {
  color: blue;
  text-transform: uppercase;
}

/*expert associacion page*/
.expert-inner__title {
  font-size: 39px;
  line-height: 52px;
}

@media (max-width: 575px) {
  .expert-inner__title {
    font-size: 30px;
    line-height: 35px;
  }
}

.cards__info-text__subtitle img {
  max-width: 100%;
  height: 100%;
}

.g-assoc__info-logo img {
  height: auto;
}

.g-assoc__info-logo .reglament__associacion {
  display: block;
  margin-top: 60px;
  padding: 15px 10px;
  border: 2px solid #ef4833;
  color: black;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  transition: background ease .3s, color ease .3s;
}

.g-assoc__info-logo .reglament__associacion:hover {
  background-color: #ef4833;
  color: #fff;
}


/*new main block*/

.g-intro-new {
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding: 280px 10px 100px 10px;
  align-items: center;
}

@media screen and (max-width: 979px) {
  .g-intro-new {
    padding: 150px 10px 100px 10px;
  }
}

@media screen and (max-width: 768px) {
  .g-intro-new {
    flex-direction: column;
    align-items: center;
    padding: 130px 10px 100px 10px;
  }
}

.g-intro-new__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 750px;
  margin-right: 20px;
  gap: 14px 0;
}

@media screen and (max-width: 768px) {
  .g-intro-new__info {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .g-intro-new__info {
    margin-bottom: 10px;
  }
}

.g-intro-new__info>h1,
.g-intro-new__info>h2,
.g-intro-new__info>h3,
.g-intro-new__info>h4,
.g-intro-new__info>h5,
.g-intro-new__info>h6 {
  margin-bottom: 40px;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  line-height: 100%;
  font-size: 70px;
  color: #fff;
}

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

  .g-intro-new__info>h1,
  .g-intro-new__info>h2,
  .g-intro-new__info>h3,
  .g-intro-new__info>h4,
  .g-intro-new__info>h5,
  .g-intro-new__info>h6 {
    font-size: calc(20px + 50 * ((100vw - 320px) / 980));
  }
}

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

  .g-intro-new__info>h1,
  .g-intro-new__info>h2,
  .g-intro-new__info>h3,
  .g-intro-new__info>h4,
  .g-intro-new__info>h5,
  .g-intro-new__info>h6 {
    margin-bottom: 20px;
  }
}

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

  .g-intro-new__info>h1,
  .g-intro-new__info>h2,
  .g-intro-new__info>h3,
  .g-intro-new__info>h4,
  .g-intro-new__info>h5,
  .g-intro-new__info>h6 {
    margin-bottom: 10px;
  }
}

.g-intro-new__link-main {
  margin-top: auto;
  position: relative;
  width: 100%;
  max-width: 530px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.g-intro-new__link-main::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 53%;
}

.g-intro-new__link-main img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .g-intro-new__link-main {
    position: relative;
    width: 100%;
    max-width: 530px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }

  .g-intro-new__link-main::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 45%;
  }

  .g-intro-new__link-main img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.g-intro-new__cards {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 526px;
}

@media screen and (max-width: 600px) {
  .g-intro-new__cards {
    align-items: center;
  }
}

.g-intro-new__link-card {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.g-intro-new__link-card:not(:last-child) {
  margin-bottom: 14px;
}

@media screen and (max-width: 600px) {
  .g-intro-new__link-card:not(:last-child) {
    margin-bottom: 10px;
  }
}

.g-intro-new__link-card::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 30.5%;
}

.g-intro-new__link-card img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .g-intro-new__link-card {
    position: relative;
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }

  .g-intro-new__link-card::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 28.5%;
  }

  .g-intro-new__link-card img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 600px) {
  .g-intro-new__link-card {
    position: relative;
    width: 90%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }

  .g-intro-new__link-card::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 23.5%;
  }

  .g-intro-new__link-card img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}



/* Consulting */

.g-consalt {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 960px;
  padding-bottom: 50px;
}

@media screen and (max-width: 979px) {
  .g-consalt {
    padding: 0 20px;
    max-width: 100%;
  }
}

.g-consalt__intro {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-consalt__head {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}

.g-consalt__head.txt-center {
  text-align: center;
}

.g-consalt__head>*:not(:last-child) {
  margin-bottom: 20px;
}

.g-consalt__head>h1,
.g-consalt__head>h2,
.g-consalt__head>h3,
.g-consalt__head>h4,
.g-consalt__head>h5,
.g-consalt__head>h6 {
  font-family: "HelveticaNeueCyr-Heavy";
  font-weight: 900;
  line-height: 130%;
  font-size: 40px;
  color: #000;
}

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

  .g-consalt__head>h1,
  .g-consalt__head>h2,
  .g-consalt__head>h3,
  .g-consalt__head>h4,
  .g-consalt__head>h5,
  .g-consalt__head>h6 {
    font-size: calc(20px + 12 * ((100vw - 320px) / 980));
  }
}

.g-consalt__head>h1>*,
.g-consalt__head>h2>*,
.g-consalt__head>h3>*,
.g-consalt__head>h4>*,
.g-consalt__head>h5>*,
.g-consalt__head>h6>* {
  color: #ef4833;
}

.g-consalt__head p {
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 500;
  font-size: 22px;
  color: #000;
}

@media screen and (max-width: 1300px) {
  .g-consalt__head p {
    font-size: calc(16px + 6 * ((100vw - 320px) / 980));
  }
}

.g-consalt__head p>span {
  color: #ef4833;
  font-size: 32px;
}

@media screen and (max-width: 1300px) {
  .g-consalt__head p>span {
    font-size: calc(16px + 6 * ((100vw - 320px) / 980));
  }
}

.g-consalt__head ul:not(:first-of-type) li {
  margin-bottom: 10px;
  list-style: disc;
  list-style-position: inside;
}

.g-consalt__head ul li {
  font-family: "HelveticaNeueCyr-Roman";
  font-size: 22px;
  color: #000;
}

@media screen and (max-width: 1300px) {
  .g-consalt__head ul li {
    font-size: calc(16px + 6 * ((100vw - 320px) / 980));
  }
}

.g-consalt__head img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.g-consalt__strantegy {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-consalt__strantegy-cards {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}

.g-consalt__strantegy-cards-arrow {
  display: flex;
  align-self: center;
  width: 50%;
  margin-bottom: 20px;
}

.g-consalt__strantegy-cards-arrow svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 979px) {
  .g-consalt__strantegy-cards-arrow {
    display: none;
  }
}

.g-consalt__strantegy-cards-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  width: 100%;
}

@media screen and (max-width: 979px) {
  .g-consalt__strantegy-cards-inner {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
}

.g-consalt__strantegy-card {
  display: flex;
  width: 100%;
  max-width: 530px;
  padding: 28px;
  background: #ef4833;
  box-shadow: 8px 8px 25px rgba(239, 72, 51, 0.45);
  border-radius: 30px;
}

@media screen and (max-width: 979px) {
  .g-consalt__strantegy-card {
    min-height: 210px;
  }
}

.g-consalt__strantegy-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.g-consalt__strantegy-card-inner>h1,
.g-consalt__strantegy-card-inner>h2,
.g-consalt__strantegy-card-inner>h3,
.g-consalt__strantegy-card-inner>h4,
.g-consalt__strantegy-card-inner>h5,
.g-consalt__strantegy-card-inner>h6 {
  margin-bottom: 20px;
  font-family: "HelveticaNeueCyr-Roman";
  line-height: 130%;
  font-size: 28px;
  color: #fff;
}

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

  .g-consalt__strantegy-card-inner>h1,
  .g-consalt__strantegy-card-inner>h2,
  .g-consalt__strantegy-card-inner>h3,
  .g-consalt__strantegy-card-inner>h4,
  .g-consalt__strantegy-card-inner>h5,
  .g-consalt__strantegy-card-inner>h6 {
    font-size: calc(18px + 10 * ((100vw - 320px) / 980));
  }
}

.g-consalt__strantegy-card-inner p {
  margin-top: auto;
  font-family: "HelveticaNeueCyr-Roman";
  font-size: 22px;
  color: #fff;
  line-height: 140%;
}

@media screen and (max-width: 1300px) {
  .g-consalt__strantegy-card-inner p {
    font-size: calc(18px + 4 * ((100vw - 320px) / 980));
  }
}

.g-consalt__strantegy-card-inner p>* {
  font-size: 48px;
}

@media screen and (max-width: 1300px) {
  .g-consalt__strantegy-card-inner p>* {
    font-size: calc(28px + 20 * ((100vw - 320px) / 980));
  }
}

.g-consalt__ansver {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
}

@media screen and (max-width: 850px) {
  .g-consalt__ansver {
    flex-direction: column;
  }
}

.g-consalt__ansver-item {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 30px;
  border-radius: 30px;
  border: 1px solid #000;
}

@media screen and (max-width: 600px) {
  .g-consalt__ansver-item {
    padding: 30px 20px;
  }
}

.g-consalt__ansver-item:not(:last-child) {
  margin-right: 24px;
}

@media screen and (max-width: 850px) {
  .g-consalt__ansver-item:not(:last-child) {
    margin: 0;
    margin-bottom: 24px;
  }
}

.g-consalt__ansver-item-img {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.g-consalt__ansver-item:nth-child(2) {
  background-color: #000;
}

.g-consalt__ansver-item:nth-child(2) * {
  color: white;
}

.g-consalt__ansver-if {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.g-consalt__ansver-if>* {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  color: #000;
  text-align: center;
}

.g-consalt__ansver-if>*:nth-child(1) {
  font-size: 32px;
}

.g-consalt__ansver-if>*:nth-child(2) {
  margin-bottom: 15px;
  font-size: 128px;
}

.g-consalt__ansver-if>*:nth-child(3) {
  font-size: 20px;
  font-weight: 400;
}

.g-consalt__ansver-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: auto;
}

.g-consalt__ansver-info p {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 150%;
  font-family: "HelveticaNeueCyr-Heavy";
  font-weight: 900;
  color: #000;
}

@media screen and (max-width: 600px) {
  .g-consalt__ansver-info p {
    font-size: 16px;
  }
}

.g-consalt__kinds {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
}

.g-consalt__kinds-accard-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #ef4833;
  border-radius: 10px;
}

.g-consalt__kinds-accard-item:not(:last-child) {
  margin-bottom: 16px;
}

.g-consalt__kinds-accard-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 30px;
  background: #ef4833;
  border-radius: 10px;
  font-size: 20px;
  color: #fff;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  text-align: left;
}

@media screen and (max-width: 600px) {
  .g-consalt__kinds-accard-btn {
    padding: 10px 15px;
    font-size: 16px;
  }
}

.g-consalt__kinds-accard-btn svg {
  flex-shrink: 0;
  transition: 0.3s all ease;
  margin-left: 10px;
}

@media screen and (max-width: 600px) {
  .g-consalt__kinds-accard-btn svg {
    width: 20px;
    height: 20px;
  }
}

.g-consalt__kinds-accard-btn.active svg {
  transform: rotate(90deg);
}

.g-consalt__kinds-accard-drop {
  display: block;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s all ease;
}

.g-consalt__kinds-accard-drop-desc {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 30px;
}

.g-consalt__kinds-accard-drop-desc>h1,
.g-consalt__kinds-accard-drop-desc>h2,
.g-consalt__kinds-accard-drop-desc>h3,
.g-consalt__kinds-accard-drop-desc>h4,
.g-consalt__kinds-accard-drop-desc>h5,
.g-consalt__kinds-accard-drop-desc>h6 {
  margin-bottom: 10px;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  line-height: 115%;
  font-size: 24px;
  color: black;
}

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

  .g-consalt__kinds-accard-drop-desc>h1,
  .g-consalt__kinds-accard-drop-desc>h2,
  .g-consalt__kinds-accard-drop-desc>h3,
  .g-consalt__kinds-accard-drop-desc>h4,
  .g-consalt__kinds-accard-drop-desc>h5,
  .g-consalt__kinds-accard-drop-desc>h6 {
    font-size: calc(20px + 4 * ((100vw - 320px) / 980));
  }
}

.g-consalt__kinds-accard-drop-desc ul:not(:last-child) {
  margin-bottom: 20px;
}

.g-consalt__kinds-accard-drop-desc ul li {
  list-style: disc;
  list-style-position: inside;
  font-family: "HelveticaNeueCyr-Roman";
  font-size: 18px;
  color: black;
}

.g-consalt__kinds-accard-drop-desc ul li:not(:last-child) {
  margin-bottom: 6px;
}

@media screen and (max-width: 1300px) {
  .g-consalt__kinds-accard-drop-desc ul li {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}

.g-consalt__goals {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
}

.g-consalt__goals .g-consalt__info {
  max-width: 100%;
}

.g-consalt__goals-table {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-table {
    flex-direction: column;
  }
}

.g-consalt__goals-btns {
  display: flex;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-btns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .g-consalt__goals-btns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .g-consalt__goals-btns {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
}

.g-consalt__goals-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-btn-wrap:not(:last-child) {
    margin: 0;
  }
}

.g-consalt__goals-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  margin: 0 6px;
  opacity: 0;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-btn-icon {
    display: none;
  }
}

.g-consalt__goals-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 150px;
  min-height: 80px;
  padding: 10px;
  border: 1px solid black;
  border-radius: 10px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  color: #000;
  transition: 0.3s all ease;
}

.g-consalt__goals-btn:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-btn:not(:last-child) {
    margin: 0;
  }
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-btn {
    width: 100%;
  }
}

.g-consalt__goals-btn.active {
  border-color: #ef4833;
  color: #fff;
  background: #ef4833;
  box-shadow: 8px 8px 25px rgba(239, 72, 51, 0.45);
}

.g-consalt__goals-btn.active~.g-consalt__goals-btn-icon {
  opacity: 1;
}

.g-consalt__goals-drops {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.g-consalt__goals-drop {
  display: none;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-drop {
    flex-direction: column;
  }
}

.g-consalt__goals-drop.active {
  display: flex;
}

.g-consalt__goals-drop-laine {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  background: #ef4833;
  box-shadow: 8px 8px 25px rgba(239, 72, 51, 0.45);
  border-radius: 10px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  color: #fff;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-drop-laine {
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    margin-bottom: 10px;
  }
}

.g-consalt__goals-drop-cards {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-drop-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 768px) {
  .g-consalt__goals-drop-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .g-consalt__goals-drop-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 350px) {
  .g-consalt__goals-drop-cards {
    grid-gap: 10px;
  }
}

.g-consalt__goals-drop-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-drop-card {
    width: 100%;
    height: 100%;
    margin: 0;
  }
}

.g-consalt__goals-drop-card-icon {
  display: flex;
  margin: 0 6px;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-drop-card-icon {
    display: none;
  }
}

.g-consalt__goals-drop-card-info {
  display: flex;
  flex-direction: column;
  width: 150px;
  padding: 14px;
  border: 1px solid black;
  border-radius: 10px;
  transition: 0.3s all ease;
}

@media screen and (max-width: 979px) {
  .g-consalt__goals-drop-card-info {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}

.g-consalt__goals-drop-card-info p {
  font-size: 14px;
  text-align: center;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  color: #000;
}

.g-consalt__clients {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}

.g-consalt__clients-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .g-consalt__clients-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.g-consalt__clients-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  padding: 20px;
  border: 1px solid #ef4833;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s all ease;
}

@media screen and (max-width: 768px) {
  .g-consalt__clients-card {
    height: 180px;
  }
}

@media screen and (max-width: 480px) {
  .g-consalt__clients-card {
    height: 160px;
  }
}

@media screen and (max-width: 350px) {
  .g-consalt__clients-card {
    height: 120px;
  }
}

.g-consalt__clients-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.g-consalt__clients-card:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.g-consalt__team {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
}

.g-consalt__team-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .g-consalt__team-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-consalt__team-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-consalt__team-card:hover img {
  transform: scale(1.1);
}

.g-consalt__team-card-img {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border-radius: 10px;
  overflow: hidden;
}

.g-consalt__team-card-img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 70%;
}

.g-consalt__team-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.g-consalt__team-card-img img {
  transition: 0.3s all ease;
}

.g-consalt__team-card-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 0;
}

.g-consalt__team-card-info>h1,
.g-consalt__team-card-info>h2,
.g-consalt__team-card-info>h3,
.g-consalt__team-card-info>h4,
.g-consalt__team-card-info>h5,
.g-consalt__team-card-info>h6 {
  margin-bottom: 10px;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  line-height: 130%;
  font-size: 24px;
  color: #000;
}

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

  .g-consalt__team-card-info>h1,
  .g-consalt__team-card-info>h2,
  .g-consalt__team-card-info>h3,
  .g-consalt__team-card-info>h4,
  .g-consalt__team-card-info>h5,
  .g-consalt__team-card-info>h6 {
    font-size: calc(18px + 6 * ((100vw - 320px) / 980));
  }
}

.g-consalt__team-card-info p {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  line-height: 130%;
  color: #000;
}

.g-consalt__consult {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
}

.g-consalt__consult .g-consalt__info {
  max-width: 100%;
}

.g-consalt__consult-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.g-consalt__consult-content button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 3em;
  border: 1px solid #ef4833;
  background: #fff;
  cursor: pointer;
  border-radius: 10px;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  font-size: 18px;
  color: #ef4833;
  transition: 0.3s all ease;
}

@media screen and (max-width: 480px) {
  .g-consalt__consult-content button {
    padding: 13px 2em;
  }
}

.g-consalt__consult-content button:hover {
  background: #ef4833;
  color: #fff;
}

.g-consalt__contacts {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-consalt__contacts-list {
  display: flex;
  flex-direction: column;
}

.g-consalt__contacts-list ul li {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  color: #000;
}

.g-consalt__contacts-list ul li:not(a) {
  font-size: 20px;
}

@media screen and (max-width: 1300px) {
  .g-consalt__contacts-list ul li:not(a) {
    font-size: calc(18px + 2 * ((100vw - 320px) / 980));
  }
}

.g-consalt__contacts-list ul li:not(a):first-child {
  font-size: 16px;
}

.g-consalt__contacts-list ul li:not(:last-child) {
  margin-bottom: 4px;
}

.g-consalt__contacts-list ul a {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  color: #ef4833;
  font-size: 24px;
}

@media screen and (max-width: 1300px) {
  .g-consalt__contacts-list ul a {
    font-size: calc(20px + 4 * ((100vw - 320px) / 980));
  }
}

.g-consalt__contacts-list ul a:hover {
  text-decoration: underline;
}

.modal-consult {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 636px;
}

.modal-consult__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 420px;
}

.modal-consult__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.modal-consult__info>h1,
.modal-consult__info>h2,
.modal-consult__info>h3,
.modal-consult__info>h4,
.modal-consult__info>h5,
.modal-consult__info>h6 {
  margin-bottom: 20px;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  line-height: 100%;
  font-size: 24px;
  color: black;
}

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

  .modal-consult__info>h1,
  .modal-consult__info>h2,
  .modal-consult__info>h3,
  .modal-consult__info>h4,
  .modal-consult__info>h5,
  .modal-consult__info>h6 {
    font-size: calc(20px + 4 * ((100vw - 320px) / 980));
  }
}

.modal-consult__info p {
  font-size: 16px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  color: black;
}

.modal-consult__form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 24px;
  width: 100%;
}

.modal-consult__form button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 3em;
  border: 1px solid #ef4833;
  background: #fff;
  cursor: pointer;
  border-radius: 10px;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  font-size: 18px;
  color: #ef4833;
  transition: 0.3s all ease;
}

@media screen and (max-width: 480px) {
  .modal-consult__form button {
    padding: 13px 2em;
  }
}

.modal-consult__form button:hover {
  background: #ef4833;
  color: #fff;
}

.modal-consult__form-input {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.modal-consult__form-input label {
  margin-bottom: 8px;
  font-size: 16px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  color: #000;
}

.modal-consult__form-input input {
  width: 100%;
  padding: 15px 20px;
  outline: none;
  border-radius: 10px;
  border: 1px solid #000;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 500;
  color: #000;
}


/*аутсорсинг*/

.g-consalt__autsors {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  width: 100%;
  margin-bottom: 50px;
}

.g-consalt__autsors-card {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.g-consalt__autsors-card-img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.g-consalt__autsors-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.g-consalt__autsors-card-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-consalt__autsors-card-head {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (max-width: 979px) {
  .g-consalt__autsors-card-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.g-consalt__autsors-card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 10px;
  padding: 12px 14px;
  background: #ef4833;
  box-shadow: 8px 8px 25px rgba(239, 72, 51, 0.45);
  border-radius: 6px;
  font-family: "HelveticaNeueCyr-Light";
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

@media screen and (max-width: 979px) {
  .g-consalt__autsors-card-price {
    margin: 0;
    margin-bottom: 10px;
  }
}

.g-consalt__autsors-card-txt p {
  font-family: "HelveticaNeueCyr-Light";
  font-weight: 400;
  font-size: 16px;
}

.g-consalt__autsors-card-info-name {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-consalt__autsors-card-info-name h1,
.g-consalt__autsors-card-info-name h2,
.g-consalt__autsors-card-info-name h3,
.g-consalt__autsors-card-info-name h4,
.g-consalt__autsors-card-info-name h5,
.g-consalt__autsors-card-info-name h6 {
  font-size: 24px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 400;
  color: #fff;
}

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

  .g-consalt__autsors-card-info-name h1,
  .g-consalt__autsors-card-info-name h2,
  .g-consalt__autsors-card-info-name h3,
  .g-consalt__autsors-card-info-name h4,
  .g-consalt__autsors-card-info-name h5,
  .g-consalt__autsors-card-info-name h6 {
    font-size: calc(18px + 6 * ((100vw - 320px) / 980));
  }
}

.g-consalt__autsors-card-info-name p {
  font-family: "HelveticaNeueCyr-Light";
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}

.g-consalt__autsors-card-info-name::after {
  content: "";
  display: flex;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  background: linear-gradient(to right, #fff, transparent);
}

.g-consalt__autsors-card-info-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 20px;
}

.g-consalt__autsors-card-info-list:not(:last-child) {
  margin-bottom: 20px;
}

.g-consalt__autsors-card-info-list h1,
.g-consalt__autsors-card-info-list h2,
.g-consalt__autsors-card-info-list h3,
.g-consalt__autsors-card-info-list h4,
.g-consalt__autsors-card-info-list h5,
.g-consalt__autsors-card-info-list h6 {
  margin-bottom: 10px;
  font-size: 16px;
  font-family: "HelveticaNeueCyr-Medium";
  font-weight: 400;
  color: #fff;
}

.g-consalt__autsors-card-info-list ul li {
  list-style: disc;
  list-style-position: inside;
  font-family: "HelveticaNeueCyr-Light";
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}

.g-consalt__autsors-card-info-list ul li:not(:last-child) {
  margin-bottom: 4px;
}



/* words page  */

.g-word {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1320px;
  padding: 0 20px;
  padding-top: 50px;
  padding-bottom: 100px;
}

.g-word__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-word__title>h1,
.g-word__title>h2,
.g-word__title>h3,
.g-word__title>h4,
.g-word__title>h5,
.g-word__title>h6 {
  margin-bottom: 20px;
  font-weight: 900;
  font-family: "HelveticaNeueCyr-Bold";
  font-size: 64px;
  line-height: 120%;
  color: #ef4833;
}

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

  .g-word__title>h1,
  .g-word__title>h2,
  .g-word__title>h3,
  .g-word__title>h4,
  .g-word__title>h5,
  .g-word__title>h6 {
    font-size: calc(32px + 32 * ((100vw - 320px) / 980));
  }
}

.g-word__ui {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-word__letters {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
}

.g-word__search {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 424px;
  border: 1px solid #ef4833;
  border-radius: 10px;
  overflow: hidden;
}

.g-word__search input {
  width: 100%;
  height: 100%;
  padding: 15px 0 15px 20px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  font-family: "HelveticaNeueCyr-Medium";
}

@media screen and (max-width: 1300px) {
  .g-word__search input {
    font-size: calc(18px + 2 * ((100vw - 320px) / 980));
  }
}

.g-word__search input::-moz-placeholder {
  color: #8e8e8e;
  font-size: 20px;
  font-family: "HelveticaNeueCyr-Medium";
}

.g-word__search input:-ms-input-placeholder {
  color: #8e8e8e;
  font-size: 20px;
  font-family: "HelveticaNeueCyr-Medium";
}

.g-word__search input::placeholder {
  color: #8e8e8e;
  font-size: 20px;
  font-family: "HelveticaNeueCyr-Medium";
}

@media screen and (max-width: 1300px) {
  .g-word__search input::-moz-placeholder {
    font-size: calc(18px + 2 * ((100vw - 320px) / 980));
  }

  .g-word__search input:-ms-input-placeholder {
    font-size: calc(18px + 2 * ((100vw - 320px) / 980));
  }

  .g-word__search input::placeholder {
    font-size: calc(18px + 2 * ((100vw - 320px) / 980));
  }
}

.g-word__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 52px;
  background: transparent;
  transition: 0.3s all ease;
}

.g-word__search-btn path {
  transition: 0.3s all ease;
}

.g-word__search-btn:hover {
  background: #ef4833;
}

.g-word__search-btn:hover path {
  fill: #fff;
}

.g-word__letters-item {
  display: flex;
  flex-wrap: wrap;
}

.g-word__letters-item:not(:last-child) {
  margin-bottom: 10px;
}

.g-word__letters-item>* {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 40px;
  background: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "HelveticaNeueCyr-Medium";
  transition: 0.3s all ease;
}

@media screen and (max-width: 1300px) {
  .g-word__letters-item>* {
    font-size: calc(18px + 2 * ((100vw - 320px) / 980));
  }
}

.g-word__letters-item>*.active {
  color: #ef4833;
}

.g-word__letters-item>*:hover {
  color: #ef4833;
}

.g-word__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 50px;
}

.g-word__content-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-word__content-head {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 32px;
  font-family: "HelveticaNeueCyr-Medium";
  color: #ef4833;
}

@media screen and (max-width: 1300px) {
  .g-word__content-head {
    font-size: calc(20px + 12 * ((100vw - 320px) / 980));
  }
}

.g-word__content-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-word__content-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  line-height: 35px;
  /*    padding: 16px 0;*/
  /*    padding-top: 15px;*/
  /*    border-bottom: 2px solid rgba(0, 0, 0, 0.4);*/
  border-top: 2px solid rgba(0, 0, 0, 0.4);
}

.g-word__content-btn>* {
  text-align: left;
  font-size: 16px;
  font-family: "HelveticaNeueCyr-Medium";
  color: black;
}

.g-word__content-btn.g-word-tab-btn_js::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image: url('data:image/svg+xml,                 <svg viewBox="0 0 12 22" fill="none" xmlns="http://www.w3.org/2000/svg">                     <path d="M2.62268e-07 18.5L7.5 11L1.57361e-06 3.5L1.5 0.499999L12 11L1.5 21.5L2.62268e-07 18.5Z" fill="%23242e40"></path>                 </svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  will-change: transform;
  transition: 0.3s all ease;
}

.g-word__content-btn.active::after {
  transform: rotate(180deg);
}

.g-word__content-drop {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s all ease;
}

.g-word__content-drop .g-word__content-drop-inner {
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

.g-word__content-drop-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  /*    padding: 20px 0;*/
  /*    padding-bottom: 10px;*/
  line-height: 35px;
}

.g-word__content-drop-inner p:not(:last-child),
.g-word__content-drop-inner ul:not(:last-child) {
  margin-bottom: 10px;
}

.g-word__content-drop-inner p,
.g-word__content-drop-inner li {
  font-size: 16px;
  font-family: "HelveticaNeueCyr-Medium";
  color: black;
}

.g-word__content-drop-inner p *,
.g-word__content-drop-inner li * {
  color: #ef4833;
}

.g-word__pagination {
  display: flex;
  align-self: flex-end;
  margin-top: 30px;
}

.g-word__pagination>* {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #ef4833;
  border-radius: 5px;
  font-size: 16px;
  font-family: "HelveticaNeueCyr-Medium";
  color: #ef4833;
  transition: 0.3s all ease;
}

.g-word__pagination>*:not(:last-child) {
  margin-right: 10px;
}

.g-word__pagination>*.active {
  background: #ef4833;
  color: #fff;
}

.g-word__pagination>*:hover {
  background: #ef4833;
  color: #fff;
}

.g-word__pagination>*:hover path {
  fill: #fff;
}



/* Стили для нового блока OUR PROJECTS на главной */
.g-prj-card-cards {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  width: 100%;
}

@media screen and (max-width: 850px) {
  .g-prj-card-cards {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 370px) {
  .g-prj-card-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-prj-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-prj-card__img {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.g-prj-card__img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.g-prj-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.g-prj-card__years {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 10px;
  gap: 8px;
}

.g-prj-card__years>* {
  display: flex;
  padding: 8px 18px;
  border: 2px solid #e41c0e;
  border-radius: 24px;
  font-family: "HelveticaNeueCyr-Medium";
  font-size: 16px;
  color: black;
  transition: 0.3s all ease;
}

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

  .g-prj-card__years {
    gap: 2px;
  }


  .g-prj-card__years>* {
    padding: 6px 12px;

    font-size: 14px;
  }
}

.g-prj-card__years>*:hover {
  background: #e41c0e;
  color: #fff;
}

.decor-triangle {
  z-index: -1;
  position: absolute;
  display: flex;
  width: 40vw;
  height: 40vw;
}

.decor-triangle:nth-of-type(1) {
  top: 50%;
  left: -20vw;
  transform: translateY(-50%);
}

.decor-triangle:nth-of-type(2) {
  top: 0;
  right: -20vw;
}

.over-hidden {
  position: relative;
  overflow: hidden;
}

.short_bnr {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 4px solid red;
  overflow: hidden;
}

.short_bnr::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 23.22%;
}

.short_bnr img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.new-footer-img {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
  filter: grayscale(100%);
  transition: 0.3s all ease;
}

.new-footer-img:hover {
  filter: grayscale(0)
}

.new-footer-img img {
  width: 100%;
  height: auto;

  object-fit: cover;
}

/* БАННЕР 14/06/23 */
.new-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 0 10px;
  overflow: hidden;
}

.new-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.new-intro__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.new-intro__bg-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  flex-grow: 1;
  padding: 280px 0 70px 0;
   gap: 40px;
}

.new-intro__bg-content-item {
  display: flex;
  flex-direction: column;
   
  width: 100%;
  gap: 40px;
}

@media screen and (max-width: 600px) {
  .new-intro__bg-content-item .new-intro__cards-second {
    order: 3;
  }
}

.new-intro__bg-img {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.new-intro__bg-img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 40%;
}
.new-intro__bg-img img, .new-intro__bg-img svg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 600px) {
  .new-intro__bg-img {
    position: relative;
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .new-intro__bg-img::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 90%;
  }
  .new-intro__bg-img img, .new-intro__bg-img svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 990px) {
  .new-intro__bg-content {
    padding: 130px 0 70px 0;
  }
}

.new-intro__cards-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .new-intro__cards-main {
    grid-template-columns: repeat(1, 1fr);
  }
}

.new-intro__card-main {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}

.new-intro__card-main::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 37%;
}

.new-intro__card-main img,
.new-intro__card-main svg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.new-intro__card-main img {
  will-change: transform;
  transition: 0.3s all ease;
}

@media (hover) {
  .new-intro__card-main:hover img {
    transform: scale(1.05);
  }
}

.new-intro__cards-second {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  width: 100%; 
}

@media screen and (max-width: 600px) {
  .new-intro__cards-second {
    grid-template-columns: repeat(1, 1fr);
  }
}

.new-intro__card-second {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}

.new-intro__card-second::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 36%;
}

.new-intro__card-second img,
.new-intro__card-second svg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.new-intro__card-second img {
  will-change: transform;
  transition: 0.3s all ease;
}

@media (hover) {
  .new-intro__card-second:hover img {
    transform: scale(1.05);
  }
}




/* РАЗДЕЛ TAF 14/06/23 */

.taf-section {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 200px;
  padding-bottom: 200px;
}

@media screen and (max-width: 1024px) {
  .taf-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.taf-section__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1420px;
  padding: 0 10px;
}

.taf-section__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .taf-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .taf-section__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.taf-section__card {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.taf-section__card::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 65%;
}

.taf-section__card img,
.taf-section__card svg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.taf-section__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.taf-section__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.g-rating-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.g-rating-list>ul .g-rating__title {
  margin-bottom: 16px;
}

.g-rating-list>ul>li:not(:last-child) {
  margin-bottom: 30px;
}

.g-rating-list>ul>li a {
  color: #000;
}

@media (hover) {
  .g-rating-list>ul>li a:hover {
    text-decoration: underline;
  }
}

/*  */
.pad-b-50 {
  padding-bottom: 50px !important;
}

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

.title-64>* {
  text-transform: uppercase;
  color: #ef4833;
  font-size: 64px;
  font-family: "HelveticaNeueCyr-Heavy";
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .title-64>* {
    font-size: 40px;
  }
}

@media screen and (max-width: 600px) {
  .title-64>* {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .title-64>* {
    font-size: 28px;
  }
}

@media screen and (max-width: 350px) {
  .title-64>* {
    font-size: 20px;
  }
}

.title-64.white>* {
  color: white;
}

.txt-28>* {
  font-family: "HelveticaNeueCyr-Bold";
  font-size: 28px;
  color: black;
}

@media screen and (max-width: 600px) {
  .txt-28>* {
    font-size: 18px;
  }
}

.txt-28.white>* {
  color: white;
}

.block-partners {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.block-partners__head {
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%; 
}

.block-partners__head>*:not(:last-child) {
  margin-right: 40px;
}

.block-partners__head .new-intro__card-second {
  max-width: 390px;
}

@media screen and (max-width: 600px) {
  .block-partners__head {
    flex-direction: column;
  }

  .block-partners__head>*:not(:last-child) {
    margin-right: 0;
  }
}

.block-partners__head-count {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 30px;
  background: #ef4833;
  border-radius: 30px;
}

@media screen and (max-width: 600px) {
  .block-partners__head-count {
    padding: 8px 20px;
    margin-top: 10px;
  }
}

.block-partners__head-count>* {
  font-family: "HelveticaNeueCyr-Roman";
  line-height: 1;
  font-size: 30px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .block-partners__head-count>* {
    font-size: 26px;
  }
}

@media screen and (max-width: 600px) {
  .block-partners__head-count>* {
    font-size: 20px;
  }
}

.block-partners__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-column-gap: 12px;
  grid-row-gap: 30px;
  margin-bottom: 60px;
}

@media screen and (max-width: 1366px) {
  .block-partners__body {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (max-width: 850px) {
  .block-partners__body {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .block-partners__body {
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 12px;
  }
}

.block-partners__body::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: auto;
  max-width: 56vw;
  height: 100%;
  max-height: 56vw;
  aspect-ratio: 1/1;
  background: #d4d4d4;
  border-radius: 50%;
}

.g-partners-card {
  display: flex;
  width: 100%;
  aspect-ratio: 1/0.8;
  padding: 0 10px;
  background: #fff;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.05);
  transition: 0.3s all ease;
}

@media (hover) {
  .g-partners-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.2);
  }
}

.g-partners-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* news */
.news-mob {
  z-index: 4;
  position: relative;
  display: none;
  grid-template-columns: repeat(2, 1fr);

  width: 100%;
  margin-top: 50px;
  grid-gap: 20px;

  .news__cards {
    padding: 0;
    margin: 0;
  }

  .news__body-title {
    margin: 0;
  }
}


@media screen and (max-width: 768px) {
  .slider-index-news {
    display: none;
  }

  .news-mob {
    display: grid;
  }
}


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

  .news-mob {  
    .news__body-title {
      font-size: 14px !important;
    }

    .news__body-img + p {
      margin-bottom: 10px;
    }
  }
}


.new-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 960px;
  gap: 30px;
}
.new-table__title {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  color: #ef4833;
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.03em;
}
.new-table__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #ef4833;
}
.new-table__head {
  display: flex;
  width: 100%;
  padding: 20px;
  gap: 10px;
  background: #ef4833;
}
@media screen and (max-width: 768px) {
  .new-table__head {
    flex-direction: column;
  }
}
.new-table__head-name {
  display: flex;
  width: 100%;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #fff;
}
.new-table__head-name > * {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #fff;
}
.new-table__item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  gap: 10px;
}
.new-table__item:not(:last-child) {
  border-bottom: 1px solid #ef4833;
}
@media screen and (max-width: 768px) {
  .new-table__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.new-table__item-logo {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.new-table__item-logo::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 40%;
}
.new-table__item-logo img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.new-table__item-logo img {
  -o-object-position: left;
  object-position: left;
}
@media screen and (max-width: 768px) {
  .new-table__item-logo {
    max-width: 200px;
  }
}
.new-table__item-name {
  display: flex;
  width: 100%;
}
.new-table__item-name > * {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #333333;
}
.new-table__item-txt {
  display: flex;
  width: 100%;
}
.new-table__item-txt > * {
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #333333;
  text-decoration: underline;
}
@media (hover) {
  .new-table__item-txt > *:hover {
    text-decoration: none;
  }
}
.new-table__item-price {
  display: flex;
  width: 100%;
}
.new-table__item-price > * {
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #ef4833;
}


.instagram {
  display: flex;
  width: 23px;
  height: 23px;
}

.instagram::after {
  content: "";

  width: 100%;
  height: 100%;

  background-image: url('data:image/svg+xml, \
		<svg xmlns="http://www.w3.org/2000/svg" width="17" height="18" viewBox="0 0 17 18" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.979004 4.37345C0.979004 2.34315 2.62489 0.697266 4.65519 0.697266H13.1098C15.1401 0.697266 16.7859 2.34315 16.7859 4.37345V13.6263C16.7859 15.6566 15.1401 17.3025 13.1098 17.3025H4.65519C2.62489 17.3025 0.979004 15.6566 0.979004 13.6263V4.37345ZM5.0825 8.9995C5.0825 6.88315 6.79813 5.16752 8.91448 5.16752C11.0308 5.16752 12.7465 6.88315 12.7465 8.9995V9.22555C12.7465 11.3419 11.0308 13.0575 8.91448 13.0575C6.79813 13.0575 5.0825 11.3419 5.0825 9.22555V8.9995ZM13.3684 3.09238C12.7952 3.09238 12.3306 3.55703 12.3306 4.13021C12.3306 4.70338 12.7952 5.16804 13.3684 5.16804C13.9416 5.16804 14.4062 4.70338 14.4062 4.13021C14.4062 3.55703 13.9416 3.09238 13.3684 3.09238Z" fill="white"/><path d="M6.53852 8.99987C6.53852 7.70537 7.58791 6.65598 8.88241 6.65598C10.1769 6.65598 11.2263 7.70537 11.2263 8.99987C11.2263 10.2944 10.1769 11.3438 8.88241 11.3438C7.58791 11.3438 6.53852 10.2944 6.53852 8.99987Z" fill="white"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;

  will-change: transform;
  transition: 0.3s all ease;
}






/* TAF maintenance */

.maintrans {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}
.maintrans__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 40px;
  padding: 100px 20px;
}
.maintrans__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.maintrans__text > h1,
.maintrans__text > h2,
.maintrans__text > h3,
.maintrans__text > h4,
.maintrans__text > h5,
.maintrans__text > h6 {
  max-width: 950px;
  margin: 0 !important;
  font-family: "HelveticaNeueCyr-Bold";
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 88px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 480px) {
  .maintrans__text > h1,
  .maintrans__text > h2,
  .maintrans__text > h3,
  .maintrans__text > h4,
  .maintrans__text > h5,
  .maintrans__text > h6 {
	font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .maintrans__text {
	font-size: 66px;
  }
}
.maintrans__text > p {
  max-width: 550px;
  margin: 0 !important;
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 700;
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.03em;
  color: #fff;
}
.maintrans__btn {
  display: flex;
  margin: 0 !important;
  padding: 20px 50px !important;
  background: #db1823;
  border-radius: 6px;
  color: #fff;
  font-family: "HelveticaNeueCyr-Roman";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  transition: 0.3s all ease;
}
@media (hover) {
  .maintrans__btn:hover {
	background: #ef4833;
  }
}
.maintrans__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.maintrans__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* TAF maintenance */