

/* Start:/local/templates/gikom/css/libraries.min.css?173340009485738*/
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height)
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1)
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg)
  }
}

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124
  }
}

.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0
  }
}

@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0
  }
}

.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease .1s both f-zoomInUp
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown
}

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

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

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

.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1
}

@keyframes f-fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0
  }
}

.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2
}

@keyframes f-fadeFastIn {
  0% {
    opacity: .75
  }

  100% {
    opacity: 1
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0
  }
}

.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0
  }
}

.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;
  z-index: 1
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0
  }
}

.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%)
  }

  100% {
    transform: translate3d(0, 0, 0)
  }
}

@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translate3d(0, 0, 0)
  }
}

@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%)
  }
}

@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%)
  }
}

.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0
  }
}

@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0
  }
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition)
}

@media(hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg)
  }
}

.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg)
}

.f-button:focus:not(:focus-visible) {
  outline: none
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity .15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none
}

.f-button[disabled] {
  cursor: default
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity)
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%)
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos)
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos)
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%)
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg)
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none
}

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

html.with-fancybox body {
  touch-action: none
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain
}

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

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0)
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip
}

.fancybox__viewport {
  width: 100%;
  height: 100%
}

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

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

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden
}

.fancybox__slide.has-image {
  overflow: hidden
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible
}

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

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20
}

.is-loading .fancybox__content {
  opacity: 0
}

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

.can-zoom_in .fancybox__content {
  cursor: zoom-in
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out
}

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

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto
}

.fancybox__slide.has-image>.fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden
}

.fancybox__slide.has-image>.fancybox__content>picture>img {
  width: 100%;
  height: auto;
  max-height: 100%
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  will-change: transform, width, height
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
  filter: blur(0px)
}

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

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden
}

.is-compact .fancybox__caption {
  padding-bottom: 0
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40
}

.fancybox__content>.f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: .75
}

.is-loading .fancybox__content>.f-button.is-close-btn {
  visibility: hidden
}

.is-zooming-out .fancybox__content>.f-button.is-close-btn {
  visibility: hidden
}

.fancybox__content>.f-button.is-close-btn:hover {
  opacity: 1
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all .25s ease
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, .5)
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px
}

.is-compact .fancybox__content>.f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1)
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1
}

.is-idle .fancybox__nav {
  animation: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut
}

.fancybox__slide>.f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0
}

.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease .1s backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut
}

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

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, .9);
  color: #fff
}

.has-map .fancybox__content {
  background: #e5e3df
}

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

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

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0)
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1
}

.f-thumbs .f-spinner svg {
  display: none
}

.f-thumbs.is-vertical {
  height: 100%
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0)
}

.f-thumbs__track {
  display: flex
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer
}

.f-thumbs__slide.is-loading img {
  opacity: 0
}

.is-classic .f-thumbs__viewport {
  height: 100%
}

.is-modern .f-thumbs__track {
  width: max-content
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0))*-0.5);
  width: calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));
  cursor: pointer
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform .33s ease
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path .33s ease
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))
}

.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity .2s ease
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity)
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity)
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path)
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity)
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn .2s ease-out;
  z-index: 10
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius)
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height .35s cubic-bezier(0.23, 1, 0.32, 1)
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap)
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important
}

.is-closing .fancybox__thumbs {
  transition: none !important
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20
}

.fancybox__toolbar :focus-visible {
  z-index: 1
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none
}

.fancybox__infobar span {
  padding: 0 5px
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg)
}

[data-fancybox-toggle-slideshow] {
  position: relative
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: .3
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none
}

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

.hystmodal__shadow {
  border: none;
  display: block;
  width: 100%;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 98;
  opacity: 0;
  transition: opacity .15s ease;
  background-color: #000
}

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

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

.hystmodal--active {
  opacity: 1
}

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

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

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

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

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

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

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

  .hystmodal__window {
    margin: 0
  }
}

/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  /* margin-left: auto;
    margin-right: auto; */
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.vjs-svg-icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  fill: currentColor;
  height: 1.8em;
  width: 1.8em;
}

.vjs-svg-icon:before {
  content: none !important;
}

.vjs-svg-icon:hover,
.vjs-control:focus .vjs-svg-icon {
  filter: drop-shadow(0 0 0.25em #fff);
}

.vjs-modal-dialog .vjs-modal-dialog-content,
.video-js .vjs-modal-dialog,
.vjs-button>.vjs-icon-placeholder:before,
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-button>.vjs-icon-placeholder:before,
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABTsAAsAAAAAIpAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV32Y21hcAAAAYQAAAEJAAAD5p42+VxnbHlmAAACkAAADtIAABckI4l972hlYWQAABFkAAAAKwAAADYsvIjpaGhlYQAAEZAAAAAdAAAAJA+RCL1obXR4AAARsAAAABcAAAC8Q2YAAGxvY2EAABHIAAAAYAAAAGB7CIGGbWF4cAAAEigAAAAfAAAAIAFAAI9uYW1lAAASSAAAASUAAAIK1cf1oHBvc3QAABNwAAABfAAAAnXdFqh1eJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGR7yDiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGPHcRdyA4RZgQRADaGCyYAAHic7dPXbcMwAEXRK1vuvffem749XAbKV3bjBA6fXsaIgMMLEWoQJaAEFKNnlELyQ4K27zib5PNF6vl8yld+TKr5kH0+cUw0xv00Hwvx2DResUyFKrV4XoMmLdp06NKjz4AhI8ZMmDJjzoIlK9Zs2LJjz4EjJ85cuHLjziPe/0UWL17mf2tqKLz/9jK9f8tXpGCoRdPKhtS0RqFkWvVQNtSKoVYNtWaoddPXEBqG2jQ9XWgZattQO4baNdSeofYNdWCoQ0MdGerYUCeGOjXUmaHODXVhqEtDXRnq2lA3hro11J2h7g31YKhHQz0Z6tlQL4Z6NdSbod4N9WGoT9MfHF6GmhnZLxyDcRMAAAB4nJ1YC1hU17U+a5/HMA4iA3NmVBDmoQwP5TFnHlFeA4gYiUFRQINoSCBAyK3G2yi+0aipYtFcHYo2xsb4NiY3+VrNxSaX5uvt495ozNdoYoxmem2/L8HGpLc+InB279pnhlGr5mvL4eyz99nrrL32eu1/DQcc/okdYgdHOA6MQKp4r9gx0EcMHMezOalVasW5BM7NcXoSb9fFgE6KtSSBxWz1FYDPG+vMBGcKb9cebu2VS5s2aaTkCvRSf6C7Y+Ppibm5E09v7IDs2/3uZQtbD0zIyppwoHXh/93ukmyYgdePNRp65p5v+3v/9otQl2O7wP34cT88p8Md2YxpYLQZoRcy6FlSBRnwnGAe6BPMSCZo+7NJVqS0cE4uHendzhSnbPH6TDqL1+Nme5LZXkCHnGyoH0kne30WH+gswhm3q+pt/mTas9NLS64GnjmSlTPw0wVQT/ewRaBgxtydy3cuUB9/6SW+vb5yRvr+t0eOfPKJZ/9t3+4tL7xj32Xd3thCxi+ge6ifdsAN+l5+wi5HQ/cCoeull1AszS7CUfEcJzK7sKWJAdJhCd0sPM4+EY7QDm5ov08hXRQXE5bf6PV5Q5+IjW7X7Nku92Ask4l2hCRRD6TPqISiCJeQna3SCFwrhrNzXHzo4yFevBwxpzxk8WCIIfkvVEKVy32SbT8n68gzgaslpaiO2zIGIyuSb7RNf9HSuN26y/7OC1tgEmpiyA6aD4qcgTOiLThwGG0eB694FI8NHLLN6OBlRVaMxNAFS4JdXUG6mW8PwpKuYLCLXKGbu8iwYNdgO06Sn3Th+/vyZAxs8Ro30DjHe9gy8Fywi24OMm7Qyzh3MTZVOMYhLBnoC+J79lpTUyQmorjhnMwlcQ5uPEYGpDjsOkkH49BjQLQBqs3jFtFdJNlksYmoQFDArLh8Xh+Qd6Ghcsb6FUuehDi+U/lqD71K/qiegeV1imcwjl7ExwiSrf4BZyCujV6cVcFo6VX+G9IcPyFjJnUufbU/jzrL1X99as36reXl8K32nFaOr+E8jWJEcJ55DpMVfSMe95/AJaOsGBH2GJCNpiRQbK4C8BjdmQA22QY2j03Em13i2YHqtNLU1NI04Yj2HJgA6fQc6VPNpA/D+Ryks554NnVy2mB72uRUfPLsqR4N0LOBQKArwJYO+5W2fgZX8oC1HR6HjNaQTVIG2FPwnTcXXGZZfNB7TE6pTKZUwaw91XWLAoFFGcnB5PHjsckgBjbWutrL+0h5Y1xw3DRGDumsnXb3MJwXrJIN5U7m0rgJ3yG5w4he5ckFG4pmNEkOm0/xOO4r4yL87wqtQM+hiJIVp+6iG2wPBKD35ElGkDx+UfC2v1mFG1o+M3AjNFty8biKMXwzyxnZLds8wYD2BxmCPHAldPOeLsy/0BugftYhVYFAhO8SqQ0j3oK7dHJZnI/jxmUS4onlxskSF8thmvNZjIrRZwEPxr0lBuLRuz3oy/FOHCsxwOPYh2M+e9u3J5pgPYz9gp6G7C9m0A11F9ddqKMfV+4sbq45/YspOysXvT+3pdFdYNg2fHbW8Dz301MqDVuGrz0Fuh0YMW8mddrpqzST7rV9BcvqPoNvadRndWp0p8HvbiqrFj5yFQ/vNFSXDpxpLEFWp+DcrF3FT1afWshFcmCfeAMjEvO65i0Y6XijQfSRPWx3TV/Df7Km3E1l+kLt56s/rwVzuRusNMhudznkwdLaS+QNdeal2jDPP4l9qHc98vTYZOSkxzD+njBWVWjFPKgipx6DkWvXQiW8OYcewVHE5yukinDMcfGgc0opDltYKDxIGBedkzc6jSfE7tlvESCDFUw0Hx0opS+U0lHCxNottbNWSxX9zZVvEhKWUSyBpaXwBc2a98M6UqPeXAs/GDon8Ax7hsthO8cM5HU7Ad0UvRR9lHmtyQKZ4MAe814X5h9MSUkQmhf96eVJ6p90OjIiqSIjvykvr2l5U55O/fPQKD+jIomYpNyGJQ25uQ2kIikRfAmuBHCPsWqkSDEqgZ5KDI2sifS/R43MbZg0idFHbCPNxXxZws1ACVE6hAhOdJwRkJLFBLPZpRGYJ50pko6XzMkgmSx40ljik6AQcKhFnLcQE6rF7PXFe1Ocoj0T3AXgSgJTDIhHRfHlYZKuSzc6uievOJGXY+i5GJkkTp7UM3y0LqATDbtFcbdBxO7o4T25JYlEjoH0uynUh8rapkxp62QN70svSF+hT4gGPlovlmcm/ComLi7mV4kTykV9NFWjE/QrwgQ4uIcAP0rQF4VZYRP2o3PhHHzfPMJj9Ir+uzKUlrH49ntT18AVvj1sc3YGjUT/Mt2Dxawa8ArcA7bCQIpvfwAYu22vEG/No/5RvPdA7g+AelLrPwzy+LtkLPhnpIxH14m4EYq8eeMHbPEPNm6G7Nv9B4jcFPZ8bJj0SEjP3MPgQdKTqqEoy2v6G32P/Y6dxOv04AxnoAeq+GILvUavtYCBXm+BaIhuodcfrN5B/V2EYMCPh+SxavjGyPwV0x4CJgUPGT0mQaODGBACIJZGsMXwAD0LGXx7l3CdAcKMIKI+f5CepWeD0BvyU/GcdBxPF8SwejC6LGZmAURFdsSWKR5HyHld2kbdIZO1Ixx+bnnzU7n5+blPNV9jnUDWhP2tC68tbN3PVIldsQPxSAcSpjOav7Q05uXn5zW2LLvDXn9B6syscPy9iDLEMmSrJz6nYuWMipukjM0AH8JkGS+XFyMRkzSCH7KD/hwm172SAyZYumHlefr5AddrtA0O0TnwaVZxcRY9Bfukn9Gf05N1r9DV9MoBsJ1f+ZrqUvtPHizJAntWybv7hmqLt6QLuK6ZS9Fqi1jO5rDoWPZXXII5Tgajg53cIXCjDCGIcYrRIY2n6+mXOa/W0bdhau3ryiEYe2FV/5oeaIYK/5w5frCyll6/cYO8DiNhw6t1MBWmznt91QX62UF1N7l0eHBZTRGpKaqpKVIPF9UcIzmReud9TSY75+K899GHbBu6wjoR7RKKZVYiYxSPf5/2wJT5e3NAhmUbVn5KLx1Ujg0+BGvpAIh0DezInTkzF37KVocxrKU3r1+XLtAe2lO3l66kfQfB/unKY+q8N375Ru8bc4pJXfEcESU95q+p8ZNZRTWH1d9FzvUdYXk5rLkcdkEisoKKVHQW/b3GEx6tPaYcoJfOr9wAbSBnv1IHpep0OExr4LPMkpJM+j7sly7UHkOzXjoAZljHCGiyegtNlwljM0v+c19ET9Pvst09a2Mtgcf5/ZSzYO5h1156+eyydfAsxGa9XAuF6vzjh6CssLq6ECysperXX0sX5h5ZdpZe3guxsGIPEtHk/aqXX1hVqP5HYVVVISkrrNqvXorIc+5Ou91Hnr/LcD2afi6eX7UBloOcs7cOpqgGaNfs1g7bNbs9z6wASaylN69d0/TFTIz6Ws8+oGV3mE2612wRTHKcVUbhjKadebloMc+dyXgMVtVK6BwMB/+mVW09igdRBWaRtNQX59d/VD//xdQ0TCiYNj1KT9sq6Wdu5WTbqk3qDXyDaLa1fv621LS01G3z61sD6lH8lAxDLicV921s6Bf92JOYvzNYCL1khbqBXEFUzC521N5NyzNaQIWhjyFyDoBIVrAjmv2UEaLlI+c6zw1jmVIPLLLZZUTj6GxGHW+mq1tgHXR2D85p4Q934+jLbtjVLcyCdS10NVzpHqxp4Q/hK7WopY/NRGx9HGsPGdFjOjcpjBnGYMVqY/4eqT5khWEHWUup2A/pTw7pdWgsWft7ETUERL96nRg0HNFPmCYba6pylECaExX89A9WLUOVB4oKLu/o1oqSYHCgLzBUlAz8hNFDRpeSU1XT+LRmDUgPaKbYdHDn9suF/tu13nHJij0N97LfS0QmqONuyONk7zvUI6Qa0pF9f2+oABL92AT6e0U//z9YqAiWtJLU1JK0gS+1aacwamiNqK067u9ZQ8f1d4qLodMzz3uL89Z68V/Hnr++hXWUuHgw8dfi972PeTyPefu3aNNucemQ74qFuIaJnVkOu4Q+yjuwmmC1FqZpl1i4uzoPxjkpPf3Xv545tl26Rr+dOvUd+omqJzch9dOeU7f10Y64nMcKK137DccIZq2WdXtdZjbEoLSzHwiMtrjYLDxpHQW8gjMX6XFYAE2zSWVD04EGYSs9MbO6sEo20BMEAB4mpvSypsKjZ4Stgzb+c3A9/MQT2+vrBy+qvyFxLUtLlSRF/Ri2wjfZ2dus2Q8lXx4608/jnqK5OOap6NY2PSjYYnECCjiEeLJll/pbmqfeIK+ps3+MxrlEhqmTPipVP7kqlF4VhpEb6r+Q7YOJg38kJ9SHBf3NBl6+9YchfbUjb5ahLSzUM3kPHmwFAsZ5rpai0S7E5xWzZ1j+fW7zsUWP2g5NXTw52ySCTrgG0+lbw60l2Y/CB185CoA8NK+tbRKxfjy6pm5hzQRRR+cMqv1Jbiw6STivtEvt3DRcy0QEh92JlUGo2PG4tSKHl00YD6xc8CK+YPYyy3io2lN8BcSjKRzrIV6ypOAobqxViJPaT9M9Hy5szY33mp7OX/Zu89L/7Ww5vqY2Y8b0pKgoiUhG5cPDPzq8qTV/WkzUOIvXVVA96kmjcBrr3HrYC/Wn+fYP6Z7T1rqy3zknbvqma/FvVk96fNXGkuaXrdHW5JGSxZT/2I/O73v+yNWafMdzc5NdxYurHs6h86e01sLKLz9EBrg+x36rxAaED7hRnAMx7Vzu+9wabh3zG8XLQjx0ablUJzmxdErxYT3kzQSd0SSafVqF5PXgpp0OyYJ1EyNHpGUZmvK575ySzd85JSqF7IBzSAbMM04+MbE58xF3/njXOGecSaermlw2y9PsSQdytLJVr8t+wg+rR8cZYoeNxVIzNdk3Bngi8U5LAlgTFoQnzJCa5EsCgYhCaGL+qPj7TdhG31p9tej3R04N//PXxNwJvyUqwaJqRPJY98TJ5TPndmflRAkAhBfe46sfKW5wizSge08Xb7Ca/GUVs55trngkKkrUS2WPzKttaaqq+idmahugkY+W6fN0I6i3gPt/x88U4wAAeJxjYGRgYADiGU9YXsXz23xl4GZnAIFH7fO+IdMc/WBxDgYmEAUASbMKwAB4nGNgZGBgZwABjj4Ghv//OfoZGBlQgT4ARicDZAAAAHicY2BgYGAfxJijD8Fmu4EqBwCSpgKpAAAAAAAADgBoAH4AzADgAQIBQgFsAZgB7gIuAooC0AL8A2IDjAOoA+AEMASwBNoFCAVaBcAGCAYuBnAGrAb2B04HigfSCCoIcAiGCJwIyAkkCVYJiAmsCfIKIApWCsQLknicY2BkYGDQZ2hmYGcAASYg5gJCBob/YD4DABqrAdAAeJxdkE1qg0AYhl8Tk9AIoVDaVSmzahcF87PMARLIMoFAl0ZHY1BHdBJIT9AT9AQ9RQ9Qeqy+yteNMzDzfM+88w0K4BY/cNAMB6N2bUaPPBLukybCLvleeAAPj8JD+hfhMV7hC3u4wxs7OO4NzQSZcI/8Ltwnfwi75E/hAR7wJTyk/xYeY49fYQ/PztM+jbTZ7LY6OWdBJdX/pqs6NYWa+zMxa13oKrA6Uoerqi/JwtpYxZXJ1coUVmeZUWVlTjq0/tHacjmdxuL90OR8O0UEDYMNdtiSEpz5XQGqzlm30kzUdAYFFOb8R7NOZk0q2lwAyz1i7oAr1xoXvrOgtYhZx8wY5KRV269JZ5yGpmzPTjQhvY9je6vEElPOuJP3mWKnP5M3V+YAAAB4nG2ReVPbMBDF/ULi2EkDBFqO3gdHLxUzDB9IkdexBllydRD49ihO3Ckz7B/a31utZnafkkGyiXnyclxhgB0MMUKKMTLkmGCKV5hhF3vYxxwHOMRrvMERjnGCU7zFO7zHB3zEJ3zGF3zFN5zhHBe4xHf8wE/8wm8w/MEVimTYKv44XR9MSCsUjVoeHE3vjQoNsSZ4mmxZmVWPjSz7jlou6/0qKOWEJdKMtCe793/hQfqxa6XWZHMXFl56RS4TvPXSaDeoy0zUUZB109KstDK8lHo5q6Qi1hcOnqkImubPS6aqRq7mlnaEWabub4iYblba3SRmgldS0+FWdhNtt04F14JUaqkl7tcpOpJtErvNt3Bd9HRT5JWxK25Ldjvp6br4hzfFiIdSmlzTg2fSUzNrLd1LE1ynxq4OVaVoKLjzJ60UPtj1RKzHzsbjly6inVnFBS2MucviPncU7Rr7lfTxRepDs1A2j3ZHRc7PuzFYSfE3ZOd4kjwBy227hA==) format("woff");
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play,
.video-js .vjs-play-control .vjs-icon-placeholder,
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play:before,
.video-js .vjs-play-control .vjs-icon-placeholder:before,
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause,
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pause:before,
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute,
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mute:before,
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low,
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-low:before,
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid,
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-mid:before,
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high,
.video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-volume-high:before,
.video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter,
.video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-enter:before,
.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit,
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-fullscreen-exit:before,
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-spinner:before {
  content: "\f10a";
}

.vjs-icon-subtitles,
.video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-subtitles:before,
.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10b";
}

.vjs-icon-captions,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-captions:before,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-hd:before {
  content: "\f10d";
}

