@charset "UTF-8";
.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__container :focus {
  outline: none;
}

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

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

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

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

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

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

.fancybox__slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 20;
}
#hidden-content-video.fancybox__content{
	padding:0;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

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

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

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

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

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

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

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

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

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

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

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

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

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

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

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

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

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

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

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

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

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

.fancybox__image {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
}

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

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

.has-image[data-image-fit=contain] .fancybox__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

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

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

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

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

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

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Swiper 9.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 28, 2023
 */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300&family=Montserrat:wght@700&display=swap');


@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

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

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

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

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

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

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

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

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

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

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

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

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

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

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

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

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

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

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

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

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

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

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

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

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

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

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

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

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

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

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

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -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;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

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

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

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

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

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

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

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

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

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

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

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

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

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

.swiper-pagination-bullet:only-child {
  display: none !important;
}

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

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

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

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

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

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

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

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

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

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

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

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

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

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

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

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

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

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

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

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

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

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

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification, swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

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

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

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

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

.swiper-cube {
  overflow: visible;
}

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

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

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

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

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

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

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

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

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

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

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

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@font-face {
  font-family: "merriweather_sansbold";
  src: url("../fonts/merriweathersans-bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "merriweather_sansextrabold";
  src: url("../fonts/merriweathersans-extrabold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "merriweather_sansbook";
  src: url("../fonts/merriweathersans-light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "merriweather_sansregular";
  src: url("../fonts/merriweathersans-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "noto_sansblack";
  src: url("../fonts/notosans-black.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "noto_sansbold";
  src: url("../fonts/notosans-bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "noto_sanscondensed";
  src: url("../fonts/notosans-condensed.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "noto_sanslight";
  src: url("../fonts/notosans-light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "noto_sansmedium";
  src: url("../fonts/notosans-medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "noto_sansregular";
  src: url("../fonts/notosans-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "noto_sanssemibold";
  src: url("../fonts/notosans-semibold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "noto_sansthin";
  src: url("../fonts/notosans-thin.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "noto_sansregular";
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

.body__opened {
  overflow: hidden;
}

.header {
  border-top: 5px solid #DC2E2E;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.main__slider {
  margin-top: 161px;
}


@media screen and (max-width: 1024px) {
  .main__slider {
    margin-top: 182px;
  }
}

.header__container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1170px) {
  .header__container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 360px) {
  .header__container {
    padding: 0 15px;
  }
}

.header__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;
  position: relative;
}

.logo {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .logo {
    width: auto;
  }
  .logo img {
    width: 123px;
    height: 75px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.header__right {
  width: 75%;
}
@media screen and (max-width: 1170px) {
  .header__right {
    width: 78%;
  }
}
@media screen and (max-width: 1024px) {
  .header__right {
    width: auto;
  }
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid rgba(71, 74, 81, 0.5);
  padding-bottom: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .header__top {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
  }
}

.header__bottom {
  padding-bottom: 15px;
  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;
}
@media screen and (max-width: 1024px) {
  .header__bottom {
    display: none;
  }
}

.button__red {
  background: #DC2E2E;
  border-radius: 4px;
  font-family: "noto_sanssemibold";
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  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-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  padding: 11px 12.5px;
}
.button__red:hover {
  background: #E75656;
}
.button__red:active {
  background: #AA2121;
}

.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__menu .menu .current-menu-parent a {
  color: #DC2E2E;
  border-bottom: 2px solid #DC2E2E;
}
.top__menu .menu .current-menu-item a {
  color: #DC2E2E;
  border-bottom: 2px solid #DC2E2E;
}
.top__menu .menu li {
  margin-right: 30px;
}
.top__menu .menu li a {
  color: #19191E;
  text-decoration: none;
  font-family: "noto_sansmedium";
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  border-bottom: 2px solid transparent;
  padding-bottom: 10px;
}
.top__menu .menu li:hover a {
  color: #DC2E2E;
}
.top__menu .menu li:nth-last-child(1) {
  margin-right: 0;
}
.top__menu .menu .menu-item-has-children li {
  margin-right: 0;
}
.top__menu .menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
}
.top__menu .menu .menu-item-has-children a::after {
  content: "";
  background: url("../icons/menu__arow.svg") no-repeat;
  min-width: 12px;
  min-height: 9px;
  display: block;
  margin-left: 8.5px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.top__menu .menu .menu-item-has-children ul {
  -webkit-transform: translate(0px, 100px);
          transform: translate(0px, 100px);
  position: absolute;
  border-bottom: 3px solid #DC2E2E;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  z-index: 2;
  background: #ffffff;
}
.top__menu .menu .menu-item-has-children ul li a {
  color: black;
}
.top__menu .menu .menu-item-has-children ul li a::after {
  display: none;
}
.top__menu .menu .menu-item-has-children ul li a:hover {
  color: #DC2E2E;
}
.top__menu .menu .menu-item-has-children:hover a::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.top__menu .menu .menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}

.number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.number a {
  color: #19191E;
  text-decoration: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  font-size: 20px;
  font-family: "noto_sansmedium";
}
.number a:hover {
  color: #DC2E2E;
}
.number::before {
  content: "";
  background: url("../icons/call__ico.svg") no-repeat;
  min-width: 20px;
  min-height: 20px;
  display: block;
  margin-right: 12px;
}

.socials {
  margin: 0 50px;
}
.socials .custom-html-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.socials .custom-html-widget .social__link {
  margin-right: 18px;
}
.socials .custom-html-widget .social__link:nth-last-child(1) {
  margin-right: 0;
}
.socials .custom-html-widget .mail::before {
  content: "";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url("../icons/mail__ico.svg");
          mask-image: url("../icons/mail__ico.svg");
  min-width: 22px;
  min-height: 18px;
  background: #19191E;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  display: block;
}
.socials .custom-html-widget .mail:hover::before {
  background: #DC2E2E;
}
.socials .custom-html-widget .facebook::before {
  content: "";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url("../icons/facebook__ico.svg");
          mask-image: url("../icons/facebook__ico.svg");
  min-width: 14px;
  min-height: 22px;
  background: #19191E;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  display: block;
}
.socials .custom-html-widget .facebook:hover::before {
  background: #DC2E2E;
}
.socials .custom-html-widget .viber::before {
  content: "";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url("../icons/viber__ico.svg");
          mask-image: url("../icons/viber__ico.svg");
  min-width: 20px;
  min-height: 22px;
  background: #19191E;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  display: block;
}
.socials .custom-html-widget .viber:hover::before {
  background: #DC2E2E;
}
@media screen and (max-width: 1024px) {
  .socials {
    margin: 0;
    margin-right: 48px;
  }
}

.lang {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.lang a {
  color: #4F4F4F;
  text-decoration: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  font-weight: 500;
  font-size: 16px;
  font-family: "noto_sansmedium";
  border: none;
  outline: none;
}

.current__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px 5px 5px 5px;
  display: flex;
  align-items: center;
}

.lang__arrow::before {
  content: "";
  background: url("../icons/lang__ico.svg") no-repeat;
  min-width: 12px;
  min-height: 9px;
  display: block;
  margin-right: 6.5px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.rotate::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.active {
  border-radius: 5px 5px 5px 5px;
}

.lang__arrow {
  margin-left: 4px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.lang__hover {
  padding: 10px 13px !important;
  background: #DC2E2E;
  -webkit-transform: translate(0px, 100px);
          transform: translate(0px, 100px);
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px 0px 5px 5px;
  position: absolute;
  z-index: 2;
}
.lang__hover li a {
  color: #ffffff;
}

.opened {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
}

.mobile__menu {
  -webkit-transform: translate(-150%, 0);
          transform: translate(-150%, 0);
  display: block;
  background: #ffffff;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  padding: 0 30px;
  height: calc(100vh - 182px);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  padding-top: 30px;
  top: 182px;
}
.mobile__menu .top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile__menu .top__menu .menu li {
  margin-right: 0px;
  margin-bottom: 10px;
}
.mobile__menu .top__menu .menu li a {
  color: #19191E;
  text-decoration: none;
  font-family: "noto_sansmedium";
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  font-size: 20px;
}
.mobile__menu .top__menu .menu li:hover a {
  color: #DC2E2E;
}
.mobile__menu .top__menu .menu li:nth-last-child(1) {
  margin-right: 0;
}
.mobile__menu .top__menu .menu .menu-item-has-children li {
  margin-right: 0;
}
.mobile__menu .top__menu .menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile__menu .top__menu .menu .menu-item-has-children a::after {
  content: "";
  background: url("../icons/menu__arow.svg") no-repeat;
  min-width: 12px;
  min-height: 9px;
  display: block;
  margin-left: 8.5px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.mobile__menu .top__menu .menu .menu-item-has-children ul {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  position: relative;
  border-bottom: 3px solid #DC2E2E;
  padding: 8.5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  display: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children ul li a {
  color: black;
}
.mobile__menu .top__menu .menu .menu-item-has-children ul li a::after {
  display: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children:hover a::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile__menu .top__menu .menu .menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  display: block;
}
@media screen and (max-width: 360px) {
  .mobile__menu {
    padding: 0 15px;
  }
}

.burger {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  background: #DC2E2E;
  right: -30px;
}
.burger span {
  width: 30px;
  height: 5px;
  margin-bottom: 5px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  background: #ffffff;
  border-radius: 5px;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .burger {
    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;
  }
}
@media screen and (max-width: 360px) {
  .burger {
    right: -15px;
  }
}

.burger__opened {
  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;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(2) {
  display: none;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 1024px) {
  .mobile__telephone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 16px;
  }
  .mobile__telephone .number {
    border: 2px solid #DC2E2E;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 11px 0;
  }
}

.mobile__menu__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  z-index: 2;
}

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

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 360px) {
  .container {
    padding: 0 15px;
  }
}

section {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  section {
    margin-bottom: 50px;
  }
}

.title {
  font-size: 36px;
  line-height: 80px;
  color: #19191E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 28px;
  font-family: "noto_sansbold";
}
.title::after {
  content: "";
  width: 85px;
  height: 4px;
  background: #DC2E2E;
  display: block;
  margin-top: 12px;
}
@media screen and (max-width: 1024px) {
  .title {
    font-size: 32px;
    
  }
}

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

.content {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .content {
    margin-bottom: 50px;
  }
}

.main__slider .swiper {
  overflow: hidden;
  height: 500px;
}
.main__slider .swiper .swiper-slide {
  position: relative;
}
.main__slider .swiper .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
}
.main__slider .swiper .swiper-slide .swiper__content {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .main__slider .swiper {
    height: 400px;
  }
}

.slide__title {
  font-family: "noto_sansbold";
  font-size: 48px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 43px;
}
@media screen and (max-width: 1024px) {
  .slide__title {
    font-size: 40px;
    margin-bottom: 38px;
  }
}

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

.main__slider .slide__title{
	font-size: 55px;
}
}
@media screen and (max-width: 600px) {
  .slide__title {
    font-size: 34px;
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 530px) {
	.main__slider .slide__title{
	font-size: 40px;
}
}
.slider__readmore {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.swiper__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.swiper__bottom .swiper-button-prev {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  margin: 0;
  opacity: 0.3;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.swiper__bottom .swiper-button-prev::before {
  content: "";
  background: url("../icons/slider__arrow__left.svg") no-repeat;
  background-size: cover;
  width: 14px;
  height: 30px;
  display: block;
}
.swiper__bottom .swiper-button-prev:hover {
  opacity: 1;
}
.swiper__bottom .swiper-button-next {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  margin: 0;
  opacity: 0.3;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.swiper__bottom .swiper-button-next::before {
  content: "";
  background: url("../icons/slider__arrow__right.svg") no-repeat;
  background-size: cover;
  width: 14px;
  height: 30px;
  display: block;
}
.swiper__bottom .swiper-button-next:hover {
  opacity: 1;
}
.swiper__bottom .swiper-pagination {
  position: relative;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  margin: 0 36px;
}
.swiper__bottom .swiper-pagination .swiper-pagination-bullet {
  background: #CBC9C8;
  opacity: 1;
  width: 10px;
  height: 10px;
}
.swiper__bottom .swiper-pagination .swiper-pagination-bullet-active {
  background: #DC2E2E;
}
@media screen and (max-width: 1024px) {
  .swiper__bottom {
    bottom: 16px;
  }
}

.advantages__title {
  margin: 0;
  margin-bottom: 70px;
  font-size: 36px;
  line-height: 120%;
  font-family: "noto_sansbold";
  color: #19191E;
}
@media screen and (max-width: 1024px) {
  .advantages__title {
    font-size: 28px;
    margin-bottom: 50px;
  }
}

.advantages__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  padding-top: 20px !important;
}
@media screen and (max-width: 1024px) {
  .advantages__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .advantages__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.advantage {
  padding: 26px 14px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  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;
  text-align: center;
}
.advantage .advantage__img {
  min-height: 65px;
}
.advantage .advantage__title {
  font-size: 24px;
  color: #19191E;
  line-height: 31.2px;
  font-family: "noto_sansbold";
  margin-bottom: 12px;
}
.advantage .advantage__txt {
  font-size: 16px;
  line-height: 24px;
  color: #474A51;
  font-family: "noto_sansmedium";
}
.advantage:hover {
  background: rgba(71, 74, 81, 0.1);
}

.bread {
  background: #EDEDEE;
  padding: 5px 0;
}

.breadcrumbs {
  font-size: 16px;
  margin-top: 161px;
}
.breadcrumbs a {
  color: #474A51;
  font-family: "noto_sanslight";
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    margin-top: 182px;
  }
}

.services__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
@media screen and (max-width: 1024px) {
  .services__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .services__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.item {
  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;
  text-decoration: none;
  padding: 15px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.item:hover {
  background: rgba(71, 74, 81, 0.1);
}
.item:hover .item__title {
  color: #DC2E2E;
}

.item__img {
  margin-bottom: 12px;
}
.item__img img {
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 600px) {
  .item__img img {
    height: auto;
  }
}

.item__title {
  font-size: 18px;
  line-height: 25px;
  color: #19191E;
  margin-bottom: 12px;
  font-family: "noto_sansbold";
  text-align: left;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
@media screen and (max-width: 600px) {
  .item__title {
    font-size: 15px;
  }
}

.item__desc {
  font-size: 16px;
  line-height: 24px;
  color: #474A51;
  margin-bottom:13px;
}
@media screen and (max-width: 600px) {
  .item__desc {
    font-size: 14px;
  }
}

.block__content {
  margin-bottom: 70px;
}
.block__content h2 {
  font-size: 20px;
  line-height: 28px;
  font-family: "noto_sansbold";
  color: #19191E;
  margin-bottom: 20px;
}
.block__content p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  font-family: "noto_sansmedium";
}
@media screen and (max-width: 1024px) {
  .block__content {
    margin-bottom: 50px;
  }
}

.services__slider__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .services__slider__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.slider__row__left {
  width: 60%;
}
.slider__row__left img {
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__row__left .mySlides {
  position: relative;
  cursor: pointer;
}
.slider__row__left .mySlides::after {
  content: "";
  background: rgba(0, 0, 0, 0.3) url("../icons/lupa.svg") no-repeat center center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  opacity: 0;
}
.slider__row__left .mySlides:hover::after {
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .slider__row__left {
    width: 100%;
    margin-bottom: 20px;
  }
  .slider__row__left img {
    height: 200px;
  }
}

.slider__row__right {
  width: 38%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.slider__row__right .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.slider__row__right .row .column {
  width: 48%;
  height: 120px;
  cursor: pointer;
  margin-bottom: 10px;
}
.slider__row__right .row .column img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
}
.slider__row__right .row .column .active {
  border-radius: 0;
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .slider__row__right {
    width: 100%;
  }
  .slider__row__right .row {
    display: none;
  }
}

.slider__service__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.slider__service__arrows a {
  width: 48%;
  border: 2px solid #DC2E2E;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  opacity: 0.7;
  padding: 10px 0;
}
.slider__service__arrows a:hover {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .our__services .container {
    padding: 0;
  }
  .our__services .title {
    padding: 0 30px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}
}

.our__services__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  padding-top: 20px !important;
}

.swiper__services {
  display: none;
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 70px;
  overflow: hidden;
}
.swiper__services .swiper__bottom {
  position: relative;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .swiper__services {
    display: block;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .our__services__row {
    display: none;
  }
}

.swiper__works {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: relative;
}
.swiper__works .swiper__bottom {
  position: relative;
  bottom: 0;
  margin-top: 38px;
}
.swiper__works .swiper-slide {
  position: relative;
  cursor: pointer;
}
.swiper__works .swiper-slide::after {
  content: "";
  background: rgba(0, 0, 0, 0.3) url("../icons/lupa.svg") no-repeat center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.swiper__works .swiper-slide:hover::after {
  opacity: 1;
}

.description h2 {
  font-size: 36px;
  line-height: 130%;
  font-family: "noto_sansbold";
  margin-bottom: 20px;
  color: #19191E;
}
.description p {
  font-family: "noto_sansmedium";
  line-height: 150%;
  margin-bottom: 20px;
}

.new__services .news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 2px solid rgba(71, 74, 81, 0.1);
  margin-bottom: 24px;
}
.new__services .news__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.new__services .news__img {
  width: 50%;
}
.new__services .news__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new__services .news__right {
  width: 50%;
  padding: 24px;
}
.new__services .news__title {
  font-size: 24px;
  color: #19191E;
  font-family: "noto_sansbold";
  margin-bottom: 12px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.new__services .item__desc {
  font-size: 16px;
  line-height: 21px;
  color: #474A51;
  font-family: "noto_sansmedium";
  margin-bottom: 12px;
}

.seo__txt h2 {
  margin-bottom: 30px;
}
.seo__txt p {
  margin-bottom: 30px;
}

.page-template-page__services .main__slider {
  margin-bottom: 0;
}
.page-template-page__services .breadcrumbs {
  margin-top: 0;
}

.categories__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .categories__row {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .categories__row {
    display: none;
  }
}

.current {
  background: rgba(71, 74, 81, 0.1);
}
.current .cat__name {
  color: #DC2E2E;
}
.category__item {
    -webkit-transition: .5s ease 0s;
    transition: .5s ease 0s;
    text-decoration: none;
    font-family: noto_sansbold;
    font-size: 18px;
    color: #19191e;
    padding: 15px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    text-align: center;
}
.category__item img {
    margin-bottom: 12px;
    height: auto;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 150px;
    margin: 0 auto;
}
.content.error-404.not-found {
    text-align: center;
}
.big-not-found {
    color: #EC1B2E;
    font-size: 80px;
    font-weight: bold;
}
@media screen and (max-width: 600px) {
  .category__item img {
    height: auto;
  }
  .content.error-404.not-found h1{
	 font-size:20px;
  }
}
.category__item .cat__name {
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.category__item:hover {
  background: rgba(71, 74, 81, 0.1);
}
.category__item:hover .cat__name {
  color: #DC2E2E;
}
@media screen and (max-width: 600px) {
  .category__item {
    font-size: 15px;
  }
}

.products {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .products {
    margin-bottom: 50px;
  }
}

.products__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 40px;
}
@media screen and (max-width: 1024px) {
  .products__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .products__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.product {
  padding: 15px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.product:hover {
  background: rgba(71, 74, 81, 0.1);
}
.product:hover .item__title {
  color: #DC2E2E;
}
@media screen and (max-width: 600px) {
  .product {
    padding: 10px;
  }
}

.item__price {
  font-size: 20px;
  font-family: "noto_sansmedium";
  color: #19191E;
  margin: 18px 0;
}
.item__price span {
  font-family: "noto_sansbold";
  margin-left: 3px;
}
@media screen and (max-width: 600px) {
  .item__price {
    font-size: 16px;
  }
}

.product__readmore {
  background: transparent;
  color: #19191E;
      height: min-content;
 margin-top: auto;
}
.products__row .rent__order.button__red ~ .product__readmore{
	margin-top: 0;
}
.product__readmore::after {
  content: "";
  background: url("../icons/arrow__prod__black.svg") no-repeat;
  min-width: 20px;
  min-height: 13px;
  display: block;
  margin-left: 12px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.product__readmore:hover {
  background: #DC2E2E;
  color: #ffffff;
}
.product__readmore:hover:after {
  background: url("../icons/arrow__prod__white.svg") no-repeat;
  min-width: 30px;
}

.products__row .rent__order.button__red {
    margin: auto auto 13px;
    padding: 6px 18px;
}


@media screen and (max-width: 600px) {
  .product__readmore {
    font-size: 14px;
    padding: 10px 10px;
  }
}

.our__works .swiper-slide img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .our__works .container {
    padding: 0;
  }
  .our__works .title {
    padding: 0 30px;
  }
  .our__works .swiper__works {
    margin-left: 30px;
  }
}

.swiper__works {
  overflow: hidden;
}

.product__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .product__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}

.product__left {
  width: 48%;
}
@media screen and (max-width: 600px) {
  .product__left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.product__right {
  width: 48%;
      user-select: none;
}
@media screen and (max-width: 600px) {
  .product__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
  .products__arows {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 8px auto 10px;
    position: relative;
	}
  .products__arows .prev, .products__arows .next {
    position: relative!important;
    margin: 0 10px!important;
  }
}

.product {
    text-decoration: none!important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
	height: auto;
}

.color {
  width: 48px;
  height: 24px;
}

.product__main__img {
  position: relative;
  height: 335px;
  margin-bottom: 15px;
}
.product__main__img .mySlides, .plan__img .myVariant {
  position: relative;
  cursor: pointer;
}
.product__main__img .mySlides img {
  height: 335px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  .product__main__img .mySlides img {
    height: auto;
  }
}
.product__main__img .mySlides::after {
  content: "";
  background: rgba(0, 0, 0, 0.3) url("../icons/lupa.svg") no-repeat center center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  opacity: 0;
}
.product__main__img .mySlides:hover::after {
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .product__main__img {
    height: auto;
  }
}

.products__arows {
  /* position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; */
}
.products__arows a {
  width: 40px;
  height: 40px;
  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;
  background: #474A51;
  cursor: pointer;
}
.products__arows .prev {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.products__arows .next {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.product__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
	align-items: center;
}
.product__thumbs .column {
  width: calc(25% - 10px);
  border-radius: 0;
}
.product__thumbs .column img {
  opacity: 0.7;
  cursor: pointer;
}
.product__thumbs .column .active {
  opacity: 1;
  border-radius: 0;
}
@media screen and (max-width: 600px) {
  .product__thumbs {
    display: none;
  }
}

.product__txt1 {
  font-family: "noto_sansmedium";
  font-size: 14px;
  line-height: 21px;
  color: #19191E;
  border-bottom: 1px solid #474A51;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.price {
  padding-bottom: 12px;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #474A51;
  font-family: "noto_sansmedium";
  font-size: 16px;
}

.razmer {
  border-bottom: 1px solid #474A51;
  padding-bottom: 12px;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #474A51;
  font-family: "noto_sansmedium";
  font-size: 16px;
}

.manufacter {
  border-bottom: 1px solid #474A51;
  padding-bottom: 12px;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #474A51;
  font-family: "noto_sansmedium";
  font-size: 16px;
}

.colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #474A51;
}
.colors .price__txt {
  margin-right: 24px;
}
.colors .color {
  margin-right: 10px;
}

.price__txt {
  font-size: 16px;
  font-family: "noto_sansbold";
  color: #19191E;
}

.button__empty {
  border: 2px solid #DC2E2E;
  background: transparent;
  color: #19191E;
}
.button__empty:hover {
  color: #ffffff;
}
@media screen and (max-width: 600px) {
  .button__empty {
    margin-top: 20px;
  }
}

.product__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product__buttons .button__red {
  width: 48%;
}
@media screen and (max-width: 600px) {
  .product__buttons .button__red {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .product__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.tab {
  overflow: hidden;
  border: 2px solid #474A51;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 28px;
}
@media screen and (max-width: 600px) {
  .tab {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  border-radius: 0;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 33.3333333333%;
  color: #19191E;
}
@media screen and (max-width: 600px) {
  .tab button {
    width: 100%;
  }
}

/* Change background color of buttons on hover */
.tab button:hover {
  background: #EDEDEE;
}

/* Create an active/current tablink class */
.tab button.active {
  background: #EDEDEE;
}

/* Style the tab content */
.tabcontent {
  border-top: none;
}
.tabcontent p {
  font-size: 14px;
  line-height: 21px;
  font-family: "noto_sansmedium";
  margin-bottom: 20px;
  color: #19191E;
}

.plan__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #474A51;
  padding-bottom: 25px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .plan__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.plan__img {
  width: 60%;
}
.plan__img img {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .plan__img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.plan__content {
  width: 38%;
}
@media screen and (max-width: 1024px) {
  .plan__content {
    width: 100%;
  }
}

.plan__title {
  font-family: "noto_sansbold";
  font-size: 18px;
  margin-bottom: 20px;
}

.plan__size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

.plan__button {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .plan__button {
    width: 100%;
  }
}

.tech__title {
  font-family: "noto_sansbold";
  margin-bottom: 30px;
  font-size: 18px;
}

.tech__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #DC2E2E;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .tech__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.tech__left {
  width: 60%;
}
@media screen and (max-width: 600px) {
  .tech__left {
    width: 100%;
    margin-bottom: 24px;
  }
}

.tech__right {
  width: 45%;
}
@media screen and (max-width: 600px) {
  .tech__right {
    width: 100%;
  }
}

.opis {
  border-bottom: 1px solid #ccc;
  padding: 5px 0;
}

.obl__row {
  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;
  margin-bottom: 30px;
}
.obl__row:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 600px) {
  .obl__row:nth-child(even), .obl__row:nth-child(odd){
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}


.obl__img {
  width: 48%;
}
@media screen and (max-width: 600px) {
  .obl__img {
    width: 100%;
    margin-bottom: 24px;
  }
}

.obl__txt {
  width: 48%;
}
@media screen and (max-width: 600px) {
  .obl__txt {
    width: 100%;
  }
}

.new__rozmir {
  text-decoration: none;
  margin-bottom: 10px;
  color: #000;
  display: block;
}

@media screen and (max-width: 600px) {
  .main__news .container {
    padding: 0;
  }
  .main__news .title {
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) and (max-width: 360px) {
  .main__news .title {
    padding: 0 15px;
  }
}

.news__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .news__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 50px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .news__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.news__row .news__item .news__img {
  margin-bottom: 12px;
}
.news__row .news__item .news__img img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__row .news__item:hover .news__title {
  color: #DC2E2E;
}
.news__row .news__date {
  margin-bottom: 12px;
  color: #474A51;
  font-family: "noto_sansmedium";
  font-size: 14px;
}
.news__row .news__title {
  color: #19191E;
  font-size: 20px;
  font-family: "noto_sansbold";
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  margin-bottom: 12px;
}
.news__row .item__desc {
  color: #474A51;
  font-size: 16px;
  font-family: "noto_sansmedium";
  line-height: 150%;
  margin-bottom: 12px;
}
.news__row .news__readmore {
  background: transparent;
  color: #19191E;
}
.news__row .news__readmore:hover {
  background: #DC2E2E;
  color: #ffffff;
}

.content__single {
  margin-bottom: 70px;
}
.content__single p {
  font-family: "noto_sansmedium";
  margin-bottom: 20px;
  color: #474A51;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .content__single {
    margin-bottom: 50px;
  }
}

.news__main__row {
  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;
}
.news__main__row .news__item {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid rgba(71, 74, 81, 0.1);
  margin-bottom: 30px;
}
.news__main__row .news__item .news__img img {
  max-height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__main__row .news__item .news__right {
  padding: 24px;
}
.news__main__row .news__item .news__title {
  font-size: 24px;
  color: #19191E;
  font-family: "noto_sansbold";
  margin-bottom: 12px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
@media screen and (max-width: 1024px) {
  .news__main__row .news__item .news__title {
    font-size: 20px;
  }
}
.news__main__row .news__item .item__desc {
  font-size: 16px;
  line-height: 21px;
  color: #474A51;
  font-family: "noto_sansmedium";
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .news__main__row .news__item .item__desc {
    font-size: 16px;
    line-height: 21px;
  }
}
.news__main__row .news__item .news__readmore {
  background: transparent;
  color: #19191E;
}
.news__main__row .news__item .news__readmore:hover {
  background: #DC2E2E;
  color: #ffffff;
}
.news__main__row .news__item:nth-last-child(1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 0;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news__main__row .news__item:nth-last-child(1) .news__img {
  width: 48%;
}
.news__main__row .news__item:nth-last-child(1) .news__img img {
  max-height: 300px;
}
.news__main__row .news__item:nth-last-child(1) .news__right {
  width: 48%;
  padding: 0;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
}
.news__main__row .news__item:hover .news__title {
  color: #DC2E2E;
}
@media screen and (max-width: 600px) {
  .news__main__row .news__item {
    width: 100%;
  }
  .news__main__row .news__item:nth-last-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news__main__row .news__item:nth-last-child(1) .news__img {
    width: 100%;
  }
  .news__main__row .news__item:nth-last-child(1) .news__img img {
    max-height: 300px;
  }
  .news__main__row .news__item:nth-last-child(1) .news__right {
    width: 100%;
    padding: 24px;
  }
}

.post-type-archive-rent .tab {
  width: 100%;
}

.page-template-page__rent .main__slider {
  margin-bottom: 0;
}
.page-template-page__rent .breadcrumbs {
 /*  margin-top: 0; */
}

.rent__link:not(:first-child) {
  display: none;
}

.rent__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media screen and (max-width: 1024px) {
  .rent__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .rent__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.rent__item {
  border: 2px solid rgba(71, 74, 81, 0.1);
  padding-bottom: 24px;
}

.rent__img {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rent__title {
  font-size: 18px;
  line-height: 25px;
  color: #19191E;
  margin-bottom: 12px;
  font-family: "noto_sansbold";
  text-align: left;
  padding: 0 24px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.rent__razmer {
  padding: 0 24px;
}

.rent__link {
  position: relative;
}
.rent__link::after {
  content: "";
  background: rgba(0, 0, 0, 0.3) url(../icons/lupa.svg) no-repeat center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.rent__link:hover::after {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .containers .container {
    padding: 0;
  }
  .containers .title {
    padding: 0 30px;
  }
}

.title__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.title__row .title {
  margin-bottom: 0;
}
.title__row a {
  text-decoration: none;
  color: #19191E;
  font-size: 18px;
  font-family: "noto_sansmedium";
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.title__row a:hover {
  color: #DC2E2E;
}
@media screen and (max-width: 600px) {
  .title__row a {
    display: none;
  }
}

.swiper__main__products {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}
.swiper__main__products .swiper__bottom {
  position: relative;
  bottom: 0;
  margin-top: 28px;
}

.cont__socials {
  margin: 0 50px;
}
.cont__socials .custom-html-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cont__socials .custom-html-widget .social__link {
  margin-right: 18px;
}
.cont__socials .custom-html-widget .social__link:nth-last-child(1) {
  margin-right: 0;
}
.cont__socials .custom-html-widget .mail::before {
  content: "";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url("../icons/mail__ico.svg");
          mask-image: url("../icons/mail__ico.svg");
  min-width: 22px;
  min-height: 18px;
  background: #19191E;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  display: block;
}
.cont__socials .custom-html-widget .mail:hover::before {
  background: #DC2E2E;
}
.cont__socials .custom-html-widget .facebook::before {
  content: "";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url("../icons/facebook__ico.svg");
          mask-image: url("../icons/facebook__ico.svg");
  min-width: 14px;
  min-height: 22px;
  background: #19191E;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  display: block;
}
.cont__socials .custom-html-widget .facebook:hover::before {
  background: #DC2E2E;
}
.cont__socials .custom-html-widget .instagram::before {
  content: "";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url("../icons/instagram__ico.svg");
          mask-image: url("../icons/instagram__ico.svg");
  min-width: 23px;
  min-height: 24px;
  background: #19191E;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  display: block;
}
.cont__socials .custom-html-widget .instagram:hover::before {
  background: #DC2E2E;
}
.cont__socials .custom-html-widget .youtube::before {
  content: "";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url("../icons/youtube__ico.svg");
          mask-image: url("../icons/youtube__ico.svg");
  min-width: 31px;
  min-height: 30px;
  background: #19191E;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  display: block;
}
.cont__socials .custom-html-widget .youtube:hover::before {
  background: #DC2E2E;
}
  

.cont__socials .custom-html-widget .viber::before {
  content: "";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-image: url("../icons/viber__ico.svg");
          mask-image: url("../icons/viber__ico.svg");
  min-width: 20px;
  min-height: 22px;
  background: #19191E;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  display: block;
}
.cont__socials .custom-html-widget .viber:hover::before {
  background: #DC2E2E;
}


root app div > a{
	display:none!important;
}

@media screen and (max-width: 1024px) {
  .cont__socials {
    margin: 0;
    margin-right: 48px;
  }
}

.contacts__block {
  border: 2px solid #EDEDED;
  padding-top: 60px;
}
@media screen and (max-width: 600px) {
  .contacts__block {
    padding-top: 30px;
  }
  .contentt{
	  display:none!important;
  }
}

.contacts__row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.email a {
  color: #19191E;
  text-decoration: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  font-size: 20px;
  font-family: "noto_sansmedium";
}
.email a:hover {
  color: #DC2E2E;
}
.email::before {
  content: "";
  -webkit-mask-image: url("../icons/mail__ico.svg");
          mask-image: url("../icons/mail__ico.svg");
  min-width: 22px;
  min-height: 18px;
  display: block;
  margin-right: 12px;
  background: #DC2E2E;
}

.cont__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cont__row .cont__socials {
  margin: 0;
  margin-left: 20px;
}

.contacts__row2 {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.contacts__left {
  width: 48%;
}

.contacts__right {
  width: 48%;
}

.cont__txt1 {
  font-size: 18px;
  font-family: "noto_sansbold";
  line-height: 25px;
  color: #19191E;
  margin-bottom: 20px;
  min-height: 50px;
}

.cont__adr {
  font-size: 18px;
  font-family: "noto_sansmedium";
  color: #19191E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cont__adr::before {
  content: "";
  background: url("../icons/map.svg") no-repeat;
  display: block;
  min-width: 22px;
  min-height: 23x;
  margin-right: 12px;
}

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

.contacts {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .contacts {
    margin-bottom: 50px;
  }
  .contacts .contacts__row1 {
    width: 100%;
    padding: 0 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts .contacts__row2 {
    width: 100%;
    padding: 0 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts .contacts__row2 .contacts__left {
    width: 100%;
  }
  .contacts .contacts__row2 .contacts__right {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .contacts .container {
    padding: 0;
  }
  .contacts .title {
    padding: 0 30px;
  }
  .contacts .contacts__row2 {
    padding: 0;
  }
  .contacts .cont__txt1 {
    padding: 0 30px;
  }
  .contacts .cont__adr {
    padding: 0 30px;
    margin-bottom: 28px;
  }
  .contacts .cont {
    margin-bottom: 15px;
  }
  .contacts .l1 {
    margin-bottom: 50px;
  }
}

.footer {
  background: url("../img/footer.jpg") no-repeat center;
  background-size: cover;
  border-bottom: 5px solid #DC2E2E;
  padding-top: 40px;
  padding-bottom: 20px;
}
.footer .cont__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer .cont__row .cont__socials {
  margin-left: 0;
  margin-top: 12px;
}
.footer .logo {
  width: 132px;
}
.footer .logo img {
  width: 132px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .footer .logo {
    margin: 0 auto;
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

.footer__row1 {
  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;
  border-bottom: 2px solid #f9f9f9;
  padding-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  .footer__row1 {
    -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;
  }
}

.footer__row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .footer__row2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .footer__row2 .copy {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    background: #DC2E2E;
    color: #ffffff;
  }
  .footer__row2 .footer__menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 12px 0;
  }
  .footer__row2 .footer__menu ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__row2 .footer__menu ul li {
    margin-left: 0;
    width: 40%;
  }
}

.footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
.footer__menu ul li {
  margin-left: 50px;
}
.footer__menu ul li a {
  text-decoration: none;
  font-family: "noto_sansmedium";
  color: #19191E;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.footer__menu ul li a:hover {
  color: #DC2E2E;
}

@media screen and (max-width: 1024px) {
  .footer__tel {
    margin-bottom: 22px;
  }
  .footer__mail {
    margin-bottom: 22px;
  }
  .footer__social {
    margin-bottom: 22px;
  }
  .footer__adr {
    margin-bottom: 22px;
  }
}
.c1 .copy {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  background: #DC2E2E;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
}

.form__title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 32px;
  font-family: "noto_sansbold";
  color: #19191E;
}

.input {
  margin-bottom: 26px;
}
.input input {
  background: #FCFCFC;
  border: 1px solid #DC2E2E;
  border-radius: 3px;
  outline: none !important;
  padding: 8px;
  color: #19191E;
  font-size: 14px;
  width: 100%;
}
.input input::placacolder {
  color: #19191E;
  font-size: 14px;
}
.input input:focus {
  border: 2px solid #DC2E2E;
}

.butt {
  margin-bottom: 24px;
}
.butt .button__red {
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
}

.form__txt {
  font-family: "noto_sansmedium";
  color: #19191E;
  text-align: center;
  margin-bottom: 24px;
}

.form__number {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#hidden-content, #hidden-content2, #hidden-content3 {
  width: 100%;
}

.logged-in .header {
  top: 32px !important;
}

.zapit__form {
  background: #EDEDEE;
  max-width: 480px;
  width: 100%;
  padding: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .zapit__form {
    padding: 15px;
  }
}