.vjs-icon-chapters,
.video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-chapters:before,
.video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-downloading {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-downloading:before {
  content: "\f10f";
}

.vjs-icon-file-download {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-file-download:before {
  content: "\f110";
}

.vjs-icon-file-download-done {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-file-download-done:before {
  content: "\f111";
}

.vjs-icon-file-download-off {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-file-download-off:before {
  content: "\f112";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-share:before {
  content: "\f113";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cog:before {
  content: "\f114";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-square:before {
  content: "\f115";
}

.vjs-icon-circle,
.vjs-seek-to-live-control .vjs-icon-placeholder,
.video-js .vjs-volume-level,
.video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle:before,
.vjs-seek-to-live-control .vjs-icon-placeholder:before,
.video-js .vjs-volume-level:before,
.video-js .vjs-play-progress:before {
  content: "\f116";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-outline:before {
  content: "\f117";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-circle-inner-circle:before {
  content: "\f118";
}

.vjs-icon-cancel,
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cancel:before,
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f119";
}

.vjs-icon-repeat {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-repeat:before {
  content: "\f11a";
}

.vjs-icon-replay,
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay:before,
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f11b";
}

.vjs-icon-replay-5,
.video-js .vjs-skip-backward-5 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay-5:before,
.video-js .vjs-skip-backward-5 .vjs-icon-placeholder:before {
  content: "\f11c";
}

.vjs-icon-replay-10,
.video-js .vjs-skip-backward-10 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay-10:before,
.video-js .vjs-skip-backward-10 .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-replay-30,
.video-js .vjs-skip-backward-30 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-replay-30:before,
.video-js .vjs-skip-backward-30 .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-forward-5,
.video-js .vjs-skip-forward-5 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-forward-5:before,
.video-js .vjs-skip-forward-5 .vjs-icon-placeholder:before {
  content: "\f11f";
}

.vjs-icon-forward-10,
.video-js .vjs-skip-forward-10 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-forward-10:before,
.video-js .vjs-skip-forward-10 .vjs-icon-placeholder:before {
  content: "\f120";
}

.vjs-icon-forward-30,
.video-js .vjs-skip-forward-30 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-forward-30:before,
.video-js .vjs-skip-forward-30 .vjs-icon-placeholder:before {
  content: "\f121";
}

.vjs-icon-audio,
.video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio:before,
.video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f122";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-next-item:before {
  content: "\f123";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-previous-item:before {
  content: "\f124";
}

.vjs-icon-shuffle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-shuffle:before {
  content: "\f125";
}

.vjs-icon-cast {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-cast:before {
  content: "\f126";
}

.vjs-icon-picture-in-picture-enter,
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-enter:before,
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f127";
}

.vjs-icon-picture-in-picture-exit,
.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-picture-in-picture-exit:before,
.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f128";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-facebook:before {
  content: "\f129";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-linkedin:before {
  content: "\f12a";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-twitter:before {
  content: "\f12b";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-tumblr:before {
  content: "\f12c";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-pinterest:before {
  content: "\f12d";
}

.vjs-icon-audio-description,
.video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}

.vjs-icon-audio-description:before,
.video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f12e";
}

.video-js {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}

.video-js:-moz-full-screen {
  position: absolute;
}

.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: none;
}

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

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
  width: 100%;
  max-width: 100%;
}

.video-js.vjs-fluid:not(.vjs-audio-only-mode),
.video-js.vjs-16-9:not(.vjs-audio-only-mode),
.video-js.vjs-4-3:not(.vjs-audio-only-mode),
.video-js.vjs-9-16:not(.vjs-audio-only-mode),
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  height: 0;
}

.video-js.vjs-16-9:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}

.video-js.vjs-4-3:not(.vjs-audio-only-mode) {
  padding-top: 75%;
}

.video-js.vjs-9-16:not(.vjs-audio-only-mode) {
  padding-top: 177.7777777778%;
}

.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  padding-top: 100%;
}

.video-js.vjs-fill:not(.vjs-audio-only-mode) {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-js.vjs-audio-only-mode .vjs-tech {
  display: none;
}

body.vjs-full-window,
body.vjs-pip-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen,
body.vjs-pip-window .video-js {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs),
body.vjs-pip-window .video-js {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
  display: block;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-pip-container .vjs-pip-text {
  position: absolute;
  bottom: 10%;
  font-size: 2em;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.5em;
  text-align: center;
  width: 100%;
}

.vjs-layout-tiny.vjs-pip-container .vjs-pip-text,
.vjs-layout-x-small.vjs-pip-container .vjs-pip-text,
.vjs-layout-small.vjs-pip-container .vjs-pip-text {
  bottom: 0;
  font-size: 1.4em;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin-top: -0.81666em;
  margin-left: -1.5em;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}

.vjs-big-play-button .vjs-svg-icon {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause:not(.vjs-seeking, .vjs-scrubbing, .vjs-error) .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.video-js.vjs-spatial-navigation-enabled .vjs-button:focus {
  outline: 0.0625em solid white;
  box-shadow: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog>* {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content>* {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F;
}

.vjs-menu li.vjs-selected .vjs-svg-icon,
.vjs-menu li.vjs-selected:focus .vjs-svg-icon,
.vjs-menu li.vjs-selected:hover .vjs-svg-icon,
.js-focus-visible .vjs-menu li.vjs-selected:hover .vjs-svg-icon {
  fill: #000000;
}

.video-js .vjs-menu *:not(.vjs-selected):focus:not(:focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
  background: none;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-pip-window .vjs-menu-button-popup .vjs-menu {
  left: unset;
  right: 1em;
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.video-js.vjs-spatial-navigation-enabled .vjs-control-bar {
  gap: 1px;
}

.video-js:not(.vjs-controls-disabled, .vjs-using-native-controls, .vjs-error) .vjs-control-bar.vjs-lock-showing {
  display: flex !important;
}

.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.video-js .vjs-control.vjs-visible-text {
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-button>.vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-button>.vjs-icon-placeholder {
  display: block;
}

.vjs-button>.vjs-svg-icon {
  display: inline-block;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js *:not(.vjs-visible-text)>.vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}

.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  line-height: 0.35em;
  z-index: 1;
}

.vjs-svg-icons-enabled .vjs-play-progress:before {
  content: none !important;
}

.vjs-play-progress .vjs-svg-icon {
  position: absolute;
  top: -0.35em;
  right: -0.4em;
  width: 0.9em;
  height: 0.9em;
  pointer-events: none;
  line-height: 0.15em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari, and Chrome 53 */
  -webkit-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  -moz-user-select: none;
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js.vjs-spatial-navigation-enabled .vjs-slider:focus {
  outline: 0.0625em solid white;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}

.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,
.video-js .vjs-volume-panel:active .vjs-volume-control,
.video-js .vjs-volume-panel:focus .vjs-volume-control,
.video-js .vjs-volume-panel .vjs-volume-control:active,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}

.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
  z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}

.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
  z-index: 1;
}

.vjs-svg-icons-enabled .vjs-volume-level:before {
  content: none;
}

.vjs-volume-level .vjs-svg-icon {
  position: absolute;
  width: 0.9em;
  height: 0.9em;
  pointer-events: none;
  z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}

.vjs-slider-horizontal .vjs-volume-level:before {
  line-height: 0.35em;
  right: -0.5em;
}

.vjs-slider-horizontal .vjs-volume-level .vjs-svg-icon {
  right: -0.3em;
  transform: translateY(-50%);
}

.vjs-slider-vertical .vjs-volume-level .vjs-svg-icon {
  top: -0.55em;
  transform: translateX(-50%);
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
  font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
  width: 1px;
  height: 100%;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.vjs-mouse-display .vjs-volume-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster,
.vjs-using-native-controls .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster,
.vjs-has-started.vjs-audio-poster-mode .vjs-poster,
.vjs-pip-container.vjs-has-started .vjs-poster {
  display: block;
}

.vjs-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}

.vjs-svg-icons-enabled .vjs-seek-to-live-control {
  line-height: 0;
}

.vjs-seek-to-live-control .vjs-svg-icon {
  width: 1em;
  height: 1em;
  pointer-events: none;
  fill: #888888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-svg-icon {
  fill: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control,
.vjs-live .vjs-time-divider,
.video-js .vjs-current-time,
.video-js .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.vjs-error .vjs-text-track-display {
  display: none;
}

.video-js.vjs-controls-disabled .vjs-text-track-display,
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js.vjs-force-center-align-cues .vjs-text-track-cue {
  text-align: center !important;
  width: 80% !important;
}

.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control,
.vjs-pip-window .vjs-picture-in-picture-control {
  display: none;
}

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}

.video-js.vjs-audio-only-mode .vjs-fullscreen-control,
.vjs-pip-window .vjs-fullscreen-control {
  display: none;
}

.vjs-playback-rate>.vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  text-align: left;
  border: 0.6em solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-error .vjs-loading-spinner {
  display: none;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: rgb(255, 255, 255);
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: rgb(255, 255, 255);
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}

@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }

  20% {
    border-top-color: #73859f;
  }

  35% {
    border-top-color: white;
  }

  60% {
    border-top-color: #73859f;
  }

  100% {
    border-top-color: #73859f;
  }
}

.video-js.vjs-audio-only-mode .vjs-captions-button {
  display: none;
}

.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js.vjs-audio-only-mode .vjs-descriptions-button {
  display: none;
}

.vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-svg-icon {
  width: 1.5em;
  height: 1.5em;
}

.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10c";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-audio-only-mode .vjs-subs-caps-button {
  display: none;
}

.video-js .vjs-audio-button+.vjs-menu .vjs-description-menu-item .vjs-menu-item-text .vjs-icon-placeholder,
.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button+.vjs-menu .vjs-description-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before,
.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f12e";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control,
.video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control,
.video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
  display: none;
}

.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover {
  width: auto;
  width: initial;
}

.video-js.vjs-layout-x-small .vjs-progress-control,
.video-js.vjs-layout-tiny .vjs-progress-control {
  display: none;
}

.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-spatial-navigation-enabled .vjs-modal-dialog.vjs-text-track-settings {
  height: 80%;
}

.vjs-error .vjs-text-track-settings {
  display: none;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }

  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }

  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }

  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}

.vjs-text-track-settings select {
  font-size: inherit;
}

.vjs-track-setting>select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
  margin: 10px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
  padding: 0 0.6em 0.8em;
}

.vjs-text-track-settings fieldset span>select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
}

.vjs-text-track-settings .vjs-label {
  margin: 0 0.5em 0.5em 0;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

.vjs-title-bar {
  background: rgba(0, 0, 0, 0.9);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
  font-size: 1.2em;
  line-height: 1.5;
  transition: opacity 0.1s;
  padding: 0.666em 1.333em 4em;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.vjs-error .vjs-title-bar {
  display: none;
}

.vjs-title-bar-title,
.vjs-title-bar-description {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vjs-title-bar-title {
  font-weight: bold;
  margin-bottom: 0.333em;
}

.vjs-playing.vjs-user-inactive .vjs-title-bar {
  opacity: 0;
  transition: opacity 1s;
}

.video-js .vjs-skip-forward-5 {
  cursor: pointer;
}

.video-js .vjs-skip-forward-10 {
  cursor: pointer;
}

.video-js .vjs-skip-forward-30 {
  cursor: pointer;
}

.video-js .vjs-skip-backward-5 {
  cursor: pointer;
}

.video-js .vjs-skip-backward-10 {
  cursor: pointer;
}

.video-js .vjs-skip-backward-30 {
  cursor: pointer;
}

@media print {
  .video-js>*:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}

.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}

.video-js *:focus:not(:focus-visible) {
  outline: none;
}
/* End */


/* Start:/local/templates/gikom/css/style.css?1738151121236322*/
@charset "UTF-8";

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("/local/templates/gikom/css/../fonts/inter-bold.woff2") format("woff2"), url("/local/templates/gikom/css/../fonts/inter-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("/local/templates/gikom/css/../fonts/inter-medium.woff2") format("woff2"), url("/local/templates/gikom/css/../fonts/inter-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("/local/templates/gikom/css/../fonts/inter-regular.woff2") format("woff2"), url("/local/templates/gikom/css/../fonts/inter-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  font-display: swap;
  src: url("/local/templates/gikom/css/../fonts/inter-semibold.woff2") format("woff2"), url("/local/templates/gikom/css/../fonts/inter-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("/local/templates/gikom/css/../fonts/jost-bold.woff2") format("woff2"), url("/local/templates/gikom/css/../fonts/jost-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("/local/templates/gikom/css/../fonts/jost-semibold.woff2") format("woff2"), url("/local/templates/gikom/css/../fonts/jost-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("/local/templates/gikom/css/../fonts/jost-medium.woff2") format("woff2"), url("/local/templates/gikom/css/../fonts/jost-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: PGBeauSansPro;
  font-display: swap;
  src: url("/local/templates/gikom/css/../fonts/pfbeausanspro-bold.woff2") format("woff2"), url("/local/templates/gikom/css/../fonts/pfbeausanspro-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: PGBeauSansPro;
  font-display: swap;
  src: url("/local/templates/gikom/css/../fonts/pfbeausanspro-semibold.woff2") format("woff2"), url("/local/templates/gikom/css/../fonts/pfbeausanspro-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: PGBeauSansPro;
  font-display: swap;
  src: url("/local/templates/gikom/css/../fonts/pfbeausanspro-regular.woff2") format("woff2"), url("/local/templates/gikom/css/../fonts/pfbeausanspro-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Обнуление стилей */

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100% !important;
  height: 100% !important;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter";
  font-size: 16px;
  background-color: #f6f6f6;
}

body.main {
  background-color: #fff;
}

input,
button,
textarea {
  font-family: "Inter";
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

p,
ul {
  margin: 0;
}

.lock {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

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

.wrapper>main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper>* {
  min-width: 0;
}

.container {
  max-width: 1280px;
  margin: 0px auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.container.type-2 {
  max-width: 1070px;
}

[class*=ibg] {
  position: relative;
}

[class*=ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.button {
  color: #fff;
  display: inline-block;
  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;
  text-align: center;
  font-family: Jost;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  height: 60px;
  border-radius: 12px;
  background: #99242c;
  position: relative;
  overflow: hidden;
  padding: 0 30px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#99242c), to(#e65e41));
  background: linear-gradient(90deg, #99242c 0%, #e65e41 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.button span {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.button:active {
  background: #62171c;
}

.button:active::before {
  opacity: 0;
}

.button.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.button.small {
  height: 44px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: normal;
}

.button.white {
  background-color: #fff;
  height: 58px;
  color: #99242c;
  font-size: 14px;
  text-transform: none;
  font-family: Inter;
  padding: 10px;
}

.button.white::before {
  content: "";
  display: none;
}

.button.white:active {
  color: rgba(153, 36, 44, 0.4);
}

.button.white.disabled {
  background-color: #fdfdfd;
  opacity: 0.4;
}

.button.black {
  height: 50px;
  color: #fff;
  font-family: Jost;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28px;
  background: #313131;
}

.button.black::before {
  display: none;
}

.button.black:active {
  background-color: #313131;
  color: rgba(255, 255, 255, 0.6);
}

.button.black.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.button.download {
  padding: 0 5px;
}

.button.download span {
  position: relative;
  padding-left: 35px;
}

.button.download span::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Cpath d='M6.27957 20.75H18.7196C19.0664 20.7359 19.4069 20.6535 19.7219 20.5075C20.0368 20.3616 20.3198 20.155 20.5548 19.8996C20.7898 19.6442 20.9721 19.3449 21.0913 19.019C21.2105 18.693 21.2643 18.3468 21.2496 18V15C21.2496 14.8011 21.1706 14.6103 21.0299 14.4697C20.8892 14.329 20.6985 14.25 20.4996 14.25C20.3007 14.25 20.1099 14.329 19.9692 14.4697C19.8286 14.6103 19.7496 14.8011 19.7496 15V18C19.7754 18.2969 19.6859 18.5924 19.4997 18.8251C19.3135 19.0579 19.0449 19.21 18.7496 19.25H6.27957C5.98422 19.21 5.71559 19.0579 5.5294 18.8251C5.34321 18.5924 5.25375 18.2969 5.27957 18V15C5.27957 14.8011 5.20055 14.6103 5.0599 14.4697C4.91924 14.329 4.72848 14.25 4.52957 14.25C4.33066 14.25 4.13989 14.329 3.99924 14.4697C3.85859 14.6103 3.77957 14.8011 3.77957 15V18C3.74962 18.6954 3.99549 19.3744 4.46368 19.8894C4.93187 20.4045 5.5845 20.7137 6.27957 20.75Z' fill='%23F6F6F6'/%3E%3Cpath d='M12.4992 15.7501C12.5977 15.7506 12.6954 15.7313 12.7864 15.6936C12.8774 15.6558 12.9599 15.6002 13.0292 15.5301L17.0292 11.5301C17.1617 11.3879 17.2338 11.1999 17.2304 11.0056C17.2269 10.8113 17.1482 10.6259 17.0108 10.4885C16.8734 10.3511 16.688 10.2723 16.4937 10.2689C16.2994 10.2655 16.1114 10.3376 15.9692 10.4701L12.4992 13.9401L9.02918 10.4701C8.887 10.3376 8.69896 10.2655 8.50465 10.2689C8.31035 10.2723 8.12497 10.3511 7.98756 10.4885C7.85014 10.6259 7.77143 10.8113 7.768 11.0056C7.76457 11.1999 7.8367 11.3879 7.96918 11.5301L11.9692 15.5301C12.0384 15.6002 12.121 15.6558 12.212 15.6936C12.303 15.7313 12.4006 15.7506 12.4992 15.7501Z' fill='%23F6F6F6'/%3E%3Cpath d='M12.5 15.75C12.6981 15.7474 12.8874 15.6676 13.0275 15.5275C13.1676 15.3874 13.2474 15.1981 13.25 15V4C13.25 3.80109 13.171 3.61032 13.0303 3.46967C12.8897 3.32902 12.6989 3.25 12.5 3.25C12.3011 3.25 12.1103 3.32902 11.9697 3.46967C11.829 3.61032 11.75 3.80109 11.75 4V15C11.7526 15.1981 11.8324 15.3874 11.9725 15.5275C12.1126 15.6676 12.3019 15.7474 12.5 15.75Z' fill='%23F6F6F6'/%3E%3C/svg%3E");
  position: absolute;
  width: 25px;
  height: 24px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
}

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

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

.flex-box.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-box.align-items-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-box.align-items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-box.align-items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-box.align-self-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.flex-box.align-self-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.flex-box.justify-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-box.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-box.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-box.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-box.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-flow: row wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.grid-box {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

.grid-box.col-2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.grid-box.col-3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.grid-box.col-4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.margin-bottom-row {
  margin-bottom: 120px;
}

.head-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 45px;
}

.title {
  color: #707070;
  font-family: Jost;
  font-size: 40px;
  font-weight: 500;
  line-height: 112.5%;
  text-transform: uppercase;
}

.title.black {
  color: #313131;
}

.title-additional {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.link {
  display: inline-block;
  color: #313131;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.16px;
  position: relative;
  padding-right: 34px;
}

.link::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13 8L17 12L13 16M7 8L11 12L7 16' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #707070;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}

/* Form */

.form-row {
  margin-top: 50px;
}

.form-group {
  margin-bottom: 10px;
  position: relative;
}

.form-group.has-error .form-control {
  border-color: #f22222;
}

.form-group.has-error .help-block {
  opacity: 1;
  visibility: visible;
}

.form-group.has-success .form-control {
  border-color: #08d326;
}

.form-group.has-success .help-block {
  opacity: 0;
  visibility: hidden;
}

.form-group input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.form-group textarea {
  background-color: #e1e1e1;
  width: 100%;
  border-radius: 12px;
  padding: 24px;
  resize: none;
  height: 150px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.16px;
  border: 1px solid transparent;
  -webkit-transition: border 0.3s ease 0s;
  transition: border 0.3s ease 0s;
}

.form-group textarea::-webkit-input-placeholder {
  color: #bdbdbd;
}

.form-group textarea::-moz-placeholder {
  color: #bdbdbd;
}

.form-group textarea:-ms-input-placeholder {
  color: #bdbdbd;
}

.form-group textarea::-ms-input-placeholder {
  color: #bdbdbd;
}

.form-group textarea::placeholder {
  color: #bdbdbd;
}

.form-group textarea:focus {
  border-color: #707070;
  background-color: #fdfdfd !important;
}

.form-group.textarea {
  position: relative;
}

.form-group.textarea::before {
  content: "";
  position: absolute;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11' fill='none'%3E%3Cline x1='0.75' y1='-0.75' x2='12.8854' y2='-0.75' transform='matrix(-0.679811 0.733388 -0.810696 -0.585468 9.26953 0)' stroke='%23E1E1E1' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='0.75' y1='-0.75' x2='8.34024' y2='-0.75' transform='matrix(-0.679811 0.733388 -0.810696 -0.585468 10 3.22998)' stroke='%23E1E1E1' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  right: 6px;
  bottom: 8px;
  width: 11px;
  height: 11px;
  background-color: #707070;
}

.form-group .count {
  position: absolute;
  right: 60px;
  bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #99242c;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.16px;
}

.form-group .count__max {
  color: #bdbdbd;
}

.control-file {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 12px 0;
  left: 50%;
  gap: 17px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-left: 7px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

.control-file::before {
  content: "";
  display: block;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='24' viewBox='0 0 10 24' fill='none'%3E%3Cpath d='M3.6125 23.2496C1.625 23.0996 0.125 21.3746 0.125 19.3496V5.73705C0.125 3.11205 2.15 0.862051 4.7375 0.712051C7.55 0.599551 9.875 2.84955 9.875 5.62455V15.3746C9.875 15.7871 9.5375 16.1246 9.125 16.1246C8.7125 16.1246 8.375 15.7871 8.375 15.3746V5.73705C8.375 3.93705 7.025 2.36205 5.225 2.24955C3.275 2.13705 1.625 3.67455 1.625 5.62455V19.4246C1.625 20.5496 2.45 21.5996 3.575 21.7496C4.9625 21.9371 6.125 20.8496 6.125 19.5371V7.94955C6.125 7.38705 5.75 6.89955 5.225 6.78705C4.5125 6.63705 3.875 7.19955 3.875 7.87455V15.3746C3.875 15.7871 3.5375 16.1246 3.125 16.1246C2.7125 16.1246 2.375 15.7871 2.375 15.3746V7.94955C2.375 6.59955 3.3125 5.43705 4.6625 5.24955C6.275 5.06205 7.625 6.29955 7.625 7.83705V19.4621C7.625 21.6371 5.7875 23.3996 3.6125 23.2496Z' fill='%23313131'/%3E%3C/svg%3E");
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
  width: 10px;
  height: 24px;
  background: #313131;
}

.control-label {
  color: #bdbdbd;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
  cursor: text;
}

.control-label .asterisk {
  color: #99242c;
  display: inline-block;
}

.control-label:hover+.form-control {
  border-color: #707070;
  background-color: #fdfdfd !important;
}

.form-control {
  font-size: 16px;
  width: 100%;
  height: 58px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #e1e1e1;
  padding: 0 30px;
  -webkit-transition: border-color 0.3s ease 0s, background-color 0.3s ease 0s;
  transition: border-color 0.3s ease 0s, background-color 0.3s ease 0s;
}

.form-control:focus {
  border-color: #707070;
  background-color: #fdfdfd !important;
}

.submit-button {
  width: 100%;
  margin-bottom: 10px;
}

.form-checkbox {
  cursor: pointer;
  color: #707070;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.12px;
  text-align: center;
  min-height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.form-checkbox a {
  color: #707070;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.form-checkbox span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 44px;
}

.form-checkbox span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 2px solid #707070;
  border-radius: 3px;
  opacity: 0.6;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.form-checkbox span::after {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.3693 0.195265C11.7217 0.491285 11.7674 1.01694 11.4714 1.36934L4.47142 9.70266C4.31628 9.88735 4.08873 9.99576 3.84756 9.99988C3.6064 10.004 3.37528 9.90342 3.21392 9.72414L0.213928 6.39081C-0.0939536 6.04872 -0.0662217 5.52181 0.275869 5.21393C0.61796 4.90605 1.14487 4.93378 1.45275 5.27587L3.81165 7.89687L10.1952 0.297359C10.4913 -0.0550467 11.0169 -0.100756 11.3693 0.195265Z' fill='%2399242C'/%3E%3C/svg%3E");
  position: absolute;
  width: 12px;
  height: 10px;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%) scale(0);
  -ms-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  background-color: #707070;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.form-checkbox input {
  display: none;
}

.form-checkbox input:checked+span::after {
  -webkit-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.form-checkbox input:checked+span::before {
  opacity: 1;
}

.help-block {
  position: absolute;
  top: -33px;
  left: 10px;
  display: block;
  color: #f22222;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  background: transparent;
  border-radius: 6px;
  background: #fcd3d3;
  padding: 16px 17px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s;
}

.help-block::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='11' viewBox='0 0 14 11' fill='none'%3E%3Cpath d='M5.32274 9.41769C6.11134 10.6318 7.88866 10.6318 8.67726 9.4177L12.7876 3.08941C13.6518 1.75887 12.6969 0 11.1103 0H2.88965C1.30308 0 0.348189 1.75887 1.2124 3.08941L5.32274 9.41769Z' fill='%23FCD3D3'/%3E%3C/svg%3E");
  position: absolute;
  width: 14px;
  height: 11px;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fcd3d3;
}

/* ------------------------- */

h1 {
  color: #313131;
  font-family: Jost;
  font-size: 45px;
  font-weight: 600;
  line-height: 106.667%;
  letter-spacing: -0.45px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h2 {
  color: #313131;
  font-family: Jost;
  font-size: 40px;
  font-weight: 500;
  line-height: 112.5%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h3 {
  color: #313131;
  font-family: Jost;
  font-size: 28px;
  font-weight: 700;
  line-height: 107.143%;
  letter-spacing: 0.56px;
  margin-bottom: 20px;
}

h4,
h5,
h6 {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.content {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
}

.content *:last-child {
  margin-bottom: 0;
}

.content hr {
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  margin: 20px 0;
}

.content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
  margin-bottom: 25px;
}

.content ul {
  margin-bottom: 20px;
}

.content ul li {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
  position: relative;
  padding-left: 15px;
}

.content ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 10px;
  left: 1px;
  border-radius: 50%;
  background-color: #313131;
}

.content ol {
  margin-bottom: 20px;
  margin-left: 20px;
}

.content ol li {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
  position: relative;
}

.content a {
  color: #313131;
  font-weight: 700;
}

/* Arrows */

.slick-arrow {
  position: absolute;
  font-size: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 2px rgba(194, 192, 192, 0.14);
  box-shadow: 0px 4px 4px 2px rgba(194, 192, 192, 0.14);
  z-index: 2;
}

.slick-arrow::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #707070;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.slick-prev::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg%3E%3Cpath d='M19 12H5M5 12L11 18M5 12L11 6' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
}

.slick-next::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12H19M19 12L13 18M19 12L13 6' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.slick .slick-arrow {
  position: absolute;
  font-size: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #707070;
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 2;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}

.slick .slick-arrow::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.slick .slick-arrow.slick-disabled {
  background: #c0c0c0;
  cursor: default;
}

.slick .slick-prev::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M11.0794 19.1343C11.3487 18.8649 11.5 18.4995 11.5 18.1186C11.5 17.7376 11.3487 17.3723 11.0794 17.1028L3.96782 9.9913L11.0794 2.87976C11.3411 2.6088 11.4859 2.24589 11.4826 1.8692C11.4793 1.49251 11.3282 1.13217 11.0619 0.865803C10.7955 0.599432 10.4352 0.448339 10.0585 0.445066C9.68177 0.441793 9.31886 0.586601 9.0479 0.848303L0.920639 8.97557C0.651304 9.24499 0.5 9.61034 0.5 9.9913C0.5 10.3723 0.651304 10.7376 0.920639 11.007L9.0479 19.1343C9.31732 19.4036 9.68268 19.5549 10.0636 19.5549C10.4446 19.5549 10.8099 19.4036 11.0794 19.1343Z' fill='white'/%3E%3C/svg%3E");
  left: calc(50% - 2px);
}

.slick .slick-next::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M0.920639 19.1343C0.651304 18.8649 0.5 18.4995 0.5 18.1186C0.5 17.7376 0.651304 17.3723 0.920639 17.1028L8.03218 9.9913L0.920639 2.87976C0.658937 2.6088 0.514129 2.24589 0.517402 1.8692C0.520676 1.49251 0.671768 1.13217 0.93814 0.865803C1.20451 0.599432 1.56485 0.448339 1.94154 0.445066C2.31823 0.441793 2.68114 0.586601 2.9521 0.848303L11.0794 8.97557C11.3487 9.24499 11.5 9.61034 11.5 9.9913C11.5 10.3723 11.3487 10.7376 11.0794 11.007L2.9521 19.1343C2.68268 19.4036 2.31732 19.5549 1.93637 19.5549C1.55541 19.5549 1.19005 19.4036 0.920639 19.1343Z' fill='white'/%3E%3C/svg%3E");
  left: calc(50% + 2px);
}

/* ------------------------- */

/* ------------------------- */

/* Fancybox */

.fancybox__caption {
  padding: 10px;
  text-align: center;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
}

/* ------------------------- */

/* Header */

.header {
  width: 100%;
  position: relative;
  z-index: 5;
}

.header.fixed {
  -webkit-animation: headerFixed 0.5s ease;
  animation: headerFixed 0.5s ease;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header__row {
 /* max-width: 1280px;*/
  padding: 0 10px;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 30px 20px 30px;
  min-height: 70px;
}

.header-top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.header-top__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  color: #707070;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
}

.header-top__item svg {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.header-top__item.time {
  min-width: 127px;
}

.header-top__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  max-width: 190px;
}


.header-top__phone svg {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.header-top__phone .header-top__item {
  display: inline-block;
}

.header-top__phone .header-top__item:not(:last-child) {
  margin-bottom: 10px;
}

.header-top__phone .header-top__item:last-child {
  letter-spacing: 0.12px;
}

.header-top__phone a {
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  color: #707070;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
}

.header-top__phone a:not(:last-child) {
  margin-bottom: 10px;
}

.header-top__phone a:last-child {
  letter-spacing: 0.12px;
}

.header-top__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.header-top__social a {
  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;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  opacity: 0.5;
}

.header-top__social a svg {
  max-width: 100%;
}

.header-top__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
}

.header-top__local {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  color: #707070;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  white-space: nowrap;
}

.header-top__local svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  max-width: 100%;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.header-lang {
  position: relative;
  text-transform: uppercase;
}

.header-lang.open .header-lang__title {
  opacity: 1;
}

.header-lang.open .header-lang__title::before {
  -webkit-transform: translateY(-50%) scaleY(-1);
  -ms-transform: translateY(-50%) scaleY(-1);
  transform: translateY(-50%) scaleY(-1);
}

.header-lang.open .header-lang__select {
  opacity: 1;
  visibility: visible;
}

.header-lang__title {
  color: #99242c;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  position: relative;
  opacity: 0.6;
  padding-right: 28px;
  min-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.header-lang__title::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 11L12 14L9 11' stroke='%2399242C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #99242c;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.header-lang__title.active {
  opacity: 1;
}

.header-lang__select {
  position: absolute;
  top: 100%;
  right: 0;
  border-radius: 0px 0px 12px 12px;
  background: #fefefe;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(177, 177, 177, 0.12);
  box-shadow: 0px 4px 5px 0px rgba(177, 177, 177, 0.12);
  padding: 20px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}

.header-lang__select li {
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
}

.header-lang__select li:not(:last-child) {
  margin-bottom: 14px;
}

.header-lang__select li a {
  color: #313131;
}

.header-lang__select li span {
  cursor: default;
  display: inline-block;
  color: #9e9fa1;
}

.header-bottom {
  border-radius: 12px;
  background: #fff;
  padding: 10px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  min-height: 75px;
}

.header-bottom.search-open {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.header-bottom.search-open .header-bottom__left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 73px;
}

.header-bottom__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-bottom__logo img {
  max-width: 126px;
  width: 100%;
}

.header-bottom__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.header-bottom__menu ul li {
  position: relative;
}

.header-bottom__menu ul li a {
  padding: 14px 0;
  color: #333333;
  font-size: 15px;
  font-weight: 500;
}

.header-bottom__menu ul li ul {
  position: absolute;
  width: 245px;
  top: calc(100% + 14px);
  left: -23.5px;
  border-radius: 0px 0px 12px 12px;
  background: #fefefe;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(177, 177, 177, 0.12);
  box-shadow: 0px 4px 5px 0px rgba(177, 177, 177, 0.12);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  z-index: 2;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.header-bottom__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.header-bottom__btn {
  width: 162px;
}

.header-search__open {
  cursor: pointer;
  width: 44px;
  height: 44px;
  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;
  border-radius: 12px;
  opacity: 0.5;
  background: rgba(112, 112, 112, 0.12);
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.header-search__open svg {
  width: 24px;
  height: 24px;
}

.header-search__open:hover {
  opacity: 1;
}

.header-search__close {
  display: none;
  cursor: pointer;
  color: #313131;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  white-space: nowrap;
}

.header-search__row {
  display: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.header-search__row form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  background: #f5e9ea;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}

.header-search__row.focus form {
  background: #313131;
}

.header-search__row.focus .header-search__btn {
  opacity: 0.7;
}

.header-search__row.focus .header-search__btn::before {
  background-color: #fff;
}

.header-search__input {
  margin: 2px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  padding: 0 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header-search__input::-webkit-input-placeholder {
  color: rgba(49, 49, 49, 0.5);
}

.header-search__input::-moz-placeholder {
  color: rgba(49, 49, 49, 0.5);
}

.header-search__input:-ms-input-placeholder {
  color: rgba(49, 49, 49, 0.5);
}

.header-search__input::-ms-input-placeholder {
  color: rgba(49, 49, 49, 0.5);
}

.header-search__input::placeholder {
  color: rgba(49, 49, 49, 0.5);
}

.header-search__btn {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 10px;
  position: relative;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.header-search__btn::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cg opacity='1'%3E%3Cpath d='M15 15.5L21 21.5M10 17.5C6.13401 17.5 3 14.366 3 10.5C3 6.63401 6.13401 3.5 10 3.5C13.866 3.5 17 6.63401 17 10.5C17 14.366 13.866 17.5 10 17.5Z' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  width: 24px;
  height: 25px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #333333;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.header-search__clear {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 54px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}

.header-search__clear.active {
  opacity: 0.7;
  visibility: visible;
}

.header-search__clear svg {
  width: 24px;
  height: 24px;
}
.header-search-big__row {
  display: none;
  flex: 1 1 auto;
  position: relative;
  padding: 2px 44px 2px 2px;
  border-radius: 12px;
  background: #99242C;
}
.header-search-big__input {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  padding: 10px 20px;
  background: #FFFFFF;
  border-radius: 10px;
}
.header-search-big__btn {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  width: 24px;
  height: 24px; 
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cpath d='M15 15.5L21 21.5M10 17.5C6.13401 17.5 3 14.366 3 10.5C3 6.63401 6.13401 3.5 10 3.5C13.866 3.5 17 6.63401 17 10.5C17 14.366 13.866 17.5 10 17.5Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
}
.header-search-big__clear {
  display: none;
}
.header-search__hints {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 33px;
  left: 3px;
  border-radius: 12px;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  padding: 14px;
}

.header-search__hints ul li a {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

.header-search__hints ul li:not(:last-child) {
  margin-bottom: 10px;
}

.header-burger {
  display: none;
}

.header-mobile {
  display: none;
  padding: 20px 50px;
}

.header-mobile__menu ul li {
  position: relative;
}

.header-mobile__menu ul li.active span::before {
  -webkit-transform: translate(-50%, -50%) scaleY(-1);
  -ms-transform: translate(-50%, -50%) scaleY(-1);
  transform: translate(-50%, -50%) scaleY(-1);
}

.header-mobile__menu ul li:not(:last-child) {
  margin-bottom: 6px;
}

.header-mobile__menu ul li span {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
}

.header-mobile__menu ul li span::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 11L12 14L9 11' stroke='%2399242C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #99242c;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.header-mobile__menu ul li a {
  display: inline-block;
  color: #313131;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
}

.header-mobile__menu ul li ul {
  padding-left: 40px;
  display: none;
}

.header-mobile__btn {
  display: none;
}

.header-mobile__contacts {
  display: none;
}

.header-mobile__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  color: #707070;
  font-size: 13px;
  font-weight: 500;
  line-height: 100%;
}

.header-mobile__mail svg {
  width: 24px;
  height: 24px;
}

.header-mobile__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

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

.header-mobile__phone a {
  display: inline-block;
  color: #707070;
  font-size: 13px;
  font-weight: 500;
  line-height: 100%;
}

.header-mobile__phone a:last-child {
  letter-spacing: 0.12px;
}

.header-mobile__phone svg {
  width: 24px;
  height: 24px;
}

.header-mobile__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #707070;
  font-size: 13px;
  font-weight: 500;
  line-height: 100%;
  gap: 6px;
}

.header-mobile__time svg {
  width: 24px;
  height: 24px;
}

.header-mobile__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.header-mobile__social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.header-mobile__social a svg {
  max-width: 100%;
  max-height: 100%;
}

.header-bg {
  opacity: 0;
  visibility: hidden;
}

/* ------------------------- */

/* Local */

.local {
  padding: 40px;
}

.local__title {
  color: #313131;
  font-size: 20px;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: 0.2px;
  margin-bottom: 40px;
  text-align: center;
}

.local ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.local ul li a {
  color: #707070;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
}

/* ------------------------- */

/* Application */

.application {
  padding: 50px;
}

.application__title {
  color: #333333;
  text-align: center;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.application__text {
  text-align: center;
  color: #707070;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
  opacity: 0.65;
  max-width: 290px;
  margin: 0px auto;
}

.application__sent {
  color: #707070;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
  opacity: 0.65;
}

.application__ok {
  color: #fff;
  font-family: Jost;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  border-radius: 12px;
  background: #313131;
  padding: 20px 30px;
  display: block;
  width: 100%;
  max-width: 87px;
  margin: 0px auto;
  margin-top: 20px;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}

/* ------------------------- */

/* Breadcrumbs */

.breadcrumbs {
  margin: 20px 0 60px 0;
}

.breadcrumbs__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 44px;
  -moz-column-gap: 44px;
  column-gap: 44px;
  row-gap: 10px;
  min-height: 24px;
}

.breadcrumbs__item {
  display: inline;
  position: relative;
}

.breadcrumbs__item:not(:last-child)::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M11 9L14 12L11 15' stroke='%2399242C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: -34px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #99242c;
}

.breadcrumbs__item a {
  color: #707070;
  opacity: 0.6;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
}

.breadcrumbs__item span {
  color: #313131;
  font-size: 14px;
  font-weight: 400;
}

.breadcrumbs__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.breadcrumbs__info h1 {
  color: #707070;
  font-family: Jost;
  font-size: 40px;
  font-weight: 500;
  line-height: 112.5%;
  text-transform: uppercase;
  margin: 0;
}

.breadcrumbs__back {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  height: 40px;
  position: relative;
  border-radius: 12px;
  background: #fdfdfd;
  -webkit-box-shadow: 0px 4px 4px 2px rgba(194, 192, 192, 0.14);
  box-shadow: 0px 4px 4px 2px rgba(194, 192, 192, 0.14);
}

.breadcrumbs__back::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19 12H5M5 12L11 18M5 12L11 6' stroke='%239E9FA1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #9e9fa1;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

/* ------------------------- */

/* Modal */

.hystmodal__wrap {
  padding: 0 20px;
}

.hystmodal__wrap .alert.alert-danger {
  margin-top: 10px;
  text-align: center;
}

.hystmodal__opened {
  position: static !important;
}

.hystmodal__window {
  width: 580px;
  border-radius: 12px;
}

.hystmodal__window.sent {
  max-width: 436px;
}

.hystmodal__window.vacancy {
  width: 100%;
  max-width: 486px;
}

.hystmodal__window.vacancy .application {
  padding: 60px;
}

.hystmodal__window.vacancy .application__title {
  margin-bottom: 20px;
}

.hystmodal__window.vacancy .application__text {
  max-width: 100%;
}

.hystmodal__window.vacancy .application .form-row {
  margin-top: 44px;
}

.hystmodal__window.vacancy .application .button {
  margin-top: 44px;
}

.hystmodal__window.vacancy .form-control {
  background: #F6F6F6;
}

.hystmodal__close {
  font-size: 0;
  background-image: none;
  width: 24px;
  height: 24px;
  top: 16px;
  right: 16px;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  outline: none !important;
}

.hystmodal__close::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg opacity='1'%3E%3Cpath d='M16.066 8.99502C16.1377 8.92587 16.1948 8.84314 16.2342 8.75165C16.2735 8.66017 16.2943 8.56176 16.2952 8.46218C16.2961 8.3626 16.2772 8.26383 16.2395 8.17164C16.2018 8.07945 16.1462 7.99568 16.0758 7.92523C16.0054 7.85478 15.9217 7.79905 15.8295 7.7613C15.7374 7.72354 15.6386 7.70452 15.5391 7.70534C15.4395 7.70616 15.341 7.7268 15.2495 7.76606C15.158 7.80532 15.0752 7.86242 15.006 7.93402L12 10.939L8.995 7.93402C8.92634 7.86033 8.84354 7.80123 8.75154 7.76024C8.65954 7.71925 8.56022 7.69721 8.45952 7.69543C8.35882 7.69365 8.25879 7.71218 8.1654 7.7499C8.07201 7.78762 7.98718 7.84376 7.91596 7.91498C7.84474 7.9862 7.7886 8.07103 7.75087 8.16442C7.71315 8.25781 7.69463 8.35784 7.69641 8.45854C7.69818 8.55925 7.72022 8.65856 7.76122 8.75056C7.80221 8.84256 7.86131 8.92536 7.935 8.99402L10.938 12L7.933 15.005C7.80052 15.1472 7.72839 15.3352 7.73182 15.5295C7.73525 15.7238 7.81396 15.9092 7.95138 16.0466C8.08879 16.1841 8.27417 16.2628 8.46847 16.2662C8.66278 16.2696 8.85082 16.1975 8.993 16.065L12 13.06L15.005 16.066C15.1472 16.1985 15.3352 16.2706 15.5295 16.2672C15.7238 16.2638 15.9092 16.1851 16.0466 16.0476C16.184 15.9102 16.2627 15.7248 16.2662 15.5305C16.2696 15.3362 16.1975 15.1482 16.065 15.006L13.062 12L16.066 8.99502Z' fill='%23313131'/%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #313131;
}

.hystmodal__window.vacancy .file-selectdialog {
  border: none !important;
  padding: 0;
  margin: 0;
  background: none !important;
  box-shadow: none !important;
}

.hystmodal__window.vacancy .file-selectdialog .file-placeholder {
  padding: 0;
  margin: 0;
}

.hystmodal__window.vacancy .file-selectdialog .file-placeholder .files-text {
  color: #000;
}

.hystmodal__window.vacancy .file-selectdialog .file-placeholder .load-indicator {
  background: linear-gradient(90deg, #99242c 0%, #e65e41 100%);
}

.hystmodal__window.vacancy .file-selectdialog .file-extended {
  padding: 0;
  margin: 0;
  height: 100%;
  position: relative;
  margin-top: 10px;
}

.hystmodal__window.vacancy .file-selectdialog .file-extended .file-selector {
  padding: 0;
  margin: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hystmodal__window.vacancy .file-selectdialog .file-extended .file-selector:hover {
  border: none;
}

.hystmodal__window.vacancy .file-selectdialog .file-extended .file-selector .webform-field-upload-notice {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 17px;
  padding-left: 7px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

.hystmodal__window.vacancy .file-selectdialog .file-extended .file-selector .webform-field-upload-notice::before {
  content: "";
  display: block;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='24' viewBox='0 0 10 24' fill='none'%3E%3Cpath d='M3.6125 23.2496C1.625 23.0996 0.125 21.3746 0.125 19.3496V5.73705C0.125 3.11205 2.15 0.862051 4.7375 0.712051C7.55 0.599551 9.875 2.84955 9.875 5.62455V15.3746C9.875 15.7871 9.5375 16.1246 9.125 16.1246C8.7125 16.1246 8.375 15.7871 8.375 15.3746V5.73705C8.375 3.93705 7.025 2.36205 5.225 2.24955C3.275 2.13705 1.625 3.67455 1.625 5.62455V19.4246C1.625 20.5496 2.45 21.5996 3.575 21.7496C4.9625 21.9371 6.125 20.8496 6.125 19.5371V7.94955C6.125 7.38705 5.75 6.89955 5.225 6.78705C4.5125 6.63705 3.875 7.19955 3.875 7.87455V15.3746C3.875 15.7871 3.5375 16.1246 3.125 16.1246C2.7125 16.1246 2.375 15.7871 2.375 15.3746V7.94955C2.375 6.59955 3.3125 5.43705 4.6625 5.24955C6.275 5.06205 7.625 6.29955 7.625 7.83705V19.4621C7.625 21.6371 5.7875 23.3996 3.6125 23.2496Z' fill='%23313131'/%3E%3C/svg%3E");
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
  width: 10px;
  height: 24px;
  background: #313131;
}

.hystmodal__window.vacancy .file-selectdialog .file-extended .file-selector .file-uploader {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}

.hystmodal__window.vacancy .file-selectdialog .file-extended .file-selector .file-uploader .file-fileUploader {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 0;
}

/* ------------------------- */

/* Main-block */

.main-block {
  margin-top: -85px;
  margin-bottom: 110px;
}

.main-block__video {
  position: relative;
  width: 100%;
  height: 608px;
}

.main-block__video img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px 12px 0px 0px;
}

.main-block__video video {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px 12px 0px 0px;
}

.main-block__body {
  padding-top: 35px;
  border-radius: 12px 12px 0px 0px;
  margin-top: -73px;
  position: relative;
  z-index: 2;
  background-color: #fdfdfd;
}

.main-block__body .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 352px;
  grid-template-columns: 1fr 352px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
}

.main-block__info {
  padding-left: 20px;
}

.main-block__title {
  display: inline-block;
  font-family: Jost;
  font-size: 45px;
  font-weight: 600;
  line-height: 106.667%;
  letter-spacing: -0.45px;
  text-transform: uppercase;
  background: linear-gradient(91deg, #d6d6d6 2.29%, #707070 99.5%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 750px;
  margin-bottom: 34px;
}

.main-block__text {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
}

.main-block__btn {
  padding-right: 20px;
}

.main-block__btn .button {
  width: 100%;
  margin-bottom: 9px;
}

/* ------------------------- */

/* Products-services */

.products-services {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ------------------------- */

/* Product-card  */

.product-card {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 16px;
}

.product-card__img {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.product-card__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.product-card__body {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  min-height: 67px;
}

.product-card__title {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 14px;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  line-height: 106.667%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card__arrow {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  height: 100%;
  position: relative;
  background-color: #99242c;
  border-radius: 12px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.product-card__arrow::before {
  content: "";
  position: absolute;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' viewBox='0 0 11 20' fill='none'%3E%3Cpath d='M0.420639 19.1343C0.151304 18.8649 0 18.4995 0 18.1186C0 17.7376 0.151304 17.3723 0.420639 17.1028L7.53218 9.9913L0.420639 2.87976C0.158937 2.6088 0.0141287 2.24589 0.0174017 1.8692C0.0206757 1.49251 0.171768 1.13217 0.43814 0.865803C0.704511 0.599432 1.06485 0.448339 1.44154 0.445066C1.81823 0.441793 2.18114 0.586601 2.4521 0.848303L10.5794 8.97557C10.8487 9.24499 11 9.61034 11 9.9913C11 10.3723 10.8487 10.7376 10.5794 11.007L2.4521 19.1343C2.18268 19.4036 1.81732 19.5549 1.43637 19.5549C1.05541 19.5549 0.690055 19.4036 0.420639 19.1343Z' fill='white'/%3E%3C/svg%3E");
  width: 11px;
  height: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
}

/* ------------------------- */

/* Service-card */

.service-card {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(49, 49, 49, 0.12);
  -webkit-box-shadow: 4px 4px 6px 3px rgba(148, 148, 148, 0.08);
  box-shadow: 4px 4px 6px 3px rgba(148, 148, 148, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 16px;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}

.service-card__img {
  position: absolute;
  width: 215px;
  height: 215px;
  top: 8px;
  left: 8px;
  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;
}

.service-card__img svg {
  max-width: 100%;
  max-height: 100%;
  fill: #99242c;
  opacity: 0.7;
  /* -webkit-transform: rotate(-18.352deg);
  -ms-transform: rotate(-18.352deg);
  transform: rotate(-18.352deg); */
  -webkit-transition: fill 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: fill 0.3s ease 0s, opacity 0.3s ease 0s;
}

.service-card__img svg path {
  fill: #99242c !important;
  -webkit-transition: fill 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: fill 0.3s ease 0s, opacity 0.3s ease 0s;
}

.service-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  min-height: 67px;
}

.service-card__left {
  background-color: #fff;
  padding: 18px 14px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.service-card__suptitle {
  color: #99242c;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.12px;
  margin-bottom: 4px;
}

.service-card__title {
  color: #707070;
  font-size: 15px;
  font-weight: 600;
  line-height: 106.667%;
}

.service-card__arrow {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  height: 100%;
  position: relative;
  background-color: #99242c;
  border-radius: 12px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.service-card__arrow::before {
  content: "";
  position: absolute;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' viewBox='0 0 11 20' fill='none'%3E%3Cpath d='M0.420639 19.1343C0.151304 18.8649 0 18.4995 0 18.1186C0 17.7376 0.151304 17.3723 0.420639 17.1028L7.53218 9.9913L0.420639 2.87976C0.158937 2.6088 0.0141287 2.24589 0.0174017 1.8692C0.0206757 1.49251 0.171768 1.13217 0.43814 0.865803C0.704511 0.599432 1.06485 0.448339 1.44154 0.445066C1.81823 0.441793 2.18114 0.586601 2.4521 0.848303L10.5794 8.97557C10.8487 9.24499 11 9.61034 11 9.9913C11 10.3723 10.8487 10.7376 10.5794 11.007L2.4521 19.1343C2.18268 19.4036 1.81732 19.5549 1.43637 19.5549C1.05541 19.5549 0.690055 19.4036 0.420639 19.1343Z' fill='white'/%3E%3C/svg%3E");
  width: 11px;
  height: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.service-card__description {
  color: #9e9fa1;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.12px;
  margin-top: 10px;
}

/* ------------------------- */

/* Numbers */

.numbers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 55px;
  -moz-column-gap: 55px;
  column-gap: 55px;
  row-gap: 40px;
}

.numbers__item {
  border-bottom: 1px solid rgba(153, 36, 44, 0.12);
  padding: 0px 12px 40px 12px;
}

.numbers__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 40px;
}

.numbers__value {
  color: #99242c;
  font-family: Jost;
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.numbers__title {
  color: #707070;
  font-family: Jost;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.numbers__info {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

/* ------------------------- */

/* Feedback */

.feedback {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  margin: 0px auto;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  background-color: #9e9fa1;
  overflow: hidden;
  border-radius: 12px;
}

.feedback__left {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
}

.feedback__title {
  position: relative;
  z-index: 2;
  color: #fdfdfd;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
}

.feedback__btn {
  position: relative;
  z-index: 2;
  max-width: 234px;
}

.feedback__img {
  position: absolute;
  bottom: 0;
  right: -162px;
}

.feedback__right {
  background-color: #e1e1e1;
  border-radius: 12px;
  padding: 38px 85px 20px 85px;
}

.feedback__right .form-row {
  margin-top: 45px;
}

.feedback__right .form-row .form-checkbox span::before {
  border-color: #707070;
}

.feedback__right .form-row .form-checkbox span::after {
  content: "";
  background-color: #707070;
}

.feedback__right .form-row .form-control {
  background-color: #f6f6f6;
}

.feedback__info {
  color: #333333;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding: 0 5px;
}

.feedback__text {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
  opacity: 0.65;
  padding: 0 5px;
}

/* ------------------------- */

/* Catalog */

.catalog {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ------------------------- */

/* SEO */

.seo {
  padding: 40px 0;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}

.seo .content *:first-child {
  margin-bottom: 45px;
}

/* ------------------------- */

/* Catalog-section */

.catalog-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 303px 1fr;
  grid-template-columns: 303px 1fr;
  gap: 15px;
}

.catalog-section__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-bottom: 10px;
}

.catalog-section__open {
  display: none;
}

/* ------------------------- */

/* Product-item */

.product-item {
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  min-height: 400px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-item__top {
  height: 243px;
  position: relative;
}

.product-item__arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 16px;
  right: 16px;
  border-radius: 12px;
  background: #99242c;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}

.product-item__arrow::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' viewBox='0 0 11 20' fill='none'%3E%3Cpath d='M0.420639 19.1343C0.151304 18.8649 0 18.4995 0 18.1186C0 17.7376 0.151304 17.3723 0.420639 17.1028L7.53218 9.9913L0.420639 2.87976C0.158937 2.6088 0.0141287 2.24589 0.0174017 1.8692C0.0206757 1.49251 0.171768 1.13217 0.43814 0.865803C0.704511 0.599432 1.06485 0.448339 1.44154 0.445066C1.81823 0.441793 2.18114 0.586601 2.4521 0.848303L10.5794 8.97557C10.8487 9.24499 11 9.61034 11 9.9913C11 10.3723 10.8487 10.7376 10.5794 11.007L2.4521 19.1343C2.18268 19.4036 1.81732 19.5549 1.43637 19.5549C1.05541 19.5549 0.690055 19.4036 0.420639 19.1343Z' fill='white'/%3E%3C/svg%3E");
  position: absolute;
  width: 11px;
  height: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.product-item__img {
  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;
  height: 100%;
}

.product-item__img img {
  max-width: 302px;
  max-height: 100%;
}

.product-item__body {
  padding: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  -webkit-transition: margin 0.5s ease 0s;
  transition: margin 0.5s ease 0s;
}

.product-item__body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 6px 6px 0px 0px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(62.5%, #fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #fff 62.5%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}

.product-item__info {
  position: relative;
  z-index: 2;
}

.product-item__title {
  display: inline-block;
  color: #313131;
  font-size: 15px;
  font-weight: 600;
  line-height: 106.667%;
  margin-bottom: 12px;
}

.product-item__list {
  margin-bottom: 12px;
}

.product-item__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.product-item__list li:not(:last-child) {
  margin-bottom: 10px;
}

.product-item__list li p,
.product-item__list li span {
  display: inline-block;
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
}

.product-item__content {
  gap: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto 44px;
  grid-template-columns: 1fr auto 44px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.product-item__price {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
}

.product-item__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
}

.product-item__old {
  opacity: 0.5;
  color: #99242c;
  font-family: Jost;
  font-size: 14px;
  font-weight: 600;
  line-height: 128.571%;
  text-decoration-line: line-through;
}

.product-item__discount {
  color: #fff;
  font-family: Jost;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  padding: 0 6px;
  border-radius: 20px;
  background-color: #54ae7a;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-item__btn {
  margin-top: 0px;
  text-transform: none;
  height: 0px !important;
}

/* ------------------------- */

/* Pagination */

.pagination {
  margin-top: 20px;
  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;
}

.pagination ul {
  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;
}

.pagination ul li a,
.pagination ul li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #707070;
  font-family: PGBeauSansPro;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16px;
  -webkit-transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
}

.pagination .prev {
  margin-right: 20px;
}

.pagination .prev a::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M11.0794 19.1343C11.3487 18.8649 11.5 18.4995 11.5 18.1186C11.5 17.7376 11.3487 17.3723 11.0794 17.1028L3.96782 9.9913L11.0794 2.87976C11.3411 2.6088 11.4859 2.24589 11.4826 1.8692C11.4793 1.49251 11.3282 1.13217 11.0619 0.865803C10.7955 0.599432 10.4352 0.448339 10.0585 0.445066C9.68177 0.441793 9.31886 0.586601 9.0479 0.848303L0.920639 8.97557C0.651304 9.24499 0.5 9.61034 0.5 9.9913C0.5 10.3723 0.651304 10.7376 0.920639 11.007L9.0479 19.1343C9.31732 19.4036 9.68268 19.5549 10.0636 19.5549C10.4446 19.5549 10.8099 19.4036 11.0794 19.1343Z' fill='white'/%3E%3C/svg%3E");
  left: calc(50% - 2px);
}

.pagination .arrow a {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 40px;
  background: #707070;
}

.pagination .arrow a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 20px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.pagination .active a,
.pagination .active span {
  color: #99242c;
}

.pagination .next {
  margin-left: 20px;
}

.pagination .next a::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M0.920639 19.1343C0.651304 18.8649 0.5 18.4995 0.5 18.1186C0.5 17.7376 0.651304 17.3723 0.920639 17.1028L8.03218 9.9913L0.920639 2.87976C0.658937 2.6088 0.514129 2.24589 0.517402 1.8692C0.520676 1.49251 0.671768 1.13217 0.93814 0.865803C1.20451 0.599432 1.56485 0.448339 1.94154 0.445066C2.31823 0.441793 2.68114 0.586601 2.9521 0.848303L11.0794 8.97557C11.3487 9.24499 11.5 9.61034 11.5 9.9913C11.5 10.3723 11.3487 10.7376 11.0794 11.007L2.9521 19.1343C2.68268 19.4036 2.31732 19.5549 1.93637 19.5549C1.55541 19.5549 1.19005 19.4036 0.920639 19.1343Z' fill='white'/%3E%3C/svg%3E");
  left: calc(50% + 2px);
}

/* ------------------------- */

/* Filter */

.bx-filter {
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  padding: 27px 12px;
}

.bx-filter .bx-filter-close {
  display: none;
}

.bx-filter .bx-filter-title {
  color: #313131;
  text-align: center;
  font-family: Jost;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bx-filter .bx-filter-price-box {
  margin-bottom: 40px;
}

.bx-filter .bx-filter-parameters-box {
  margin-bottom: 40px;
  position: relative;
}

.bx-filter .bx-filter-popup-result {
  position: absolute;
  top: 0;
  right: -135px;
  padding: 12px 20px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 4px 5px 0px rgba(164, 159, 155, 0.1);
  box-shadow: 0px 4px 5px 0px rgba(164, 159, 155, 0.1);
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
  z-index: 3;
}

.bx-filter .bx-filter-popup-result::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='14' viewBox='0 0 9 14' fill='none'%3E%3Cpath d='M0.872871 7.75593C0.412409 7.35716 0.41241 6.64284 0.872872 6.24407L7.34535 0.638743C7.99299 0.0778675 9 0.537921 9 1.39467L9 12.6053C9 13.4621 7.99299 13.9221 7.34535 13.3613L0.872871 7.75593Z' fill='white'/%3E%3C/svg%3E");
  position: absolute;
  width: 9px;
  height: 14px;
  top: 50%;
  left: -7px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
}

.bx-filter .bx-filter-popup-result a {
  display: inline-block;
  margin-top: 10px;
  color: #99242c;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 114.286%;
  text-decoration-line: underline;
}

.bx-filter .price-title {
  color: #333333;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.bx-filter .price-filter-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.bx-filter .price-filter-block::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #9e9fa1;
}

.bx-filter .price-input-block input {
  border-radius: 12px;
  border: 1px solid transparent;
  opacity: 0.8;
  background: #f6f6f6;
  width: 125px;
  height: 40px;
  padding: 14px;
  color: #313131;
  font-size: 15px;
  font-weight: 400;
  -webkit-transition: border-color 0.3s ease 0s;
  transition: border-color 0.3s ease 0s;
}

.bx-filter .price-input-block input::-webkit-input-placeholder {
  color: rgba(112, 112, 112, 0.6);
}

.bx-filter .price-input-block input::-moz-placeholder {
  color: rgba(112, 112, 112, 0.6);
}

.bx-filter .price-input-block input:-ms-input-placeholder {
  color: rgba(112, 112, 112, 0.6);
}

.bx-filter .price-input-block input::-ms-input-placeholder {
  color: rgba(112, 112, 112, 0.6);
}

.bx-filter .price-input-block input::placeholder {
  color: rgba(112, 112, 112, 0.6);
}

.bx-filter .price-input-block input:focus {
  border-color: #313131;
}

.bx-filter .bx-ui-slider-track-container {
  margin-top: 25px;
  margin-bottom: 5px;
}

.bx-filter .bx-ui-slider-track-container .bx-ui-slider-handle {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5px;
  border-radius: 50%;
  background-color: #99242c;
  opacity: 1;
}

.bx-filter .bx-ui-slider-track-container .bx-ui-slider-track {
  position: relative;
  height: 2px;
  background-color: rgba(153, 36, 44, 0.3);
}

.bx-filter .bx-ui-slider-track-container .bx-ui-slider-pricebar-v {
  position: absolute;
  height: 100%;
  top: 0;
  background-color: rgba(153, 36, 44, 0.7);
}

.bx-filter .bx-filter-parameters-box-hint {
  color: #333333;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.bx-filter .filter-checkbox-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
}

.bx-filter .filter-checkbox {
  display: inline-block;
}

.bx-filter .filter-checkbox input:checked+.bx-filter-param-text {
  opacity: 1;
  background-color: #feefef;
  border-color: #99242c;
  color: #99242c;
}

.bx-filter .filter-checkbox.show {
  display: inline-block !important;
}

.bx-filter .bx-filter-input-checkbox input {
  display: none;
}

.bx-filter .bx-filter-param-text {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #9e9fa1;
  opacity: 0.6;
  background: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 40px;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease 0s, color 0.3s ease 0s, background-color 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: border-color 0.3s ease 0s, color 0.3s ease 0s, background-color 0.3s ease 0s, opacity 0.3s ease 0s;
}

.bx-filter .bx-filter-more {
  margin-top: 10px;
}

.bx-filter .bx-filter-more span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  height: 40px;
  border-radius: 12px;
  background: #313131;
  padding: 0 14px;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}

.bx-filter .bx-filter-more span:last-child {
  display: none;
}

.bx-filter .button {
  width: 100%;
  cursor: pointer;
  text-transform: none;
}

.bx-filter .button.black {
  margin-bottom: 5px;
  height: 58px;
}

/* ------------------------- */

/* Product-detail */

.product-detail__row {
  height: 450px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 95px 1fr 1fr 300px;
  grid-template-columns: 95px 1fr 1fr 300px;
  gap: 10px;
  margin-bottom: 50px;
  overflow: hidden;
  padding-bottom: 30px;
}

.product-detail__characteristics {
  border-radius: 12px;
  background: #fff;
  padding: 40px 20px;
}

.product-detail__characteristics ul {
  margin-bottom: 30px;
}

.product-detail__characteristics ul li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

.product-detail__characteristics ul li:not(:last-child) {
  margin-bottom: 10px;
}

.product-detail__characteristics ul li p {
  color: #707070;
  height: 100%;
}

.product-detail__characteristics ul li span {
  display: inline-block;
  height: 100%;
  color: #313131;
}

.product-detail__title {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.product-detail__all {
  display: inline-block;
  color: #707070;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  text-decoration-line: underline;
  padding: 12px 0;
}

.product-detail__info {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-detail__container {
  max-width: 1032px;
  padding-left: 105px;
}

.product-detail__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 75px;
  margin-top: 70px;
}

.product-detail__images img {
  max-width: 340px;
}

.product-detail-slider-small {
  min-height: 0;
  min-width: 0;
  margin: -5px 0;
  height: 100%;
  position: relative;
  top: -2px;
}

.product-detail-slider-small__slide {
  padding: 5px 0;
  border: none !important;
}

.product-detail-slider-small__item {
  cursor: pointer;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  width: 95px !important;
  height: 98px !important;
  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;
}

.product-detail-slider-small__img {
  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;
  width: 100%;
  height: 100%;
}

.product-detail-slider-small__img img {
  max-width: 100%;
}

.product-detail-slider {
  min-height: 0;
  min-width: 0;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  max-height: 450px;
}

.product-detail-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: 100% !important;
}

.product-detail-slider .slick-list {
  height: 100%;
  border-radius: 12px;
}

.product-detail-slider .slick-arrow {
  bottom: -20px;
}

.product-detail-slider .slick-next {
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 25px));
  -ms-transform: translateX(calc(-50% + 25px));
  transform: translateX(calc(-50% + 25px));
}

.product-detail-slider .slick-prev {
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 25px));
  -ms-transform: translateX(calc(-50% - 25px));
  transform: translateX(calc(-50% - 25px));
}

.product-detail-slider__slide {
  height: 100%;
  border-radius: 12px;
}

.product-detail-slider__item {
  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;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.product-detail-slider__img {
  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;
  width: 100%;
  height: 100%;
}

.product-detail-slider__img img {
  max-width: 100%;
}

.product-detail-default__top {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-grid-columns: 1fr 102px;
  grid-template-columns: 1fr 102px;
  gap: 10px;
  margin-bottom: 40px;
}

.product-detail-default__old {
  color: #bdbdbd;
  font-family: Jost;
  font-size: 22px;
  font-weight: 600;
  line-height: 163.636%;
  letter-spacing: -0.66px;
  text-decoration-line: line-through;
  padding-left: 25px;
}

.product-detail-default__discount {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.66px;
  border-radius: 20px;
  background: -webkit-gradient(linear, right top, left top, from(#f3d984), to(#e77158));
  background: linear-gradient(270deg, #f3d984 0%, #e77158 100%);
  padding: 10px;
  margin-right: 25px;
}

.product-detail-default__price {
  color: #707070;
  text-align: center;
  font-family: Jost;
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1px;
  text-transform: uppercase;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.product-detail-no-discount {
  color: #333333;
  text-align: center;
  font-family: Jost;
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.product-detail-no-discount p {
  margin-bottom: 40px;
}

.product-detail-not-accurate__text {
  margin-bottom: 5px;
  color: #333333;
  font-family: Jost;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  padding-left: 25px;
  opacity: 0.7;
}

.product-detail-not-accurate__price {
  color: #333333;
  text-align: center;
  font-family: Jost;
  font-size: 50px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.product-detail-order__title {
  max-width: 110px;
  margin: 0px auto;
  margin-bottom: 40px;
  color: #99242c;
  text-align: center;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
}

.product-detail-order .black {
  height: 60px;
  margin-top: 10px;
}

.product-detail-content__info {
  margin-top: 45px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}

.product-detail-content__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  position: relative;
  padding-bottom: 20px;
  z-index: 2;
}

.product-detail-content__list::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #e1e1e1;
}

.product-detail-content__list ul li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 160px 1fr;
  grid-template-columns: 160px 1fr;
  gap: 45px;
}

.product-detail-content__list ul li:not(:last-child) {
  margin-bottom: 10px;
}

.product-detail-content__list ul li p {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

.product-detail-content__list ul li span {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

.product-detail-content__title {
  color: #99242c;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.product-detail-content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0px 0px 12px 12px;
  background: #313131;
  margin-top: -10px;
  padding: 40px 90px;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 20px;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-detail-content__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(25% - 50px);
  flex: 0 1 calc(25% - 50px);
}

.product-detail-content__icon {
  max-width: 50px;
  margin: 0px auto;
  padding-bottom: 10px;
}

.product-detail-content__icon img {
  max-width: 50px;
}

.product-detail-content__text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 116.667%;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.product-detail-content__btn {
  display: none;
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 157.143%;
  margin-top: 5px;
}

.product-detail-content__btn span {
  display: inline-block;
  text-decoration: underline;
}

.product-detail-content__btn span:last-child {
  display: none;
}

/* ------------------------- */

/* Detail-container */

.detail-container .feedback {
  margin-right: 0;
  margin-left: 105px;
}

.detail-container .title-additional,
.detail-container .seo,
.detail-container .faq {
  margin-left: 105px;
}

.detail-container .faq,
.detail-container .seo {
  max-width: 927px;
}

/* ------------------------- */

/* Interested-slider */

.interested-slider {
  max-width: 927px;
  margin-left: 105px;
}

.interested-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.interested-slider .slick-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.interested-slider .slick-next {
  right: -15px;
}

.interested-slider .slick-prev {
  left: -15px;
}

.interested-slider__row {
  margin: 0 -5px;
}

.interested-slider__slide {
  padding: 0 5px;
  height: auto;
}

.interested-slider__slide .product-item,
.interested-slider__slide .service-card {
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 100%;
}

/* ------------------------- */

/* FAQ */

.faq.center {
  max-width: 927px;
  margin: 0px auto;
}

.faq__item {
  background-color: #fff;
  border-radius: 12px;
}

.faq__item:not(:last-child) {
  margin-bottom: 12px;
}

.faq__header {
  padding: 20px 20px 20px 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
  color: #313131;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
}

.faq__header.active .faq__arrow {
  background-color: #313131;
}

.faq__header.active .faq__arrow::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__arrow {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 44px;
  flex: 0 0 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #707070;
  position: relative;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.faq__arrow::before,
.faq__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.faq__arrow::before {
  width: 24px;
  height: 2px;
}

.faq__arrow::after {
  width: 2px;
  height: 24px;
}

.faq__body {
  padding: 0px 117px 20px 30px;
  display: none;
}

/* ------------------------- */

/* Vacancy-detail */

.vacancy-detail {
  display: -ms-grid;
  display: grid;
  border-radius: 12px;
  -ms-grid-columns: 245px 1fr 250px;
  grid-template-columns: 245px 1fr 250px;
  gap: 92px;
  background: #fff;
  margin-bottom: 50px;
  padding: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.vacancy-detail__price {
  color: #313131;
  font-family: Jost;
  font-size: 28px;
  font-weight: 700;
  line-height: 107.143%;
  letter-spacing: 0.56px;
  margin-bottom: 30px;
}

.vacancy-detail__experience {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.28px;
  margin-bottom: 10px;
}

.vacancy-detail__experience p {
  color: #707070;
  display: inline-block;
}

.vacancy-detail__experience span {
  display: inline-block;
  color: #313131;
}

.vacancy-detail__text {
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.28px;
}

.vacancy-detail__conditions div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.vacancy-detail__conditions div:not(:last-child) {
  margin-bottom: 14px;
}

.vacancy-detail__conditions div svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  max-width: 100%;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.vacancy-detail__conditions div p {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
}

.vacancy-detail__buttons .red {
  margin-bottom: 10px;
}

.vacancy-detail__buttons .black {
  height: 60px;
}

.vacancy-detail__row {
  margin-bottom: 80px;
  max-width: 825px;
}

.vacancy-detail__item:not(:last-child) {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e1e1e1;
}

.vacancy-detail__item p {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.vacancy-detail__item .content {
  color: #707070;
}

.vacancy-detail__item .content ul li {
  color: #707070;
}

.vacancy-detail__item .content ul li::before {
  background-color: #707070;
}

.vacancy-detail-contact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 282px 1fr;
  grid-template-columns: 282px 1fr;
  gap: 72px;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.vacancy-detail-contact__title {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.vacancy-detail-contact__title span {
  display: block;
  color: #99242c;
}

.vacancy-detail-contact__row {
  margin-bottom: 40px;
}

.vacancy-detail-contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.vacancy-detail-contact__item:not(:last-child) {
  margin-bottom: 14px;
}

.vacancy-detail-contact__item p,
.vacancy-detail-contact__item a {
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
}

.vacancy-detail-contact__item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.vacancy-detail-contact__item div a {
  display: inline-block;
}

.vacancy-detail-contact__item div a:not(:last-child) {
  margin-bottom: 5px;
}

.vacancy-detail-contact__item svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.vacancy-detail-contact__map {
  height: 354px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.vacancy-detail-contact__map img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.vacancy-detail-contact .button {
  height: 44px;
  max-width: 250px;
  padding: 0 10px;
  font-size: 13px;
}

/* ------------------------- */

/* Requisites */

.requisites {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 407px;
  grid-template-columns: 1fr 407px;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  gap: 10px;
}

.requisites__left {
  border-radius: 12px;
  background: #fff;
  padding: 30px;
}

.requisites__left .content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.requisites__left .content:not(:last-child) {
  margin-bottom: 20px;
}

.requisites__left .content p {
  margin-bottom: 0;
}

.requisites__left .content a {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
}

.requisites__title {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 20px;
}

.requisites__item .content p {
  color: #313131;
}

.requisites__item>p:first-child {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 20px;
}

.requisites__item:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
}

.requisites__right {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.requisites__info {
  padding: 30px;
  border-radius: 12px;
  background: #e1e1e1;
  height: auto;
}

.requisites__info .requisites__item:not(:last-child) {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #9e9fa1;
}

.requisites__info .requisites__item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.requisites__info .requisites__item div:not(:last-child) {
  margin-bottom: 20px;
}

.requisites__info .requisites__item p {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 10px;
}

.requisites__info .requisites__item span {
  display: inline-block;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
}

.requisites__info .requisites__item a {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
}

.requisites__info .button {
  margin-top: 25px;
}

.requisites.type-2 {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.requisites.type-2 .requisites__right {
  -ms-grid-row-span: 1;
  grid-row: span 1;
}

.requisites.type-2 * {
  color: #313131;
}

.requisites.type-2 .button span {
  color: #fff;
}

.requisites-contact {
  padding: 60px 20px;
  border-top: 1px solid #99242c;
  margin-top: 80px;
}

.requisites-contact__top {
  padding-right: 73px;
  position: relative;
  margin-bottom: 44px;
}

.requisites-contact__top svg {
  max-width: 60px;
  position: absolute;
  top: 0;
  right: 0;
}

.requisites-contact__title {
  color: #99242c;
  font-family: Jost;
  font-size: 40px;
  font-weight: 500;
  line-height: 112.5%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.requisites-contact__text {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
  opacity: 0.65;
}

.requisites-contact__name {
  color: #313131;
  font-size: 20px;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.requisites-contact__job {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
}

.requisites-contact__row {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.requisites-contact__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.requisites-contact__item svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.requisites-contact__item a {
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 171.429%;
}

/* ------------------------- */

/* Delivery-payment */

.delivery-payment {
  max-width: 1032px;
}

.delivery-payment__conditions {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e1e1e1;
}

.delivery-payment__conditions .grid-box {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.delivery-payment__transportation {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e1e1e1;
}

.delivery-payment__transportation .grid-box {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.delivery-payment__item {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
}

.delivery-payment__icon {
  max-width: 50px;
  opacity: 0.6;
  margin-bottom: 20px;
}

.delivery-payment__icon img {
  max-width: 50px;
}

.delivery-payment__title {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 20px;
}

.delivery-payment .title-additional {
  margin-bottom: 50px;
}

.delivery-payment .content {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
}

.delivery-payment .content ul,
.delivery-payment .content ol,
.delivery-payment .content p,
.delivery-payment .content li {
  color: #707070;
}

.delivery-payment .content ul::before,
.delivery-payment .content ol::before,
.delivery-payment .content p::before,
.delivery-payment .content li::before {
  background-color: #707070;
}

/* ------------------------- */

/* Guarantee-gost */

.guarantee-gost {
  max-width: 825px;
}

.guarantee-gost__row {
  margin-bottom: 80px;
}

.guarantee-gost__item:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
}

.guarantee-gost__item>p {
  color: #99242c;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 20px;
}

.guarantee-gost__item .content p {
  margin-bottom: 20px;
}

.guarantee-gost__item .content li {
  color: #707070;
}

.guarantee-gost__item .content li::before {
  background-color: #707070;
}

.guarantee-gost__docs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.guarantee-gost__docs a {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  text-decoration-line: underline;
}

/* ------------------------- */

/* News */

.news {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-bottom: 20px;
}

.news__sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 55px;
}

.news__sections a {
  color: #707070;
  font-size: 15px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 14px;
  gap: 16px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #9e9fa1;
  opacity: 0.8;
  background: #fff;
}

.news__sections a svg {
  max-width: 24px;
  fill: #313131;
}

.news__sections a svg path {
  fill: #313131;
}


.news__sections a:active,
.news__sections a.active {
  background: #feefef;
  color: #99242c;
}

.news-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 223px 1fr;
  grid-template-columns: 223px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
}

.news-item.icon {
  -ms-grid-columns: 72px 1fr;
  grid-template-columns: 72px 1fr;
  gap: 40px;
}

.news-item.icon .news-item__icon {
  width: 60px;
  height: 60px;
  position: static;
  margin: 6px;
  background: transparent;
}

.news-item.icon .news-item__icon svg {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  fill: #99242c;
}

.news-item.icon .news-item__icon svg path {
  fill: #99242c;
}

.news-item__left {
  overflow: hidden;
  height: 222px;
  position: relative;
  border-radius: 6px;
}

.news-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}

.news-item__icon {
  position: absolute;
  width: 36px;
  height: 36px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  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;
  z-index: 2;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.news-item__icon svg {
  max-width: 24px;
  height: 24px;
  fill: #313131;
}

.news-item__icon svg path {
  fill: #313131;
}

.news-item__img {
  position: relative;
  width: 100%;
  height: 100%;
}

.news-item__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.news-item__date {
  color: #9e9fa1;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
  margin-bottom: 16px;
}

.news-item__title {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  opacity: 0.8;
  margin-bottom: 16px;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-item__text {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 16px;
}

.news-item__btn {
  display: inline-block;
  padding: 10px 34px 10px 0px;
  color: #313131;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.16px;
  position: relative;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.news-item__btn span {
  display: inline-block;
  position: relative;
  padding: 0px 34px 0px 0px;
}

.news-item__btn span::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13 8L17 12L13 16M7 8L11 12L7 16' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #9e9fa1;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

/* ------------------------- */

/* Error */

.error {
  padding: 120px 0;
  text-align: center;
}

.error__title {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin: 0px auto 55px auto;
  max-width: 420px;
}

.error__info {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 20px;
}

.error__links {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 10px;
  margin: 0px auto 55px auto;
  margin-bottom: 55px;
  max-width: 420px;
}

.error__links a {
  display: inline-block;
  padding: 12px 0;
  color: #707070;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  text-decoration-line: underline;
}

/* ------------------------- */

/* Contacts */

.contacts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 410px 1fr;
  grid-template-columns: 410px 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  gap: 26px;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
}

.contacts__top {
  padding-bottom: 30px;
  border-bottom: 1px solid #e1e1e1;
}

.contacts__title {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.contacts__title span {
  color: #99242c;
  display: block;
}

.contacts__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.contacts__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
}

.contacts__item svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  opacity: 0.5;
  max-width: 100%;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.contacts__item p,
.contacts__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
}

.contacts__item div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}

.contacts__center {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  position: relative;
  height: 718px;
  overflow: hidden;
  border-radius: 12px;
}

.contacts__map {
  height: 100%;
  display: none;
  position: relative;
}

.contacts__link {
  margin-top: 20px;
  display: inline-block;
  color: #707070;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  position: relative;
}

.contacts__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #707070;
  transition: opacity 0.3s ease 0s;
}

.contacts__map:first-child {
  display: block;
}

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

.contacts__map .frame {
  width: 245px;
  border-radius: 12px;
  background: #fff;
  -webkit-backdrop-filter: blur(3.5px);
  backdrop-filter: blur(3.5px);
  padding: 20px;
}

.contacts__map .frame>p {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 24px;
  max-width: 183px;
}

.contacts__map .frame svg {
  opacity: 1;
}

.contacts__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.contacts__tabs a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 40px;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  background-color: #f6f6f6;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  border-radius: 12px;
  padding: 0 20px;
}

.contacts__tabs a.active {
  background-color: #313131;
  color: #fff;
}

.contacts__tab {
  display: none;
}

.contacts__tab:first-child {
  display: block;
}

.contacts__social {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.contacts__social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 44px;
  flex: 0 0 44px;
  height: 44px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contacts__social a svg {
  max-width: 100%;
}

/* ------------------------- */

/* Feedback-form */

.feedback-form {
  margin-right: 417px;
  border-radius: 12px;
  background: #e1e1e1;
  padding: 50px;
}

.feedback-form__title {
  color: #333333;
  text-align: center;
  font-family: Jost;
  font-size: 40px;
  font-weight: 500;
  line-height: 112.5%;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.feedback-form__text {
  color: #707070;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

.feedback-form .form-row {
  margin-top: 40px;
}

.feedback-form .form-group input,
.feedback-form .form-group textarea {
  background-color: #fff;
}

.feedback-form .form-group.textarea::before {
  background-color: #e1e1e1;
}

.feedback-form .form-checkbox {
  min-height: 24px;
}

/* ------------------------- */

/* About-top  */

.about-top {
  position: relative;
  height: 490px;
  overflow: hidden;
  border-radius: 12px;
}

.about-top__title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: Jost;
  font-size: 100px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1px;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: center;
  margin-top: 148px;
}

.about-top__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-top__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ------------------------- */

/* About-info */

.about-info {
  position: relative;
  z-index: 3;
  padding-bottom: 100px;
  margin-top: -56px;
}

.about-info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 67px);
  top: 67px;
  left: 0;
  background: #fff;
  z-index: -1;
  border-radius: 12px 12px 0 0;
}

.about-info__items {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  max-width: 880px;
  margin: 0px auto;
  margin-top: -123px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.about-info__item {
  border-radius: 2px;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 4px 5px 2px rgba(223, 223, 223, 0.12);
  box-shadow: 0px 4px 5px 2px rgba(223, 223, 223, 0.12);
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-info__title {
  color: #99242c;
  text-align: center;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-info__text {
  color: #313131;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
}

.about-info__content {
  background: #fff;
  max-width: 824px;
  margin: 0px auto;
  padding-top: 80px;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
  margin-bottom: 45px;
  position: relative;
}

.about-info__content::before {
  content: "";
  position: absolute;
  width: calc(100% + 40px);
  height: 100%;
  top: 0;
  left: -20px;
  background: #fff;
  z-index: -1;
  border-radius: 12px 12px 0 0;
}

.about-info__content p {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
}

.about-info__content p:first-child {
  text-indent: 85px;
}

.about-info__content span {
  color: #99242c;
}

.about-info__video {
  max-width: 615px;
  margin: 0px auto;
}

.about-info__video video {
  width: 100%;
  height: 352px;
}

.about-info__video img {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.about-info__video .my-video-dimensions {
  width: 100%;
  height: 352px;
  border-radius: 12px;
  overflow: hidden;
}

.about-info__video .vjs-big-play-button {
  font-size: 0;
  background: transparent;
  border: none;
}

.about-info__video .vjs-big-play-button .vjs-icon-placeholder::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' fill='none'%3E%3Cmask id='mask0_428_12861' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='3' y='3' width='54' height='54'%3E%3Cpath d='M30 55C43.8075 55 55 43.8075 55 30C55 16.1925 43.8075 5 30 5C16.1925 5 5 16.1925 5 30C5 43.8075 16.1925 55 30 55Z' fill='white' stroke='white' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M25 30V21.34L32.5 25.67L40 30L32.5 34.33L25 38.66V30Z' fill='black' stroke='black' stroke-width='4' stroke-linejoin='round'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_428_12861)'%3E%3Cpath d='M0 0H60V60H0V0Z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
}

.about-info .title-additional {
  margin-bottom: 25px;
  text-align: center;
}

/* ------------------------- */

/* About-history */

.about-history {
  padding-top: 60px;
  padding-bottom: 100px;
  border-radius: 12px 12px 0px 0px;
  margin-top: -40px;
  background: #f6f6f6;
  position: relative;
  z-index: 3;
}

.about-history .title {
  margin-bottom: 115px;
}

.about-history__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 54px;
  -moz-column-gap: 54px;
  column-gap: 54px;
  row-gap: 70px;
  max-width: 1070px;
  margin: 0px auto;
}

.about-history__row.net .about-history__item:nth-child(3n)::after {
  display: none;
}

.about-history__row.net .about-history__item:nth-child(4n)::after {
  display: block;
}

.about-history__item {
  position: relative;
}

.about-history__item:first-child::before,
.about-history__item:last-child::before {
  background: -webkit-gradient(linear, left top, right top, from(#99242c), to(#e65e41));
  background: linear-gradient(90deg, #99242c 0%, #e65e41 100%);
}

.about-history__item:last-child::after {
  display: none;
}

.about-history__item:nth-child(4n)::after {
  display: none;
}

.about-history__item.shift {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
}

.about-history__item::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50px;
  left: 0;
  border-radius: 50%;
  background: #99242c;
  z-index: 2;
}

.about-history__item::after {
  content: "";
  position: absolute;
  width: calc(100% + 54px);
  height: 2px;
  top: 60px;
  left: 0;
  background: rgba(153, 36, 44, 0.4);
}

.about-history__year {
  color: #99242c;
  font-family: Jost;
  font-size: 28px;
  font-weight: 700;
  line-height: 107.143%;
  letter-spacing: 0.56px;
  margin-bottom: 62px;
}

.about-history__info {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

/* ------------------------- */

/* About-map */

.about-map {
  background: #fff;
  padding: 60px 0 100px 0;
  border-radius: 12px 12px 0 0;
}

.about-map .title {
  margin-bottom: 45px;
}

.about-map__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 37px;
}

.about-map__items a {
  padding: 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  border-radius: 12px;
  background: #f6f6f6;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
}

.about-map__items a svg {
  fill: #707070;
}

.about-map__items a.active {
  background: #313131;
  color: #fff;
}

.about-map__items a.active svg {
  fill: #fff;
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
}

.about-map__row {
  max-width: 1050px;
  margin: 0px auto;
  text-align: center;
  position: relative;
}

.about-map__row svg {
  width: 100%;
  position: relative;
}

.about-map__row .map {
  -webkit-filter: drop-shadow(0px 4px 8px rgba(68, 68, 68, 0.5));
  filter: drop-shadow(0px 4px 8px rgba(68, 68, 68, 0.5));
}

.about-map__row .point {
  cursor: pointer;
}

.about-map__info {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 13px;
}

.about-map__info span {
  display: inline-block;
  color: #99242c;
}

.about-map__hint {
  position: absolute;
  width: 253px;
  padding: 30px;
  border-radius: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(3.5px);
  backdrop-filter: blur(3.5px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.about-map__hint::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 100%;
  top: 0;
  left: -30px;
}

.about-map__hint:hover {
  opacity: 1;
  visibility: visible;
}

.about-map__title {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 24px;
}

.about-map__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
  gap: 10px;
  margin-bottom: 16px;
  text-align: left;
}

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

.about-map__item a {
  color: #313131;
}

.about-map__item svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
}

.about-map__item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

/* ------------------------- */

/* About-numbers */

.about-numbers {
  background: #f6f6f6;
  border-radius: 12px 12px 0 0;
  padding-top: 60px;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.about-numbers .head-row {
  display: none;
}

/* ------------------------- */

/* About-quote */

.about-quote {
  max-width: 824px;
  margin: 0px auto;
  padding: 20px 40px 40px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  position: relative;
}

.about-quote::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53' height='32' viewBox='0 0 53 32' fill='none'%3E%3Cpath d='M35.3759 0H53L39.9735 32H28.2241L35.3759 0ZM7.15181 0H24.7759L11.6217 32H0L7.15181 0Z' fill='%2399242C'/%3E%3C/svg%3E");
  position: absolute;
  width: 53px;
  height: 32px;
  right: 40px;
  bottom: -16px;
  background: #99242c;
  z-index: 2;
}

.about-quote__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 25px;
}

.about-quote__photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 192px;
  flex: 0 0 192px;
  height: 192px;
  position: relative;
}

.about-quote__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.about-quote__post {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 14px;
}

.about-quote__name {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
}

.about-quote__text {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
}

/* ------------------------- */

/* Project-completed */

.project-completed__filter {
  margin-bottom: 20px;
  margin-top: -10px;
}

.project-completed__filter ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.project-completed__filter ul a {
  cursor: pointer;
  color: #707070;
  font-size: 15px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #9e9fa1;
  opacity: 0.8;
  background: #fff;
  padding: 0 14px;
  -webkit-transition: border-color 0.3s ease 0s, background 0.3s ease 0s;
  transition: border-color 0.3s ease 0s, background 0.3s ease 0s;
}

.project-completed__filter ul a.active {
  border-color: #99242c;
  background: #feefef;
}

.project-completed__slider {
  padding-bottom: 70px;
  margin: 0 -5px;
}

.project-completed__slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.project-completed__slider .slick-arrow {
  bottom: 0;
}

.project-completed__slider .slick-next {
  right: 5px;
}

.project-completed__slider .slick-prev {
  right: 65px;
}

.project-completed__slide {
  padding: 0 5px;
  height: auto !important;
}

.project-completed__slide .project-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  height: auto !important;
}

.project-completed__slide .project-card__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

/* ------------------------- */

/* Project-card */

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

.project-card__img {
  overflow: hidden;
  height: 152px;
  position: relative;
  border-radius: 12px 12px 0 0;
}

.project-card__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-card__body {
  margin-top: -10px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.project-card__section {
  color: #9e9fa1;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.12px;
  margin-bottom: 20px;
}

.project-card__name {
  color: #99242c;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.project-card__info {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
  margin-bottom: 20px;
}

.project-card__bottom {
  position: relative;
}

.project-card__bottom::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%) scale(0);
  -ms-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  background: #99242c;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.project-card__bottom::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M0.920639 19.1343C0.651304 18.8649 0.5 18.4995 0.5 18.1186C0.5 17.7376 0.651304 17.3723 0.920639 17.1028L8.03218 9.9913L0.920639 2.87976C0.658937 2.6088 0.514129 2.24589 0.517402 1.8692C0.520676 1.49251 0.671768 1.13217 0.93814 0.865803C1.20451 0.599432 1.56485 0.448339 1.94154 0.445066C2.31823 0.441793 2.68114 0.586601 2.9521 0.848303L11.0794 8.97557C11.3487 9.24499 11.5 9.61034 11.5 9.9913C11.5 10.3723 11.3487 10.7376 11.0794 11.007L2.9521 19.1343C2.68268 19.4036 2.31732 19.5549 1.93637 19.5549C1.55541 19.5549 1.19005 19.4036 0.920639 19.1343Z' fill='white'/%3E%3C/svg%3E");
  position: absolute;
  width: 12px;
  height: 20px;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  background: #fff;
  z-index: 2;
}

.project-card__btn {
  text-transform: none;
}

/* ------------------------- */

/* Project-row  */

.project-row__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-bottom: 20px;
}

.project-row__filter {
  margin-bottom: 20px;
  margin-top: -10px;
}

.project-row__filter ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.project-row__filter ul a {
  cursor: pointer;
  color: #707070;
  font-size: 15px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #9e9fa1;
  opacity: 0.8;
  background: #fff;
  padding: 0 14px;
  -webkit-transition: border-color 0.3s ease 0s, background 0.3s ease 0s;
  transition: border-color 0.3s ease 0s, background 0.3s ease 0s;
}

.project-row__filter ul a.active {
  border-color: #99242c;
  background: #feefef;
}

/* ------------------------- */

/* After-text  */

.after-text {
  margin-top: -30px;
  margin-bottom: 55px;
  max-width: 850px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

/* ------------------------- */

/* Project-video */

.project-video {
  width: 100%;
  height: 566px;
  margin-bottom: 30px;
}

.project-video video {
  width: 100%;
  height: 566px;
}

.project-video img {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.project-video .my-video-dimensions {
  width: 100%;
  height: 566px;
  border-radius: 12px;
  overflow: hidden;
}

.project-video .vjs-big-play-button {
  font-size: 0;
  background: transparent;
  border: none;
}

.project-video .vjs-big-play-button .vjs-icon-placeholder::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60' fill='none'%3E%3Cmask id='mask0_428_12861' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='3' y='3' width='54' height='54'%3E%3Cpath d='M30 55C43.8075 55 55 43.8075 55 30C55 16.1925 43.8075 5 30 5C16.1925 5 5 16.1925 5 30C5 43.8075 16.1925 55 30 55Z' fill='white' stroke='white' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M25 30V21.34L32.5 25.67L40 30L32.5 34.33L25 38.66V30Z' fill='black' stroke='black' stroke-width='4' stroke-linejoin='round'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_428_12861)'%3E%3Cpath d='M0 0H60V60H0V0Z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
}

/* ------------------------- */

/* project-info */

.project-info__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.project-info__item {
  border-radius: 2px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 5px 2px rgba(223, 223, 223, 0.12);
  box-shadow: 0px 4px 5px 2px rgba(223, 223, 223, 0.12);
  padding: 40px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}

.project-info__title {
  color: #99242c;
  font-family: Jost;
  font-size: 28px;
  font-weight: 700;
  line-height: 107.143%;
  letter-spacing: 0.56px;
}

.project-info__text {
  color: #9e9fa1;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
}

.project-info__content {
  max-width: 1032px;
  margin: 0px auto;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
}

.project-info__content p {
  color: #313131;
}

.project-info__content span {
  color: #99242c;
}

/* ------------------------- */

/* Project-detail-top */

.project-detail-top {
  margin-bottom: 80px;
}

.project-detail-top__img {
  position: relative;
  height: 490px;
  border-radius: 12px 12px 0 0;
  background: #9e9fa1;
}

.project-detail-top__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.project-detail-top__list {
  margin-top: -47px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.project-detail-top__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(20% - 20px);
  flex: 0 1 calc(20% - 20px);
  min-height: 143px;
  padding: 30px;
  border-radius: 2px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 5px 2px rgba(223, 223, 223, 0.12);
  box-shadow: 0px 4px 5px 2px rgba(223, 223, 223, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}

.project-detail-top__title {
  color: #99242c;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
}

.project-detail-top__text {
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
}

/* ------------------------- */

/* Project-detail */

.project-detail {
  max-width: 1032px;
  margin: 0px auto;
}

.project-detail__content {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
  margin-bottom: 80px;
}

.project-detail__images {
  max-width: 930px;
  margin: 0 -5px;
  padding-bottom: 70px;
}

.project-detail__images .slick-prev {
  bottom: 0;
  left: 5px;
}

.project-detail__images .slick-next {
  bottom: 0;
  left: 65px;
}

.project-detail__image {
  height: 303px;
  padding: 0 5px;
}

.project-detail__image a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.project-detail__image a img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
}

.project-detail__image a p {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 114.286%;
  text-align: center;
  width: 100%;
  padding: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
}

/* ------------------------- */

/* Application-form */

.application-form {
  max-width: 923px;
  border-radius: 12px;
  background: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 298px;
  grid-template-columns: 1fr 298px;
  overflow: hidden;
}

.application-form__container {
  max-width: 1032px;
  margin: 0px auto;
}

.application-form__left {
  border-radius: 0px 12px 12px 0px;
  background: #e1e1e1;
  padding: 50px;
}

.application-form__info {
  color: #333333;
  text-align: center;
  font-family: Jost;
  font-size: 40px;
  font-weight: 500;
  line-height: 112.5%;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.application-form__text {
  color: #707070;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  max-width: 350px;
  margin: 0px auto;
}

.application-form__right {
  padding: 94px 32px 17px 32px;
}

.application-form__right ul {
  text-align: center;
  margin-bottom: 35px;
}

.application-form__right ul li {
  padding-left: 10px;
  display: inline-block;
  color: #9e9fa1;
  text-align: center;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  position: relative;
  border-radius: 50%;
}

.application-form__right ul li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #9e9fa1;
}

.application-form__right ul li:not(:last-child) {
  margin-bottom: 15px;
}

.application-form__img {
  text-align: center;
  margin: 0 -32px;
}

.application-form__img img {
  max-width: 100%;
}

.application-form__img img:last-child {
  display: none;
}

.application-form .form-row {
  margin-top: 40px;
}

.application-form .form-row .form-control {
  background: #fff;
}

/* ------------------------- */

/* Service */

.service {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

/* ------------------------- */

/* Service-detail-list */

.service-detail-list {
  margin-bottom: 80px;
}

.service-detail-list__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 223px;
  grid-template-columns: 1fr 223px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  max-width: 1099px;
  margin-left: 105px;
}

.service-detail-list__info {
  padding: 40px;
  background: #fff;
  border-radius: 12px;
}

.service-detail-list__info ol li {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  position: relative;
  min-height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.service-detail-list__info ol li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 34px;
  flex: 0 0 34px;
  height: 34px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #99242c;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.service-detail-list__info ol li:not(:last-child) {
  margin-bottom: 30px;
}

.service-detail-list__title {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.service-detail-list__icon svg {
  width: 223px;
  height: auto;
  fill: #99242c;
  opacity: 0.04;
  -webkit-transform: rotate(-18deg);
  -ms-transform: rotate(-18deg);
  transform: rotate(-18deg);
}

/* ------------------------- */

/* Service-detail */

.service-detail__row {
  margin-left: 105px;
}

.service-detail__row .content {
  max-width: 824px;
  color: #313131;
  margin-bottom: 80px;
}

.service-detail__slider {
  max-width: 818px;
  margin: 0 -5px;
  margin-bottom: 80px;
}

.service-detail__slider .slick-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.service-detail__slider .slick-prev {
  left: -15px;
}

.service-detail__slider .slick-next {
  right: -15px;
}

.service-detail__slide {
  padding: 0 5px;
}

.service-detail__img {
  display: block;
  width: 100%;
  height: 269px;
  position: relative;
}

.service-detail__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

.service-detail__form .application-form__container {
  margin: 0px 0px 0px 105px;
}

/* ------------------------- */

/* Service-detail-project */

.service-detail-project {
  margin-left: 105px;
}

.service-detail-project__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  max-width: 825px;
  gap: 10px;
}

/* ------------------------- */

/* Vacancy */

.vacancy {
  margin-bottom: 80px;
}

.vacancy__container {
  max-width: 1032px;
  margin: 0px auto;
}

.vacancy__title {
  color: #9e9fa1;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.vacancy__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 60px;
}

.vacancy__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1fr;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  max-width: 460px;
}

.vacancy__icon {
  min-width: 80px;
  width: 100%;
  height: 80px;
  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;
  border-radius: 50%;
  background: #99242c;
}

.vacancy__icon img {
  max-width: 50px;
}

.vacancy__characteristic {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 10px;
}

.vacancy__text {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
}

.vacancy__content {
  margin-top: 45px;
  border-radius: 12px;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  letter-spacing: 0.32px;
  padding: 40px 60px;
  background: #fff;
}

/* ------------------------- */

/* Vacancy-open */

.vacancy-open__filter {
  margin-bottom: 10px;
  margin-top: -10px;
}

.vacancy-open__filter ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.vacancy-open__filter ul a {
  cursor: pointer;
  color: #707070;
  font-size: 15px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #9e9fa1;
  opacity: 0.8;
  background: #fff;
  padding: 0 14px;
  -webkit-transition: border-color 0.3s ease 0s, background 0.3s ease 0s;
  transition: border-color 0.3s ease 0s, background 0.3s ease 0s;
}

.vacancy-open__filter ul a.active {
  border-color: #99242c;
  background: #feefef;
}

.vacancy-open__row {
  margin: 0 -5px;
  margin-bottom: 70px;
  font-size: 0;
}

.vacancy-open__wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(50% - 10px);
  min-width: 50%;
  padding: 0 5px;
  margin-bottom: 10px;
}

.vacancy-open__item {
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  gap: 40px;
}

.vacancy-open__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.vacancy-open__title {
  color: #99242c;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
}

.vacancy-open__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #313131;
  font-size: 14px;
  font-weight: 400;
}

.vacancy-open__location svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  max-width: 24px;
  opacity: 0.5;
}

.vacancy-open__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.vacancy-open__salary {
  color: #313131;
  font-size: 20px;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: 0.2px;
  margin-bottom: 15px;
}

.vacancy-open__experience {
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.vacancy-open__experience p {
  display: inline-block;
  color: #707070;
}

.vacancy-open__terms {
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.vacancy-open__btn {
  text-transform: none;
  max-width: 172px;
  min-height: 50px;
}

/* ------------------------- */

/* News-detail */

.news-detail {
  margin-left: 105px;
  max-width: 825px;
}

.news-detail__date {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 45px;
}

.news-detail__slider {
  margin: 0 -5px;
  margin-bottom: 20px;
}

.news-detail__slider .slick-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.news-detail__slider .slick-prev {
  left: -15px;
}

.news-detail__slider .slick-next {
  right: -15px;
}

.news-detail__slide {
  padding: 0 5px;
}

.news-detail__img {
  display: block;
  height: 310px;
  position: relative;
}

.news-detail__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

.news-detail__content {
  color: #313131;
}

/* ------------------------- */

/* Mailing */

.mailing {
  margin-left: 105px;
  max-width: 820px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px;
  border-radius: 12px;
  background: #e1e1e1;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  box-shadow: 0px 4px 4px 0px rgba(234, 234, 234, 0.12);
  gap: 20px;
}

.mailing svg {
  margin-bottom: 20px;
  max-width: 80px;
}

.mailing__info {
  max-width: 300px;
}

.mailing__title {
  color: #313131;
  font-family: Jost;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mailing__text {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

.mailing__form {
  max-width: 330px;
}

.mailing__form .form-row {
  margin-top: 0;
}

.mailing__form .form-control {
  background: #fff;
}

.mailing__form .button span {
  display: inline-block;
  padding-left: 34px;
  position: relative;
}

.mailing__form .button span::after {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='22' viewBox='0 0 24 22' fill='none'%3E%3Cpath d='M19.6917 0.498969C19.9685 0.190746 20.4426 0.165204 20.7509 0.441921C21.7452 1.33459 22.5988 2.43812 23.1795 3.68294C23.3546 4.05831 23.1923 4.50456 22.8169 4.67969C22.4415 4.85481 21.9953 4.69244 21.8201 4.31706C21.3326 3.27194 20.6069 2.32855 19.7488 1.55809C19.4406 1.28138 19.415 0.807189 19.6917 0.498969Z' fill='%23F6F6F6'/%3E%3Cpath d='M4.30808 0.498969C4.03137 0.190746 3.55718 0.165204 3.24897 0.441921C2.25465 1.33459 1.401 2.43812 0.820317 3.68294C0.645229 4.05831 0.807566 4.50456 1.18294 4.67969C1.55832 4.85481 2.00457 4.69244 2.17969 4.31706C2.66727 3.27194 3.39289 2.32855 4.25104 1.55809C4.55925 1.28138 4.58479 0.807189 4.30808 0.498969Z' fill='%23F6F6F6'/%3E%3Cpath d='M20.625 16.75C21.0392 16.75 21.375 17.0858 21.375 17.5C21.375 17.9142 21.0392 18.25 20.625 18.25H3.375C2.96077 18.25 2.625 17.9142 2.625 17.5C2.625 17.0858 2.96077 16.75 3.375 16.75H3.5997L4.03125 15.5632V10.2812C4.03125 6.76389 6.30952 3.78043 9.46968 2.72286C9.86707 1.71404 10.8495 1 12 1C13.1505 1 14.1329 1.71404 14.5303 2.72286C17.6905 3.78043 19.9687 6.76389 19.9687 10.2812V13.75C19.9687 14.1642 19.633 14.5 19.2187 14.5C18.8045 14.5 18.4687 14.1642 18.4687 13.75V10.2812C18.4687 7.30839 16.4627 4.80216 13.729 4.04597C13.4572 3.97074 13.2505 3.74938 13.1941 3.47304C13.0808 2.91763 12.5883 2.49999 12 2.49999C11.4117 2.49999 10.9192 2.91763 10.8059 3.47304C10.7495 3.74938 10.5428 3.97074 10.271 4.04597C7.53731 4.80216 5.53125 7.30839 5.53125 10.2812V15.6953C5.53125 15.7827 5.51598 15.8695 5.4861 15.9516L5.19577 16.75H20.625Z' fill='%23F6F6F6'/%3E%3Cpath d='M10.875 18.625C10.875 19.2463 11.3787 19.75 12 19.75C12.6213 19.75 13.125 19.2463 13.125 18.625H14.625C14.625 20.0747 13.4497 21.25 12 21.25C10.5503 21.25 9.375 20.0747 9.375 18.625H10.875Z' fill='%23F6F6F6'/%3E%3Cpath d='M6.982 1.68462C6.73877 1.34935 6.2698 1.27475 5.93451 1.518C4.39045 2.63823 3.09283 4.36845 2.30335 6.3471C2.14986 6.73185 2.33728 7.16816 2.722 7.32165C3.10671 7.47517 3.54306 7.28771 3.69655 6.903C4.39439 5.15403 5.52865 3.66566 6.81538 2.7321C7.15063 2.48887 7.22526 2.0199 6.982 1.68462Z' fill='%23F6F6F6'/%3E%3Cpath d='M18.0652 1.518C17.7299 1.27475 17.261 1.34935 17.0177 1.68462C16.7745 2.0199 16.8491 2.48887 17.1844 2.7321C18.4711 3.66566 19.6054 5.15403 20.3032 6.903C20.4567 7.28771 20.893 7.47517 21.2777 7.32165C21.6625 7.16816 21.8499 6.73185 21.6964 6.3471C20.9069 4.36845 19.6093 2.63823 18.0652 1.518Z' fill='%23F6F6F6'/%3E%3C/svg%3E");
  position: absolute;
  width: 24px;
  height: 22px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
}

/* ------------------------- */

/* Footer */

.footer {
  max-width: 1280px;
  margin: 0px auto;
  width: 100%;
}

.footer__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 322px 1fr;
  grid-template-columns: 322px 1fr;
}

.footer__left {
  border-radius: 12px 12px 0px 0px;
  background: #e7e7e7;
  padding: 23px 50px;
}

.footer__logo {
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: 60px;
}

.footer__logo img {
  max-width: 160px;
}

.footer__links {
  margin-bottom: 50px;
}

.footer__links>* {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.footer__links>*:not(:last-child) {
  margin-bottom: 30px;
}

.footer__links a,
.footer__links span {
  color: #707070;
  font-size: 15px;
  font-weight: 500;
}

.footer__links svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.footer__links span {
  display: inline-block;
}

.footer__phones a {
  display: inline-block;
}

.footer__phones a:not(:last-child) {
  margin-bottom: 16px;
}

.footer__social p {
  color: #313131;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 20px;
}

.footer__social div {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__social div svg {
  max-width: 24px;
}

.footer__right {
  border-radius: 12px 12px 0px 0px;
  background: #4f4f4f;
  padding: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 40px;
}

.footer__menu:first-child {
  max-width: 165px;
}

.footer__menu ul li:not(:last-child) {
  margin-bottom: 20px;
}

.footer__menu ul li:first-child {
  margin-bottom: 30px;
}

.footer__menu ul li:first-child a {
  color: #fdfdfd;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
}

.footer__menu ul li a {
  display: inline-block;
  color: #bdbdbd;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
}

.footer__menu.bold ul li:first-child {
  margin-bottom: 20px;
}

.footer__menu.bold ul li a {
  color: #fdfdfd;
  font-size: 18px;
  font-weight: 700;
  line-height: 133.333%;
}

.footer__bottom {
  padding: 20px 20px 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.footer__info {
  color: #707070;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.14px;
}

.footer__copyright {
  margin-bottom: 10px;
}

.footer__copyright p {
  margin-top: 10px;
}

.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.footer__policy a {
  color: #707070;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: -0.14px;
  text-decoration-line: underline;
}

.footer__dev {
  display: inline-block;
}

.footer__dev img {
  max-width: 182px;
}

/* ------------------------- */

/* Calculate-btn */

.calculate-btn {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}

.calculate-btn span {
  display: inline-block;
  color: #333333;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}

.calculate-btn div {
  width: 50px;
  height: 50px;
  background-color: #9e9fa1;
  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;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.calculate-btn svg {
  fill: #fff;
  position: relative;
}

/* ------------------------- */

/* Shelving-card */
.shelving-card {
  position: relative;
  min-height: 400px;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: #fff;
}

.shelving-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.shelving-card__body {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 67px;
  position: relative;
  z-index: 2;
}

.shelving-card__left {
  background-color: #fff;
  padding: 18px 14px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.shelving-card__suptitle {
  color: #99242c;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.12px;
  margin-bottom: 4px;
}

.shelving-card__title {
  color: #707070;
  font-size: 15px;
  font-weight: 600;
  line-height: 106.667%;
}

.shelving-card__arrow {
  flex: 0 0 50px;
  height: 100%;
  position: relative;
  background-color: #99242c;
  border-radius: 12px;
  transition: background-color 0.3s ease 0s;
}

.shelving-card__arrow::before {
  content: "";
  position: absolute;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' viewBox='0 0 11 20' fill='none'%3E%3Cpath d='M0.420639 19.1343C0.151304 18.8649 0 18.4995 0 18.1186C0 17.7376 0.151304 17.3723 0.420639 17.1028L7.53218 9.9913L0.420639 2.87976C0.158937 2.6088 0.0141287 2.24589 0.0174017 1.8692C0.0206757 1.49251 0.171768 1.13217 0.43814 0.865803C0.704511 0.599432 1.06485 0.448339 1.44154 0.445066C1.81823 0.441793 2.18114 0.586601 2.4521 0.848303L10.5794 8.97557C10.8487 9.24499 11 9.61034 11 9.9913C11 10.3723 10.8487 10.7376 10.5794 11.007L2.4521 19.1343C2.18268 19.4036 1.81732 19.5549 1.43637 19.5549C1.05541 19.5549 0.690055 19.4036 0.420639 19.1343Z' fill='white'/%3E%3C/svg%3E");
  width: 11px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

/* ------------------------- */

@-webkit-keyframes headerFixed {
  from {
    top: -100%;
  }

  to {
    top: 0;
  }
}

@keyframes headerFixed {
  from {
    top: -100%;
  }

  to {
    top: 0;
  }
}
@media (min-width: 1280px) {
  .header-search-big__row {
    display: block;
  }
  .header-bottom__menu {
    display: block !important;
  }
  .header-search__close,
  .header-search__row {
    display: none !important;
  }
  .header-search {
    display: none;
  }
  .header-bottom {
    gap: 170px;
  }
  .header-bottom__right {
    flex: 1 1 auto;
  }
}
@media (max-width: 1270px) {
  .calculate-btn {
    right: 20px;
  }
}

@media (max-width: 1200px) {
  .catalog-section__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .product-item__content {
    -ms-grid-columns: 1fr 44px;
    grid-template-columns: 1fr 44px;
    row-gap: 0px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .product-item__old {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
  }

  .product-item__discount {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .product-detail__row {
    -ms-grid-columns: 1fr 1fr 300px;
    grid-template-columns: 1fr 1fr 300px;
  }

  .product-detail__container {
    padding-left: 0;
    max-width: 100%;
  }

  .product-detail-slider-small {
    display: none;
  }

  .detail-container .feedback {
    margin: 0px auto;
  }

  .detail-container .title-additional,
  .detail-container .seo,
  .detail-container .faq {
    margin-left: 0px;
  }

  .detail-container .faq,
  .detail-container .seo {
    max-width: 100%;
  }

  .interested-slider {
    max-width: 100%;
    margin-left: 0px;
  }
}

@media (max-width: 1150px) {
  .products-services {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .header-top {
    padding: 15px 20px 20px 20px;
  }

  .header-bottom {
    padding: 10px 20px;
  }

  .header-bottom__menu ul {
    gap: 15px;
  }

  .product-detail__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr auto;
    grid-template-rows: 1fr auto;
    height: auto;
    margin-bottom: 50px;
    padding-bottom: 0px;
  }

  .product-detail__info {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .product-detail-default {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
  }

  .product-detail-default__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 0px;
    -webkit-column-gap: 0px;
    -moz-column-gap: 0px;
    column-gap: 0px;
    row-gap: 8px;
  }

  .product-detail-default__price {
    font-size: 40px;
  }

  .product-detail-default__old {
    padding: 0;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }

  .product-detail-default__discount {
    margin: 0;
    display: inline-block;
    text-align: center;
    width: auto;
    max-width: 90px;
  }

  .product-detail-default .button {
    width: 300px;
  }

  .product-detail-no-discount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    font-size: 40px;
  }

  .product-detail-no-discount p {
    margin-bottom: 0;
  }

  .product-detail-no-discount .button {
    width: 300px;
  }

  .product-detail-not-accurate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    position: relative;
  }

  .product-detail-not-accurate__price {
    font-size: 40px;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    text-align: left;
    margin: 0;
    margin-top: 20px;
  }

  .product-detail-not-accurate__text {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
  }

  .product-detail-not-accurate .button {
    width: 300px;
  }

  .product-detail-order {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .product-detail-order__title {
    max-width: 100%;
    margin-bottom: 0px;
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .product-detail-order .button {
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  .product-detail-order .black {
    margin: 0;
  }

  .news {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-detail-top__list {
    gap: 10px;
  }

  .project-detail-top__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(25% - 10px);
    flex: 0 1 calc(25% - 10px);
  }

  .service {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .service-detail-list__row {
    max-width: 100%;
    margin-left: 0px;
    gap: 25px;
  }

  .service-detail__row {
    margin-left: 0px;
  }

  .service-detail__row .content {
    max-width: 100%;
    color: #313131;
    margin-bottom: 80px;
  }

  .service-detail__slider {
    max-width: 100%;
  }

  .service-detail__form .application-form__container {
    margin: 0px 0px 0px 0px;
  }

  .service-detail-project {
    margin-left: 0px;
  }

  .service-detail-project__row {
    max-width: 100%;
  }

  .news-detail {
    margin-left: 0;
    max-width: 100%;
  }

  .mailing {
    margin-left: 0;
  }
}

@media (max-width: 1023.98px) {
  .header {
    background-color: #fff;
  }

  .header-bottom__menu {
    display: none !important;
  }

  .header-search__row {
    position: fixed;
    z-index: 12;
    width: calc(100% - 60px);
    top: 73px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .header-search__row form {
    background-color: #fff;
  }

  .header-search__close {
    position: fixed;
    font-size: 0;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 30px;
    z-index: 12;
  }

  .header-search__close::before {
    content: "";
    display: block;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg opacity='1'%3E%3Cpath d='M16.066 8.99502C16.1377 8.92587 16.1948 8.84314 16.2342 8.75165C16.2735 8.66017 16.2943 8.56176 16.2952 8.46218C16.2961 8.3626 16.2772 8.26383 16.2395 8.17164C16.2018 8.07945 16.1462 7.99568 16.0758 7.92523C16.0054 7.85478 15.9217 7.79905 15.8295 7.7613C15.7374 7.72354 15.6386 7.70452 15.5391 7.70534C15.4395 7.70616 15.341 7.7268 15.2495 7.76606C15.158 7.80532 15.0752 7.86242 15.006 7.93402L12 10.939L8.995 7.93402C8.92634 7.86033 8.84354 7.80123 8.75154 7.76024C8.65954 7.71925 8.56022 7.69721 8.45952 7.69543C8.35882 7.69365 8.25879 7.71218 8.1654 7.7499C8.07201 7.78762 7.98718 7.84376 7.91596 7.91498C7.84474 7.9862 7.7886 8.07103 7.75087 8.16442C7.71315 8.25781 7.69463 8.35784 7.69641 8.45854C7.69818 8.55925 7.72022 8.65856 7.76122 8.75056C7.80221 8.84256 7.86131 8.92536 7.935 8.99402L10.938 12L7.933 15.005C7.80052 15.1472 7.72839 15.3352 7.73182 15.5295C7.73525 15.7238 7.81396 15.9092 7.95138 16.0466C8.08879 16.1841 8.27417 16.2628 8.46847 16.2662C8.66278 16.2696 8.85082 16.1975 8.993 16.065L12 13.06L15.005 16.066C15.1472 16.1985 15.3352 16.2706 15.5295 16.2672C15.7238 16.2638 15.9092 16.1851 16.0466 16.0476C16.184 15.9102 16.2627 15.7248 16.2662 15.5305C16.2696 15.3362 16.1975 15.1482 16.065 15.006L13.062 12L16.066 8.99502Z' fill='%23313131'/%3E%3C/g%3E%3C/svg%3E");
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 12;
  }

  .header-search__input {
    background-color: #e1e1e1;
  }

  .header-search__btn::before {
    background-color: #99242c;
  }

  .header-search__open {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .header-burger {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    position: relative;
  }

  .header-burger span {
    display: inline-block;
    width: 20px;
    height: 2px;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #99242c;
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  }

  .header-burger span:first-child {
    -webkit-transform: translate(-50%, calc(-50% - 7px));
    -ms-transform: translate(-50%, calc(-50% - 7px));
    transform: translate(-50%, calc(-50% - 7px));
  }

  .header-burger span:nth-child(2) {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .header-burger span:last-child {
    -webkit-transform: translate(-50%, calc(-50% + 7px));
    -ms-transform: translate(-50%, calc(-50% + 7px));
    transform: translate(-50%, calc(-50% + 7px));
  }

  .header-burger.active span {
    width: 12px;
  }

  .header-burger.active span:first-child {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .header-burger.active span:nth-child(2) {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  .header-burger.active span:last-child {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .header-mobile {
    display: block;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 145px);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    background-color: #fff;
    overflow-y: auto;
    -webkit-transition: top 0.5s ease 0s, opacity 0.5s ease 0s, visibility 0.5s ease 0s;
    transition: top 0.5s ease 0s, opacity 0.5s ease 0s, visibility 0.5s ease 0s;
  }

  .header-mobile.open {
    top: 140px;
    opacity: 1;
    visibility: visible;
  }

  .header-bg.active {
    opacity: 1;
    visibility: visible;
    position: fixed;
    width: 110vw;
    height: 100vh;
    top: 0;
    left: -2px;
    z-index: 11;
    background: rgba(0, 0, 0, 0.65);
  }

  .breadcrumbs__row {
    overflow-x: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-column-gap: 36px;
    -moz-column-gap: 36px;
    column-gap: 36px;
    margin-right: -20px;
  }

  .breadcrumbs__row::-webkit-scrollbar {
    display: none;
  }

  .breadcrumbs__item {
    white-space: nowrap;
    display: inline-block;
  }

  .breadcrumbs__item:not(:last-child)::before {
    right: -30px;
  }

  .breadcrumbs__item:last-child {
    margin-right: 20px;
  }

  .main-block {
    margin-top: 0px;
  }

  .main-block__body {
    margin-top: -50px;
  }

  .main-block__title {
    font-size: 35px;
  }

  .numbers {
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
  }

  .product-item {
    max-height: 100% !important;
    height: 100% !important;
  }

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

  .product-item__btn {
    height: 50px !important;
  }

  .news__sections {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -20px;
  }

  .news__sections::-webkit-scrollbar {
    display: none;
  }

  .news__sections a {
    white-space: nowrap;
  }

  .news__sections a:last-child {
    margin-right: 20px;
  }

  .about-history {
    padding-top: 40px;
    padding-bottom: 45px;
  }

  .about-history .title {
    margin-bottom: 60px;
  }

  .about-history__row {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -20px;
  }

  .about-history__row::-webkit-scrollbar {
    display: none;
  }

  .about-history__row.net .about-history__item:nth-child(3n)::after {
    display: block;
  }

  .about-history__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 220px;
    flex: 0 0 220px;
  }

  .about-history__item:last-child {
    margin-right: 20px;
  }

  .about-history__item:last-child::after {
    display: none !important;
  }

  .about-history__item::after {
    width: calc(100% + 30px);
  }

  .about-map {
    padding: 0px 0 45px 0;
    background: transparent;
  }

  .about-map__row,
  .about-map__items {
    display: none;
  }

  .about-map .container {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 0 20px;
    text-align: center;
  }

  .project-completed__filter ul {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -20px;
  }

  .project-completed__filter ul::-webkit-scrollbar {
    display: none;
  }

  .project-completed__filter ul li:last-child {
    margin-right: 20px;
  }

  .project-completed__filter ul a {
    white-space: nowrap;
  }

  .project-row__filter ul {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -20px;
  }

  .project-row__filter ul::-webkit-scrollbar {
    display: none;
  }

  .project-row__filter ul li:last-child {
    margin-right: 20px;
  }

  .project-row__filter ul a {
    white-space: nowrap;
  }

  .vacancy-open__filter ul {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -20px;
  }

  .vacancy-open__filter ul::-webkit-scrollbar {
    display: none;
  }

  .vacancy-open__filter ul li:last-child {
    margin-right: 20px;
  }

  .vacancy-open__filter ul a {
    white-space: nowrap;
  }

  .footer__left {
    padding: 20px 30px;
  }

  .footer__right {
    padding: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .calculate-btn span {
    display: none;
  }
}

@media (max-width: 1023.93px) {
  .header-top {
    padding-bottom: 12px;
    border-bottom: 1px solid #e1e1e1;
  }
}

@media (max-width: 991.98px) {
  .title {
    font-size: 35px;
  }

  .main-block__title {
    font-size: 30px;
  }

  .numbers__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .feedback__right {
    padding: 38px 50px 20px 50px;
  }

  .product-detail__images {
    gap: 30px;
  }

  .vacancy-detail {
    gap: 30px;
  }

  .requisites {
    -ms-grid-columns: 1fr 350px;
    grid-template-columns: 1fr 350px;
  }

  .requisites__left {
    padding: 20px;
  }

  .requisites__info {
    padding: 20px;
  }

  .requisites-contact {
    margin-top: 60px;
  }

  .error {
    padding: 60px 0;
  }

  .contacts {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contacts__title {
    margin-bottom: 30px;
  }

  .contacts__top {
    padding-bottom: 0px;
    border-bottom: 0px;
  }

  .contacts__center {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row-span: 1;
    grid-row: span 1;
    height: 100%;
  }

  .contacts__tabs {
    margin-bottom: 30px;
  }

  .contacts__map {
    width: 100%;
    height: 450px;
  }

  .contacts__map .frame {
    padding: 20px;
    top: 50%;
    left: 50%;
    /* -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); */
  }

  .contacts__map .frame>p {
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 20px;
  }

  .contacts__map .frame .contacts__item p,
  .contacts__map .frame .contacts__item a {
    font-size: 16px;
  }

  .feedback-form {
    margin-right: 350px;
    padding: 30px;
  }

  .feedback-form__title {
    font-size: 30px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 20px;
  }

  .feedback-form__text {
    font-size: 14px;
    line-height: 123.077%;
  }

  .about-info::before {
    height: calc(100% - 40px);
    top: 40px;
  }

  .about-info__item {
    padding: 20px;
  }

  .about-info__items {
    margin-top: -60px;
  }

  .about-info__content {
    padding-top: 40px;
  }

  .project-row__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 10px;
  }

  .project-info__list {
    gap: 10px;
    margin-bottom: 47px;
  }

  .project-info__item {
    padding: 40px 20px;
  }

  .service-detail-list__info {
    padding: 30px 20px;
  }

  .service-detail-list__info ol li {
    color: #707070;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
    position: relative;
    min-height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .service-detail-list__info ol li span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 34px;
    flex: 0 0 34px;
    height: 34px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #99242c;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }

  .service-detail-list__info ol li:not(:last-child) {
    margin-bottom: 30px;
  }

  .service-detail-list__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 950px) {
  .delivery-payment__transportation .grid-box {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .header-top {
    padding: 12px 0px 12px 0px;
  }

  .header-top__item.time {
    display: none;
  }

  .header-top__item.mail {
    display: none;
  }

  .header-top__social {
    display: none;
  }

  .header-bottom {
    padding: 12px 0 8px 0;
    min-height: 100%;
  }

  .header-search__row {
    width: calc(100% - 20px);
    top: 60px;
  }

  .header-search__close {
    top: 10px;
    right: 10px;
  }

  .header-mobile {
    height: calc(100vh - 142px);
    padding: 20px 30px;
  }

  .header-mobile.open {
    top: 135px;
  }

  .header-mobile__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #e1e1e1;
    margin-top: 24px;
    padding-top: 10px;
  }

  .header-mobile__contacts svg {
    opacity: 0.5;
  }

  .catalog-section {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .catalog-section__filter {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: right 0.5s ease 0s, opacity 0.5s ease 0s, visibility 0.5s ease 0s;
    transition: right 0.5s ease 0s, opacity 0.5s ease 0s, visibility 0.5s ease 0s;
    z-index: 13;
    background: #fff;
  }

  .catalog-section__filter.open {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .catalog-section__open {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 16px;
    border-radius: 12px;
    background: #313131;
    margin-bottom: 20px;
  }

  .catalog-section__open svg {
    max-width: 13px;
  }

  .bx-filter {
    padding: 14px 12px 30px 12px;
    max-width: 600px;
    margin: 0px auto;
    height: calc(100% - 70px);
    position: relative;
  }

  .bx-filter .bx-filter-close {
    display: block;
    position: absolute;
    top: 8px;
    right: 0;
    color: #99242c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.13px;
    padding: 24px 30px;
  }

  .bx-filter .bx-filter-title {
    text-align: left;
    padding: 15px 0;
    margin-bottom: 33px;
    font-size: 20px;
    font-weight: 500;
  }

  .bx-filter .bx-filter-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .bx-filter .bx-filter-section::-webkit-scrollbar {
    display: none;
  }

  .bx-filter .price-filter-block {
    gap: 27px;
  }

  .bx-filter .price-input-block {
    width: 100%;
  }

  .bx-filter .price-input-block input {
    width: 100%;
  }

  .bx-filter .price-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
  }

  .bx-filter .bx-ui-slider-track-container {
    margin-top: 26px;
    margin-bottom: 12.5px;
  }

  .bx-filter .bx-ui-slider-track-container .bx-ui-slider-handle {
    width: 25px;
    height: 25px;
    top: -12.5px;
  }

  .bx-filter .bx-filter-price-box {
    margin-bottom: 45px;
  }

  .bx-filter .bx-filter-parameters-box-hint {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
  }

  .bx-filter .bx-filter-parameters-box {
    margin-bottom: 45px;
  }

  .bx-filter .bx-filter-param-text {
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 400;
  }

  .bx-filter .filter-checkbox-block {
    gap: 10px;
  }

  .bx-filter .button.black {
    height: 45px;
    font-size: 13px;
  }

  .bx-filter .button.white {
    height: 58px;
    font-size: 13px;
  }

  .bx-filter .bx-filter-popup-result {
    display: none !important;
  }

  .product-detail-content__info {
    padding: 20px;
  }

  .product-detail-content__items {
    padding: 30px 50px;
  }

  .product-detail-content__list {
    gap: 30px;
  }

  .vacancy-detail-contact {
    gap: 30px;
  }

  .service {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .vacancy-open__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 850px) {
  .vacancy-detail {
    -ms-grid-columns: 1fr 250px;
    grid-template-columns: 1fr 250px;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    padding: 20px;
  }

  .vacancy-detail__conditions {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  .vacancy-detail__buttons {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .vacancy-detail__price {
    margin-bottom: 20px;
  }

  .project-detail-top__list {
    margin-top: -200px;
  }

  .project-detail-top__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(33.333% - 10px);
    flex: 0 1 calc(33.333% - 10px);
  }

  .vacancy__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .vacancy__item {
    max-width: 100%;
  }

  .vacancy__title {
    margin-bottom: 30px;
  }

  .vacancy__content {
    margin-top: 40px;
  }

  .vacancy-open__wrapper {
    width: 100%;
    min-width: 100%;
    height: auto !important;
  }
}

@media (max-width: 800px) {
  .main-block__info {
    padding: 0;
  }

  .main-block__body .container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .main-block__btn {
    max-width: 350px;
    padding-right: 0;
  }

  .feedback {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .feedback__left {
    padding: 18px 50px;
    min-height: 263px;
  }

  .feedback__title {
    position: relative;
    z-index: 2;
    color: #fdfdfd;
    font-family: Jost;
    font-size: 18px;
    font-weight: 700;
    line-height: 133.333%;
    letter-spacing: 0.18px;
    text-transform: uppercase;
    max-width: 500px;
  }

  .product-detail-content__info {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
  }

  .product-detail-content__info .product-detail-content__btn {
    display: inline-block !important;
  }

  .product-detail-content__title {
    margin-bottom: 20px;
  }

  .product-detail-content__items {
    margin-top: 0;
    border-radius: 12px;
    padding: 20px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .product-detail-content__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: 170px;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease 0s;
    transition: max-height 0.5s ease 0s;
    padding: 0;
  }

  .product-detail-content__list::before {
    display: none;
  }

  .product-detail-content__list::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 95px;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(246, 246, 246, 0)), to(#f6f6f6));
    background: linear-gradient(180deg, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
    z-index: 2;
    -webkit-transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s;
    transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s;
  }

  .product-detail-content__list.open::after {
    opacity: 0;
    visibility: hidden;
  }

  .product-detail-content__list ul li {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail-content__list ul li span {
    text-align: right;
  }

  .requisites {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .requisites__right {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }

  .requisites__info {
    padding: 30px 20px;
  }

  .feedback-form {
    margin-right: 0;
  }

  .about-top__title {
    margin-top: 80px;
    font-size: 80px;
    line-height: 166.667%;
    letter-spacing: -0.6px;
  }

  .about-info::before {
    height: calc(100% - 230px);
    top: 230px;
  }

  .about-info__items {
    gap: 20px;
    max-width: 280px;
    margin-top: -250px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .about-info__item {
    min-height: 139px;
    padding: 40px 50px;
  }

  .application-form__left {
    padding: 30px 20px;
  }

  .application-form__right {
    padding: 30px 10px 10px;
  }

  .application-form__img {
    margin: 0 -10px;
  }

  .footer__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .footer__left {
    padding-bottom: 40px;
  }

  .footer__right {
    margin-top: -20px;
  }

  .footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__logo {
    margin-bottom: 28px;
  }
}

@media (max-width: 767.98px) {
  .title-additional {
    margin-bottom: 30px;
  }

  .breadcrumbs {
    margin: 20px 0px;
  }

  .breadcrumbs__item a {
    font-size: 13px;
  }

  .breadcrumbs__item span {
    font-size: 13px;
  }

  .breadcrumbs__info {
    gap: 20px;
    margin-top: 20px;
  }

  .breadcrumbs__info h1 {
    font-size: 30px;
  }

  .breadcrumbs__back {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    height: 30px;
    background: #fdfdfd;
    -webkit-box-shadow: 0px 4px 4px 2px rgba(194, 192, 192, 0.14);
    box-shadow: 0px 4px 4px 2px rgba(194, 192, 192, 0.14);
  }

  .breadcrumbs__back::before {
    content: "";
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M12.6667 8H3.33333M3.33333 8L7.33333 12M3.33333 8L7.33333 4' stroke='%239E9FA1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #9e9fa1;
    -webkit-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
  }

  .products-services {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .numbers__item:last-child {
    border-bottom: none;
  }

  .catalog {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }

  .product-detail__characteristics {
    display: none;
  }

  .product-detail__images {
    margin-top: 40px;
    gap: 15px;
  }

  .product-detail__images img {
    max-width: 100%;
  }

  .product-detail-slider {
    margin: 0 -5px;
    max-height: 300px;
  }

  .product-detail-slider__slide {
    padding: 0 5px;
  }

  .product-detail-default__old {
    font-size: 16px;
  }

  .product-detail-default__discount {
    font-size: 16px;
    max-width: 65px;
    padding: 5px;
  }

  .product-detail-default__price {
    font-size: 30px;
  }

  .product-detail-no-discount {
    font-size: 30px;
  }

  .product-detail-not-accurate__price {
    font-size: 30px;
  }

  .product-detail-content__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 30px);
    flex: 0 1 calc(50% - 30px);
  }

  .vacancy-detail-contact {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .delivery-payment .title-additional {
    margin-bottom: 30px;
  }

  .delivery-payment__item {
    padding: 20px;
  }

  .contacts {
    padding: 30px 20px;
  }

  .project-completed__slider {
    -webkit-clip-path: inset(-100vw -100vw -100vw 0);
    clip-path: inset(-100vw -100vw -100vw 0);
  }

  .project-completed__slider .slick-list {
    overflow: visible !important;
  }

  .project-completed__slide {
    width: 310px;
  }

  .after-text {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .application-form__info {
    color: #333333;
    font-size: 20px;
    font-weight: 500;
    line-height: 110%;
    margin-bottom: 20px;
  }

  .application-form .form-row {
    margin-top: 20px;
  }

  .vacancy-open__filter {
    margin-bottom: 20px;
  }

  .vacancy-open__item {
    gap: 15px;
  }
}

@media (max-width: 767.98px) and (any-hover: hover) {
  .breadcrumbs__back:hover {
    background-color: #ffe1e1;
  }
}

@media (max-width: 700px) {
  .project-detail-top__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 10px);
    flex: 0 1 calc(50% - 10px);
    min-height: 103px;
  }

  .application-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .application-form__left {
    border-radius: 12px;
  }

  .application-form__right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .application-form__right ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  .application-form__img {
    margin-bottom: -150px;
  }

  .application-form__img img:first-child {
    display: none;
  }

  .application-form__img img:last-child {
    display: block;
  }

  .application-form__text {
    font-size: 14px;
  }

  .mailing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .mailing__info {
    max-width: 100%;
  }

  .mailing__form {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: 1260px;
    padding: 0 10px;
  }

  .button {
    height: 50px;
    border-radius: 6px;
  }

  .button.white {
    height: 45px;
    font-size: 13px;
  }

  .form-group textarea {
    padding: 20px;
    font-weight: 400;
  }

  .control-file {
    gap: 8px;
  }

  .content p {
    margin-bottom: 10px;
  }

  .control-label {
    left: 10px;
    font-size: 14px;
  }

  .control-label .asterisk {
    font-size: 16px;
  }

  .form-control {
    width: 100%;
    height: 45px;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 14px;
  }

  .help-block {
    position: absolute;
    top: -30px;
    font-size: 12px;
    border-radius: 6px;
    background: #fcd3d3;
    padding: 12px 17px;
  }

  .submit-button {
    height: 45px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.39px;
  }

  .form-checkbox {
    max-width: 180px;
  }



  .form-checkbox span {
    padding-left: 25px;
    min-width: 180px;
  }

  .form-checkbox span::before {
    left: 6px;
  }

  .form-checkbox span::after {
    left: 10px;
  }

  .margin-bottom-row {
    margin-bottom: 60px;
  }

  .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 110%;
  }

  .head-row {
    margin-bottom: 30px;
  }

  .link {
    display: none;
  }

  .header-top {
    padding: 13px 0;
  }

  .header-top__phone {
    max-width: 150px;
    position: relative;
  }

  .header-top__phone a {
    font-size: 12px;
  }

  .header-top__phone a:not(:last-child) {
    margin-bottom: 6px;
  }

  .header-top__phone::before {
    content: "";
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg opacity='0.6'%3E%3Cpath d='M7.12685 3.19291C6.89905 2.62343 6.34749 2.25 5.73413 2.25H3.67105C2.88623 2.25 2.25 2.88607 2.25 3.6709C2.25 10.3419 7.65808 15.75 14.3291 15.75C15.1139 15.75 15.75 15.1137 15.75 14.3289L15.7503 12.2655C15.7503 11.6521 15.377 11.1006 14.8075 10.8728L12.8302 10.0822C12.3186 9.87758 11.7362 9.96967 11.313 10.3224L10.8026 10.748C10.2066 11.2447 9.32972 11.2052 8.78115 10.6566L7.34417 9.21829C6.79559 8.66972 6.75505 7.7935 7.25171 7.19751L7.67725 6.68722C8.02996 6.26397 8.12287 5.68137 7.91825 5.16982L7.12685 3.19291Z' stroke='%2399242C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #99242c;
    opacity: 0.6;
  }

  .header-top__phone svg {
    display: none;
  }

  .header-top__phone div {
    padding-left: 28px;
  }

  .header-top__phone .header-top__item {
    font-size: 12px;
    font-weight: 500;
    color: #707070;
    font-family: Inter;
    font-size: 12px;
  }

  .header-top__phone .header-top__item:not(:last-child) {
    margin-bottom: 6px;
  }

  .header-top__right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 10px;
  }

  .header-top__local {
    font-size: 13px;
    position: relative;
    padding-left: 26px;
  }

  .header-top__local::before {
    content: "";
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg%3E%3Cpath d='M3.75 7.44214C3.75 11.081 6.93336 14.0902 8.34239 15.2439C8.54405 15.409 8.64608 15.4926 8.79653 15.5349C8.91368 15.5679 9.0861 15.5679 9.20325 15.5349C9.35398 15.4925 9.4553 15.4098 9.65771 15.244C11.0668 14.0903 14.2499 11.0813 14.2499 7.44247C14.2499 6.06539 13.6968 4.74454 12.7123 3.77079C11.7277 2.79705 10.3924 2.25 9.00006 2.25C7.60767 2.25 6.27226 2.79713 5.28769 3.77087C4.30312 4.74462 3.75 6.06505 3.75 7.44214Z' stroke='%2399242C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.5 6.75C7.5 7.57843 8.17157 8.25 9 8.25C9.82843 8.25 10.5 7.57843 10.5 6.75C10.5 5.92157 9.82843 5.25 9 5.25C8.17157 5.25 7.5 5.92157 7.5 6.75Z' stroke='%2399242C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #99242c;
    opacity: 0.5;
  }

  .header-top__local svg {
    display: none;
  }

  .header-lang {
    min-height: 24px;
  }

  .header-lang__title {
    font-size: 13px;
    font-weight: 500;
    line-height: 100%;
    padding-right: 24px;
    position: relative;
    z-index: 4;
  }

  .header-lang__select {
    padding: 4px 6px;
    width: 64px;
    min-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .header-lang__select ul {
    padding-top: 10px;
  }

  .header-lang__select ul li {
    font-size: 13px;
  }

  .header-lang__select ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .header-lang__select ul li span {
    display: none;
  }

  .header-lang__select ul li a {
    color: #99242c;
    opacity: 0.6;
  }

  .header-bottom {
    padding: 10px 0 8px 0;
  }

  .header-bottom__btn {
    display: none;
  }

  .header-bottom__logo img {
    max-width: 92px;
  }

  .header-bottom__right {
    gap: 10px;
  }

  .header-search__open {
    opacity: 0.7;
    background-color: transparent;
  }

  .header-mobile {
    height: calc(100vh - 127px);
  }

  .header-mobile.open {
    top: 120px;
  }

  .header-mobile__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 24px;
    max-width: 260px;
  }

  .local__title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .application {
    padding: 50px 18px 18px;
  }

  .application__title {
    font-size: 13px;
    line-height: 130.769%;
  }

  .application__text {
    font-size: 13px;
    font-weight: 400;
    line-height: 123.077%;
  }

  .breadcrumbs__info {
    gap: 20px;
    margin-top: 20px;
  }

  .breadcrumbs__info h1 {
    font-size: 20px;
    line-height: 110%;
  }

  .hystmodal__wrap {
    padding: 0 10px;
  }

  .vacancy-open__row {
    margin-bottom: 50px;
  }

  .hystmodal__window {
    border-radius: 6px;
  }

  .hystmodal__window.sent {
    max-width: 100%;
  }

  .hystmodal__window {
    width: 580px;
    border-radius: 12px;
  }

  .hystmodal__window.sent {
    max-width: 436px;
  }

  .hystmodal__window.vacancy .application {
    padding: 30px 20px;
  }

  .hystmodal__window.vacancy .application .form-row {
    margin-top: 30px;
  }

  .hystmodal__window.vacancy .application .button {
    margin-top: 30px;
  }

  .main-block {
    margin-bottom: 60px;
  }

  .main-block__video {
    height: 400px;
  }

  .main-block__video img {
    border-radius: 0px;
  }

  .main-block__video video {
    border-radius: 0px;
  }

  .main-block__body {
    border-radius: 6px 6px 0px 0px;
    padding: 16px 10px 0 10px;
  }

  .main-block__body .container {
    gap: 20px;
  }

  .main-block__title {
    font-size: 22px;
    font-weight: 500;
    line-height: 109.091%;
    letter-spacing: -0.22px;
    margin-bottom: 17px;
  }

  .main-block__text {
    font-size: 14px;
    font-weight: 600;
    line-height: 128.571%;
  }

  .products-services {
    gap: 5px;
  }

  .product-card {
    border-radius: 6px;
    height: 240px;
    position: relative;
    padding: 4px;
  }

  .product-card::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 14px;
    right: 14px;
    border-radius: 6px;
    background: #99242c;
    z-index: 2;
  }

  .product-card::after {
    content: "";
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10' fill='none'%3E%3Cpath d='M0.6912 9.15157C0.568775 9.02911 0.5 8.86304 0.5 8.68988C0.5 8.51672 0.568775 8.35065 0.6912 8.22818L3.92372 4.99567L0.6912 1.76315C0.572244 1.63999 0.506422 1.47503 0.50791 1.30381C0.509398 1.13258 0.578077 0.968793 0.699154 0.847715C0.820232 0.726637 0.984021 0.657959 1.15524 0.656471C1.32647 0.654984 1.49143 0.720805 1.61459 0.839761L5.3088 4.53397C5.43123 4.65643 5.5 4.82251 5.5 4.99567C5.5 5.16883 5.43123 5.3349 5.3088 5.45736L1.61459 9.15157C1.49213 9.274 1.32606 9.34277 1.15289 9.34277C0.979733 9.34277 0.813662 9.274 0.6912 9.15157Z' fill='white'/%3E%3C/svg%3E");
    position: absolute;
    width: 6px;
    height: 10px;
    top: 21px;
    right: 22px;
    background-color: #fff;
    z-index: 2;
  }

  .product-card__body {
    gap: 0px;
    min-height: 60px;
  }

  .product-card__title {
    border-radius: 4px;
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 107.692%;
  }

  .product-card__arrow {
    display: none;
  }

  .service-card {
    border-radius: 6px;
    height: 240px;
    position: relative;
    padding: 4px;
  }

  .service-card::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 14px;
    right: 14px;
    border-radius: 6px;
    background: #99242c;
    z-index: 2;
  }

  .service-card::after {
    content: "";
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10' fill='none'%3E%3Cpath d='M0.6912 9.15157C0.568775 9.02911 0.5 8.86304 0.5 8.68988C0.5 8.51672 0.568775 8.35065 0.6912 8.22818L3.92372 4.99567L0.6912 1.76315C0.572244 1.63999 0.506422 1.47503 0.50791 1.30381C0.509398 1.13258 0.578077 0.968793 0.699154 0.847715C0.820232 0.726637 0.984021 0.657959 1.15524 0.656471C1.32647 0.654984 1.49143 0.720805 1.61459 0.839761L5.3088 4.53397C5.43123 4.65643 5.5 4.82251 5.5 4.99567C5.5 5.16883 5.43123 5.3349 5.3088 5.45736L1.61459 9.15157C1.49213 9.274 1.32606 9.34277 1.15289 9.34277C0.979733 9.34277 0.813662 9.274 0.6912 9.15157Z' fill='white'/%3E%3C/svg%3E");
    position: absolute;
    width: 6px;
    height: 10px;
    top: 21px;
    right: 22px;
    background-color: #fff;
    z-index: 2;
  }

  .service-card__img {
    width: 80px;
    height: 80px;
    top: 25px;
    left: 13px;
  }

  .service-card__img svg {
    /* -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg); */
  }

  .service-card__left {
    padding: 12px;
    border-radius: 4px;
  }

  .service-card__body {
    min-height: 60px;
  }

  .service-card__suptitle {
    margin-bottom: 10px;
  }

  .service-card__title {
    font-size: 13px;
    font-weight: 500;
    line-height: 107.692%;
    color: #313131;
  }

  .service-card__arrow {
    display: none;
  }

  .numbers__item {
    padding: 0 0 10px 0;
  }

  .numbers__top {
    margin-bottom: 20px;
  }

  .numbers__value {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -2.2px;
    text-transform: uppercase;
  }

  .numbers__title {
    margin-bottom: 0px;
    font-size: 16px;
  }

  .numbers__info {
    font-size: 14px;
    line-height: 135.714%;
  }

  .feedback {
    border-radius: 6px;
  }

  .feedback__left {
    padding: 18px;
    padding-bottom: 38px;
    border-radius: 6px;
    min-height: 263px;
  }

  .feedback__title {
    font-size: 13px;
    font-weight: 700;
    line-height: 130.769%;
    max-width: 350px;
  }

  .feedback__btn {
    max-width: 210px;
  }

  .feedback__img {
    bottom: -27px;
    right: -136px;
  }

  .feedback__img img {
    max-width: 439px;
  }

  .feedback__right {
    border-radius: 6px;
    padding: 24px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
  }

  .feedback__info {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 130.769%;
    padding: 0;
  }

  .feedback__text {
    padding: 0;
    font-size: 13px;
    line-height: 123.077%;
  }

  .feedback .form-row {
    margin-top: 20px;
  }

  .catalog {
    gap: 5px;
  }

  .product-item__top {
    height: 180px;
  }

  .product-item__body {
    padding: 10px;
  }

  .bx-filter .bx-filter-close {
    font-size: 13px;
  }

  .product-detail__row {
    margin-right: -10px;
    margin-bottom: 17px;
  }

  .product-detail__info {
    margin-right: 10px;
    padding: 10px;
  }

  .product-detail-slider {
    -webkit-clip-path: inset(-100vw -100vw -100vw 0);
    clip-path: inset(-100vw -100vw -100vw 0);
    margin: 0 -4px;
  }

  .product-detail-slider .slick-list {
    overflow: visible !important;
  }

  .product-detail-slider__slide {
    padding: 0 4px;
  }

  .product-detail-slider__item {
    width: 260px;
  }

  .product-detail-default__top {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

  .product-detail-default__discount {
    font-size: 14px;
    max-width: 55px;
  }

  .product-detail-default .button {
    width: 100%;
    max-width: 200px;
  }

  .product-detail-default__price {
    text-align: left;
  }

  .product-detail-no-discount .button {
    width: 100%;
    max-width: 200px;
  }

  .product-detail-not-accurate .button {
    width: 100%;
    max-width: 200px;
  }

  .product-detail-order .black {
    height: 50px;
  }

  .product-detail-content .content {
    font-size: 14px;
    color: #313131;
    line-height: 157.143%;
    max-height: 155px;
    overflow: hidden;
    position: relative;
    -webkit-transition: max-height 0.5s ease 0s;
    transition: max-height 0.5s ease 0s;
  }

  .product-detail-content .content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 95px;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(246, 246, 246, 0)), to(#f6f6f6));
    background: linear-gradient(180deg, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
    z-index: 2;
    -webkit-transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s;
    transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s;
  }

  .product-detail-content .content p {
    color: #313131;
    font-size: 14px;
  }

  .product-detail-content .content.open::before {
    opacity: 0;
    visibility: hidden;
  }

  .product-detail-content__info {
    margin-top: 40px;
  }

  .product-detail-content__btn {
    display: inline-block;
  }

  .product-detail-content__list {
    gap: 6px;
  }

  .product-detail-content__list ul li:not(:last-child) {
    margin-bottom: 6px;
  }

  .product-detail-content__list ul li p,
  .product-detail-content__list ul li span {
    font-size: 14px;
    font-weight: 400;
    line-height: 123.077%;
  }

  .product-detail-content__items {
    padding: 20px 10px;
    gap: 10px;
  }

  .product-detail-content__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 10px);
    flex: 0 1 calc(50% - 10px);
  }

  .interested-slider {
    clip-path: inset(-100vw -100vw -100vw 0);
  }

  .interested-slider .slick-list {
    overflow: visible !important;
  }

  .interested-slider__row {
    margin: 0 -3px;
  }

  .interested-slider__slide {
    width: 266px;
    padding: 0 3px;
  }

  .interested-slider__slide .product-item__content {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }

  .interested-slider__slide .product-item__price {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .interested-slider__slide .product-item__discount {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 0;
    grid-row-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }

  .interested-slider__slide .product-item__old {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  .interested-slider__slide .service-card {
    border-radius: 12px;
    padding: 16px;
  }

  .interested-slider__slide .service-card__left {
    border-radius: 12px;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 6px;
  }

  .faq__header {
    padding: 16px;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 128.571%;
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
  }

  .faq__arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    height: 30px;
  }

  .faq__arrow::before,
  .faq__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  }

  .faq__arrow::before {
    width: 16px;
  }

  .faq__arrow::after {
    height: 16px;
  }

  .faq__body {
    padding: 0px 16px 16px;
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    line-height: 128.571%;
    letter-spacing: 0.28px;
  }

  .faq__body p {
    font-size: 14px;
  }

  .vacancy-detail__buttons {
    gap: 4px;
  }

  .vacancy-detail .button {
    height: 60px;
    margin-bottom: 0;
    border-radius: 12px;
  }

  .vacancy-detail__item:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .vacancy-detail__item p {
    margin-bottom: 20px;
  }

  .vacancy-detail__item .content {
    color: #707070;
  }

  .vacancy-detail__item .content ul li {
    color: #707070;
  }

  .vacancy-detail__item .content ul li::before {
    background-color: #707070;
  }

  .vacancy-detail__row {
    margin-bottom: 60px;
  }

  .vacancy-detail-contact {
    padding: 30px 20px 20px;
  }

  .vacancy-detail-contact__title {
    margin-bottom: 20px;
  }

  .vacancy-detail-contact__row {
    margin-bottom: 20px;
  }

  .vacancy-detail-contact__item:not(:last-child) {
    margin-bottom: 6px;
  }

  .requisites__title {
    font-size: 16px;
    line-height: 100%;
  }

  .requisites__item .content {
    font-size: 16px;
    font-weight: 400;
    line-height: 123.077%;
    white-space: normal;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }

  .requisites__item .content p {
    color: #313131;
    word-break: break-all;
    font-size: 16px;
    line-height: 123.077%;
  }

  .requisites__item>p {
    color: #313131;
  }

  .requisites__item>p:first-child {
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
  }

  .requisites__item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
  }

  .requisites__info .requisites__item:not(:last-child) {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .requisites-contact__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 110%;
  }

  .delivery-payment__conditions {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .delivery-payment__conditions .grid-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .delivery-payment__transportation {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .delivery-payment__transportation .grid-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .news__sections {
    margin-bottom: 20px;
  }

  .news__sections a {
    color: #707070;
    font-size: 15px;
    font-weight: 400;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 14px;
    gap: 16px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #9e9fa1;
    opacity: 0.8;
    background: #fff;
  }

  .news__sections a svg {
    max-width: 24px;
    fill: #313131;
  }

  .news__sections a svg path {
    fill: #313131;
  }

  .news__sections a:active {
    background: #feefef;
    color: #99242c;
  }

  .news-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .news-item__left {
    height: 300px;
  }

  .news-item__title {
    font-size: 16px;
    line-height: 130.769%;
  }

  .news-item__text {
    -webkit-line-clamp: 3;
    font-size: 14px;
    line-height: 123.077%;
  }

  .news-item__btn {
    padding: 8px 34px 8px 0px;
    font-size: 14px;
    text-transform: uppercase;
  }

  .news-item.icon {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-item.icon .news-item__left {
    height: auto;
  }

  .error__title {
    margin-bottom: 30px;
  }

  .error__info {
    color: #313131;
    font-size: 18px;
    font-weight: 700;
    line-height: 133.333%;
    margin-bottom: 20px;
  }

  .error__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 34px;
  }

  .error__img {
    margin-left: -10px;
  }

  .error__img img {
    max-width: 500px;
  }

  .contacts__map {
    height: 380px;
  }

  .contacts__map .frame .contacts__item p,
  .contacts__map .frame .contacts__item a {
    font-size: 13px;
  }

  .feedback-form {
    padding: 30px 20px;
  }

  .feedback-form__title {
    font-size: 20px;
  }

  .feedback-form__text {
    font-size: 13px;
  }

  .feedback-form .form-row {
    margin-top: 20px;
  }

  .about-top__title {
    font-size: 60px;
    margin-top: 100px;
  }

  .about-info__content {
    padding-top: 60px;
  }

  .about-info__content::before {
    width: calc(100% + 20px);
    left: -10px;
  }

  .about-info__content p {
    margin-bottom: 20px;
  }

  .about-info__content p:first-child {
    text-indent: 0px;
  }

  .about-info__video {
    margin: 0 -10px;
  }

  .about-info .title-additional {
    margin-bottom: 35px;
    text-align: left;
    margin-left: 10px;
  }

  .about-map .container {
    margin: 0 10px;
  }

  .about-map .title {
    margin-bottom: 40px;
  }

  .about-quote {
    padding: 10px 10px 20px;
  }

  .about-quote::before {
    right: 11px;
    bottom: -12px;
  }

  .about-quote__top {
    margin-bottom: 20px;
    gap: 16px;
  }

  .about-quote__photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    height: 120px;
  }

  .project-completed__slider {
    padding-bottom: 0px;
  }

  .project-completed__slide {
    width: 270px;
  }

  .project-completed__filter {
    margin-top: -5px;
  }

  .project-card__name {
    font-size: 13px;
    line-height: 130.769%;
  }

  .project-card__info {
    font-size: 13px;
    line-height: 123.077%;
  }

  .project-card__btn {
    border-radius: 12px;
  }

  .after-text {
    font-size: 13px;
    line-height: 123.077%;
  }

  .project-video {
    margin-bottom: 10px;
    height: 352px;
  }

  .project-video .container {
    padding: 0;
  }

  .project-video video {
    width: 100%;
    height: 352px;
  }

  .project-video .my-video-dimensions {
    width: 100%;
    height: 352px;
    border-radius: 12px;
    overflow: hidden;
  }

  .project-info__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .project-detail-top {
    margin-bottom: 60px;
  }

  .project-detail-top__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

  .project-detail-top__list {
    margin-top: -312px;
  }

  .project-detail__content {
    margin-bottom: 60px;
  }

  .project-detail__images {
    -webkit-clip-path: inset(-100vw -100vw -100vw 0);
    clip-path: inset(-100vw -100vw -100vw 0);
  }

  .project-detail__images .slick-list {
    overflow: visible !important;
  }

  .project-detail__image {
    width: 270px;
  }

  .service-detail-list {
    margin-bottom: 60px;
  }

  .service-detail-list__info {
    padding: 30px 20px;
  }

  .service-detail-list__info ol li:not(:last-child) {
    margin-bottom: 20px;
  }

  .service-detail-list__icon {
    display: none;
  }

  .service-detail-list__row {
    display: block;
  }

  .service-detail__row .content {
    margin-bottom: 35px;
  }

  .service-detail__slider {
    margin-bottom: 60px;
    -webkit-clip-path: inset(-100vw -100vw -100vw 0);
    clip-path: inset(-100vw -100vw -100vw 0);
  }

  .service-detail__slider .slick-list {
    overflow: visible !important;
  }

  .service-detail__slide {
    width: 290px;
  }

  .service-detail__slide__img {
    height: 200px;
  }

  .vacancy__content {
    padding: 20px;
  }

  .vacancy__content p {
    margin-bottom: 20px;
  }

  .news-detail__date {
    margin-bottom: 20px;
  }

  .news-detail__slider {
    margin-bottom: 30px;
  }

  .news-detail__slider .slick-prev {
    left: -5px;
  }

  .news-detail__slider .slick-next {
    right: -5px;
  }

  .mailing {
    padding: 20px;
  }

  .mailing svg {
    margin-bottom: 15px;
  }

  .mailing__title {
    margin-bottom: 15px;
  }

  .mailing__form .form-control {
    height: 60px !important;
    border-radius: 12px !important;
  }

  .mailing__form .button {
    height: 60px !important;
    border-radius: 12px !important;
  }

  .footer__menu {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }

  .footer__left {
    padding: 28px 18px 48px 18px;
  }

  .footer__right {
    padding: 28px 18px;
  }

  .footer__links {
    margin-bottom: 28px;
  }

  .footer__links>*:not(:last-child) {
    margin-bottom: 16px;
  }

  .footer__links a,
  .footer__links span {
    font-size: 13px;
  }

  .footer__phones a:not(:last-child) {
    margin-bottom: 7px;
  }

  .footer__social p {
    font-size: 13px;
    font-weight: 400;
    line-height: 123.077%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social div svg {
    max-width: 40px;
    width: 40px;
    height: 40px;
  }

  .footer__bottom {
    padding: 24px 18px 40px 18px;
    gap: 20px;
  }

  .footer__info {
    line-height: 128.571%;
  }

  .footer__copyright {
    margin-bottom: 14px;
  }

  .footer__copyright p {
    margin-top: 10px;
  }

  .footer__policy {
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer__policy a {
    padding: 15px 0;
    color: #707070;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: -0.14px;
    text-decoration-line: underline;
  }

  .calculate-btn {
    right: 10px;
  }

  .shelving-card {
    border-radius: 6px;
    position: relative;
    min-height: 330px;
    padding: 4px;
  }

  .shelving-card::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 14px;
    right: 14px;
    border-radius: 6px;
    background: #99242c;
    z-index: 2;
  }

  .shelving-card::after {
    content: "";
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10' fill='none'%3E%3Cpath d='M0.6912 9.15157C0.568775 9.02911 0.5 8.86304 0.5 8.68988C0.5 8.51672 0.568775 8.35065 0.6912 8.22818L3.92372 4.99567L0.6912 1.76315C0.572244 1.63999 0.506422 1.47503 0.50791 1.30381C0.509398 1.13258 0.578077 0.968793 0.699154 0.847715C0.820232 0.726637 0.984021 0.657959 1.15524 0.656471C1.32647 0.654984 1.49143 0.720805 1.61459 0.839761L5.3088 4.53397C5.43123 4.65643 5.5 4.82251 5.5 4.99567C5.5 5.16883 5.43123 5.3349 5.3088 5.45736L1.61459 9.15157C1.49213 9.274 1.32606 9.34277 1.15289 9.34277C0.979733 9.34277 0.813662 9.274 0.6912 9.15157Z' fill='white'/%3E%3C/svg%3E");
    position: absolute;
    width: 6px;
    height: 10px;
    top: 21px;
    right: 22px;
    background-color: #fff;
    z-index: 2;
  }

  .shelving-card__left {
    padding: 12px;
    border-radius: 4px;
  }

  .shelving-card__body {
    min-height: 60px;
  }

  .shelving-card__suptitle {
    margin-bottom: 10px;
  }

  .shelving-card__title {
    font-size: 13px;
    font-weight: 500;
    line-height: 107.692%;
    color: #313131;
  }

  .shelving-card__arrow {
    display: none;
  }
}

@media (max-width: 640px) and (any-hover: hover) {
  .news__sections a:hover {
    border-color: #99242c;
  }

  .footer__policy a:hover {
    text-decoration: none;
  }
}

@media (max-width: 600px) {
  .catalog-section__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .vacancy-detail {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .vacancy-detail__price {
    margin-bottom: 20px;
  }

  .vacancy-detail__experience {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .vacancy-detail__text {
    font-size: 13px;
    line-height: 100%;
  }

  .vacancy-detail__conditions div {
    gap: 5px;
  }

  .vacancy-detail__conditions div:not(:last-child) {
    margin-bottom: 6px;
  }

  .vacancy-detail__conditions div p {
    font-size: 13px;
    line-height: 123.077%;
  }

  .project-row__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .service-detail-project__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 550px) {
  .product-detail__images {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-detail__images img {
    max-width: 400px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .breadcrumbs__info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .service-card__description {
    display: none;
  }

  .news-item__left {
    height: 180px;
  }

  .about-history__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
  }

  .about-quote__photo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    height: 90px;
  }

  .about-quote__post {
    font-size: 12px;
    line-height: 100%;
  }

  .about-quote__name {
    font-size: 16px;
    line-height: 112.5%;
    letter-spacing: 0.16px;
  }

  .about-quote__text {
    font-size: 14px;
    line-height: 157.143%;
    letter-spacing: 0.28px;
  }

  .project-detail__images {
    padding-bottom: 0;
  }

  .application-form__img {
    margin-bottom: -100px;
  }

  .news-detail__img {
    height: 200px;
  }

  .footer__menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 450px) {
  .product-detail-default__discount {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.33px;
    max-width: 45px;
  }

  .product-detail-default__price {
    color: #333333;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.48px;
  }

  .product-detail-default__old {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.42px;
  }

  .product-detail-default .button {
    border-radius: 12px;
    max-width: 135px;
    text-align: left;
    line-height: 114%;
  }

  .product-detail-no-discount {
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.48px;
  }

  .product-detail-no-discount .button {
    border-radius: 12px;
    max-width: 135px;
    text-align: left;
    line-height: 114%;
  }

  .product-detail-not-accurate__price {
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.48px;
    margin-top: 10px;
  }

  .product-detail-not-accurate__text {
    color: #bdbdbd;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.54px;
  }

  .product-detail-not-accurate .button {
    border-radius: 12px;
    max-width: 135px;
    text-align: left;
    line-height: 114%;
  }

  .product-detail-order {
    -webkit-column-gap: 6px;
    -moz-column-gap: 6px;
    column-gap: 6px;
    row-gap: 10px;
  }

  .product-detail-order__title {
    text-align: left;
    width: 100%;
  }

  .product-detail-order .button {
    border-radius: 12px;
    height: 66px !important;
    text-align: left;
  }

  .requisites__item .content {
    font-size: 13px;
  }

  .requisites__item .content p {
    font-size: 13px;
  }

  .requisites-contact__text {
    font-size: 13px;
    line-height: 123.077%;
  }

  .vacancy-open__btn {
    max-width: 100%;
    border-radius: 12px;
  }
}

@media (max-width: 400px) {
  .header-mobile__btn {
    max-width: 100%;
  }

  .main-block__video {
    height: 250px;
  }

  .main-block__body {
    margin-top: -10px;
  }

  .product-item {
    min-height: 330px;
  }

  .product-item__bottom {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 100px;
    grid-template-columns: 1fr 100px;
    gap: 10px;
  }

  .product-item__btn {
    text-align: left;
    height: 50px;
    border-radius: 12px;
  }

  .product-item__title {
    font-size: 13px;
    font-weight: 500;
    line-height: 107.692%;
  }

  .product-item__list li:not(:last-child) {
    margin-bottom: 2px;
  }

  .product-item__list li span {
    font-size: 13px;
    line-height: 123.077%;
  }

  .product-item__content {
    -ms-grid-columns: auto 44px;
    grid-template-columns: auto 44px;
    row-gap: 0px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .product-item__old {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
  }

  .product-item__discount {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }

  .vacancy-detail-contact .button {
    max-width: 100%;
    border-radius: 12px;
  }

  .requisites__info .button {
    padding: 24px 20px;
    text-align: left;
    height: 74px;
  }

  .news-item__title {
    font-size: 13px;
  }

  .news-item__text {
    font-size: 13px;
  }

  .news-item__btn {
    font-size: 13px;
  }

  .error__img img {
    max-width: 315px;
  }

  .contacts__map {
    height: 500px;
  }

  .footer__social p {
    max-width: 150px;
  }
}

@media (max-width: 320px) {
  .application-form__img img:first-child {
    display: block;
  }

  .application-form__img img:last-child {
    display: none;
  }
}

@media (any-hover: hover) {
  .button:hover::before {
    content: "";
    opacity: 1;
  }

  .button.white:hover {
    background-color: #e1e1e1;
  }

  .button.black:hover {
    background-color: #707070;
  }

  .link:hover {
    color: #707070;
  }

  .link:hover::before {
    background: #99242c;
  }

  .form-group textarea:hover {
    border-color: #707070;
    background-color: #fdfdfd !important;
  }

  .form-control:hover {
    border-color: #707070;
    background-color: #fdfdfd !important;
  }

  .content a:hover {
    opacity: 0.6;
  }

  .slick-arrow:hover::before {
    opacity: 0.6;
  }

  .slick .slick-arrow:hover {
    background: #fff;
  }

  .slick .slick-arrow:hover::before {
    background: #707070;
  }

  .slick .slick-arrow.slick-disabled:hover::before {
    background: #fff;
  }

  .slick .slick-arrow.slick-disabled:hover {
    background: #c0c0c0;
  }

  .header-top__item:hover svg {
    opacity: 1;
  }

  .header-top__phone:hover svg {
    opacity: 1;
  }

  .header-top__social a:hover {
    opacity: 1;
  }

  .header-top__local:hover svg {
    opacity: 1;
  }

  .header-lang__title:hover {
    opacity: 1;
  }

  .header-lang__select li a:hover {
    color: #99242c;
  }

  .header-bottom__menu ul li:hover>a {
    color: #9e9fa1;
  }

  .header-bottom__menu ul li:hover ul {
    opacity: 1;
    pointer-events: all;
  }

  .header-bottom__menu ul li ul:hover {
    opacity: 1;
    pointer-events: all;
  }

  .header-search__close:hover {
    opacity: 0.7;
  }

  .header-search__row form:hover {
    background: #707070;
  }

  .header-search__row.focus .header-search__btn:hover {
    opacity: 1;
  }

  .header-search__btn:hover {
    opacity: 1;
  }

  .header-search__clear:hover {
    opacity: 1;
  }

  .header-search__hints ul li a:hover {
    opacity: 0.7;
  }

  .local ul li a:hover {
    opacity: 0.7;
  }

  .application__ok:hover {
    background: #707070;
  }

  .breadcrumbs__item a:hover {
    opacity: 1;
  }

  .breadcrumbs__back:hover {
    background-color: #ffe1e1;
  }

  .hystmodal__close:hover {
    opacity: 1;
  }

  .product-card:hover .product-card__arrow {
    background-color: #333333;
  }

  .product-card:hover .product-card__img img {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    -ms-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
  }

  .service-card:hover {
    background: #99242c;
  }

  .service-card:hover .service-card__arrow {
    background-color: #333333;
  }

  .service-card:hover .service-card__img svg {
    fill: #fff;
    opacity: 1;
  }

  .service-card:hover .service-card__img svg path {
    fill: #fff !important;
  }

  .product-item:hover .product-item__arrow {
    opacity: 1;
    visibility: visible;
  }

  .product-item:hover .product-item__body {
    margin-top: -96px;
  }

  .product-item:hover .product-item__body::before {
    opacity: 1;
    visibility: visible;
  }

  .product-item:hover .product-item__btn {
    height: 50px !important;
    margin-top: 20px;
  }

  .pagination ul li a:hover,
  .pagination ul li span:hover {
    color: #99242c;
    opacity: 0.6;
  }

  .pagination .arrow a:hover {
    background-color: transparent;
  }

  .pagination .arrow a:hover::before {
    background-color: #707070;
  }

  .bx-filter .price-input-block input:hover {
    border-color: #313131;
  }

  .bx-filter .bx-filter-param-text:hover {
    border-color: #99242c;
    opacity: 1;
  }

  .bx-filter .bx-filter-more span:hover {
    background: #707070;
  }

  .vacancy-detail__conditions div:hover svg {
    opacity: 1;
  }

  .vacancy-detail-contact__item:hover svg {
    opacity: 1;
  }

  .requisites__left .content a:hover {
    opacity: 0.6;
  }

  .requisites__info .requisites__item a:hover {
    opacity: 0.6;
  }

  .requisites-contact__item:hover svg {
    opacity: 1;
  }

  .guarantee-gost__docs a:hover {
    color: #99242c;
  }

  .news__sections a:hover {
    border-color: #99242c;
  }

  .news-item:hover .news-item__img img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .news-item:hover .news-item__title {
    opacity: 1;
  }

  .news-item:hover .news-item__btn {
    color: #707070;
  }

  .news-item:hover .news-item__btn span::before {
    background-color: #99242c;
  }

  .news-item.icon:hover .news-item__icon {
    opacity: 0.6;
  }

  .error__links a:hover {
    color: #99242c;
  }

  .contacts__item:hover svg {
    opacity: 1;
  }

  .contacts__tabs a:hover {
    background-color: #e1e1e1;
  }

  .contacts__tabs a:hover.active {
    background-color: #313131;
  }

  .about-map__items a:hover {
    color: #fff;
    background: #4f4f4f;
  }

  .about-map__items a:hover svg {
    fill: #fff;
  }

  .project-completed__filter ul a:hover {
    border-color: #99242c;
  }

  .project-card:hover .project-card__btn {
    margin-right: 55px;
  }

  .project-card:hover .project-card__btn::after {
    content: "";
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }

  .project-card:hover .project-card__name {
    background: -webkit-gradient(linear, left top, right top, from(#99242c), to(#e65e41));
    background: linear-gradient(90deg, #99242c 0%, #e65e41 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .project-card:hover .project-card__bottom::after {
    content: "";
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }

  .project-card:hover .project-card__bottom::before {
    opacity: 1;
  }

  .project-row__filter ul a:hover {
    border-color: #99242c;
  }

  .vacancy-open__filter ul a:hover {
    border-color: #99242c;
  }

  .vacancy-open__item:hover .vacancy-open__btn {
    background: #707070;
  }

  .footer__links>*:hover svg {
    opacity: 1;
  }

  .footer__menu ul li a:hover {
    color: #fdfdfd;
  }

  .footer__policy a:hover {
    text-decoration: none;
  }

  .footer__dev:hover {
    opacity: 0.6;
  }

  .calculate-btn:hover span {
    opacity: 1;
    visibility: visible;
  }

  .calculate-btn:hover div {
    background-color: #99242c;
  }

  .shelving-card:hover .shelving-card__arrow {
    background-color: #333333;
  }

  .contacts__link:hover {
    color: #99242c;
  }

  .contacts__link:hover::before {
    opacity: 0;
  }
}
/* End */


/* Start:/local/templates/gikom/css/custom.css?173338714529*/
.hidden {
   display: none;
}
/* End */


/* Start:/local/templates/gikom/template_styles.css?1733831555511*/
.slam-easyform .hidden {
   display: none;
}
.title-search-result {
    z-index: 15;
}
.title-search-result .header-search__hints {
    opacity: 1;
    visibility: visible;
    position: relative;
    top: 0;
    left: 0;
}
.bx-filter .bx-ui-slider-track-container .bx-ui-slider-track {
    background-color: #f6f6f6;
}
.bx-filter .bx-ui-slider-track-container .bx-ui-slider-pricebar-vd {
    position: absolute;
    height: 100%;
    top: 0;
    background-color: rgba(153, 36, 44, 0.3);
}
/* End */
/* /local/templates/gikom/css/libraries.min.css?173340009485738 */
/* /local/templates/gikom/css/style.css?1738151121236322 */
/* /local/templates/gikom/css/custom.css?173338714529 */
/* /local/templates/gikom/template_styles.css?1733831555511 */
