.carousel {
  position: relative;
  box-sizing: border-box;
}
.carousel *,
.carousel *:before,
.carousel *:after {
  box-sizing: inherit;
}
.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}
.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}
.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}
.carousel__track {
  display: flex;
}
.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}
.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  user-select: none;
}
.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}
.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}
.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}
.carousel__button.is-prev,
.carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel__button.is-prev {
  left: 10px;
}
.carousel__button.is-next {
  right: 10px;
}
.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}
.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}
html.with-fancybox {
  scroll-behavior: auto;
}
body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}
.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px)
    env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}
.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}
.fancybox__container :focus {
  outline: none;
}
body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff,
    0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}
@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}
.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}
.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}
.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}
.fancybox__track {
  display: flex;
  height: 100%;
}
.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}
.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}
@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}
.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}
.is-loading .fancybox__caption {
  visibility: hidden;
}
.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}
.fancybox__nav .carousel__button {
  z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
  right: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}
@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}
.fancybox__no-click,
.fancybox__no-click button {
  pointer-events: none;
}
.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}
.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}
.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}
@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden="false"] .carousel__dots,
.fancybox__container.is-animated[aria-hidden="false"]
  .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}
.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}
.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}
.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}
.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}
.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}
.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}
@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}
.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__image {
  transform-origin: 0 0;
  user-select: 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;
  touch-action: none;
}
.has-image[data-image-fit="contain"] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}
.has-image[data-image-fit="contain"] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.has-image[data-image-fit="contain-w"] {
  overflow-x: hidden;
  overflow-y: auto;
}
.has-image[data-image-fit="contain-w"] .fancybox__content {
  min-height: auto;
}
.has-image[data-image-fit="contain-w"] .fancybox__image {
  max-width: 100%;
  height: auto;
}
.has-image[data-image-fit="cover"] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit="cover"] .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-image[data-image-fit="cover"] .fancybox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}
.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: 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 {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}
.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}
.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  user-select: none;
}
.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(
    to top,
    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;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(
    --fancybox-toolbar-text-shadow,
    1px 1px 1px rgba(0, 0, 0, 0.4)
  );
}
@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}
.fancybox__toolbar__items {
  display: flex;
}
.fancybox__toolbar__items--left {
  margin-right: auto;
}
.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
  margin-left: auto;
}
@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}
.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  user-select: none;
}
.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}
.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}
.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}
/**
* Importing by glob example
* https://github.com/maoberlehner/node-sass-magic-importer/tree/master/packages/node-sass-magic-importer#globbing
 */
/*@font-face {*/
/*  font-family: "TT Commons";*/
/*  src: url(../fonts/TTCommons-ExtraLight.woff2) format("woff2"), url(../fonts/TTCommons-ExtraLight.woff) format("woff");*/
/*  font-weight: 200;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "TT Commons";*/
/*  src: url(../fonts/TTCommons-Medium.woff2) format("woff2"), url(../fonts/TTCommons-Medium.woff) format("woff");*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "TT Commons";*/
/*  src: url(../fonts/TTCommons-Black.woff2) format("woff2"), url(../fonts/TTCommons-Black.woff) format("woff");*/
/*  font-weight: 900;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "TT Commons";*/
/*  src: url(../fonts/TTCommons-Light.woff2) format("woff2"), url(../fonts/TTCommons-Light.woff) format("woff");*/
/*  font-weight: 300;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "TT Commons";*/
/*  src: url(../fonts/TTCommons-Regular.woff2) format("woff2"), url(../fonts/TTCommons-Regular.woff) format("woff");*/
/*  font-weight: 400;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "TT Commons";*/
/*  src: url(../fonts/TTCommons-Thin.woff2) format("woff2"), url(../fonts/TTCommons-Thin.woff) format("woff");*/
/*  font-weight: 100;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "TT Commons";*/
/*  src: url(../fonts/TTCommons-DemiBold.woff2) format("woff2"), url(../fonts/TTCommons-DemiBold.woff) format("woff");*/
/*  font-weight: 600;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "TT Commons";*/
/*  src: url(../fonts/TTCommons-ExtraBold.woff2) format("woff2"), url(../fonts/TTCommons-ExtraBold.woff) format("woff");*/
/*  font-weight: 800;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
/*@font-face {*/
/*  font-family: "TT Commons";*/
/*  src: url(../fonts/TTCommons-Bold.woff2) format("woff2"), url(../fonts/TTCommons-Bold.woff) format("woff");*/
/*  font-weight: 700;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/
.error {
  display: none !important;
}

/**
 * alertifyjs 1.13.1 http://alertifyjs.com
 * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
 * Copyright 2019 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
 * Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/
.alertify .ajs-dimmer {
  position: fixed;
  z-index: 1981;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 0;
  background-color: #252525;
  opacity: 0.5;
}

.alertify .ajs-modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 0;
  overflow-y: auto;
  z-index: 1981;
}

.alertify .ajs-dialog {
  position: relative;
  margin: 5% auto;
  min-height: 110px;
  max-width: 500px;
  padding: 24px 24px 0 24px;
  outline: 0;
  background-color: #fff;
}

.alertify .ajs-dialog.ajs-capture:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  z-index: 1;
}

.alertify .ajs-reset {
  position: absolute !important;
  display: inline !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
}

.alertify .ajs-commands {
  position: absolute;
  right: 4px;
  margin: -14px 24px 0 0;
  z-index: 2;
}

.alertify .ajs-commands button {
  display: none;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  padding: 10px;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.alertify .ajs-commands button.ajs-close {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAwNy8xMy8xNOrZqugAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAh0lEQVQYlY2QsQ0EIQwEB9cBAR1CJUaI/gigDnwR6NBL/7/xWLNrZ2b8EwGotVpr7eOitWa1VjugiNB7R1UPrKrWe0dEAHBbXUqxMQbeewDmnHjvyTm7C3zDwAUd9c63YQdUVdu6EAJzzquz7HXvTiklt+H9DQFYaxFjvDqllFyMkbXWvfpXHjJrWFgdBq/hAAAAAElFTkSuQmCC);
}

.alertify .ajs-commands button.ajs-maximize {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAwNy8xMy8xNOrZqugAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAOUlEQVQYlWP8//8/AzGAhYGBgaG4uBiv6t7eXkYmooxjYGAgWiELsvHYFMCcRX2rSXcjoSBiJDbAAeD+EGu+8BZcAAAAAElFTkSuQmCC);
}

.alertify .ajs-header {
  margin: -24px;
  margin-bottom: 0;
  padding: 16px 24px;
  background-color: #fff;
}

.alertify .ajs-body {
  min-height: 56px;
}

.alertify .ajs-body .ajs-content {
  padding: 16px 24px 16px 16px;
}

.alertify .ajs-footer {
  padding: 4px;
  margin-left: -24px;
  margin-right: -24px;
  min-height: 43px;
  background-color: #fff;
}

.alertify .ajs-footer .ajs-buttons.ajs-primary {
  text-align: right;
}

.alertify .ajs-footer .ajs-buttons.ajs-primary .ajs-button {
  margin: 4px;
}

.alertify .ajs-footer .ajs-buttons.ajs-auxiliary {
  float: left;
  clear: none;
  text-align: left;
}

.alertify .ajs-footer .ajs-buttons.ajs-auxiliary .ajs-button {
  margin: 4px;
}

.alertify .ajs-footer .ajs-buttons .ajs-button {
  min-width: 88px;
  min-height: 35px;
}

.alertify .ajs-handle {
  position: absolute;
  display: none;
  width: 10px;
  height: 10px;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAwNy8xMS8xNEDQYmMAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAQ0lEQVQYlaXNMQoAIAxD0dT7H657l0KX3iJuUlBUNOsPPCGJm7VDp6ryeMxMuDsAQH7owW3pyn3RS26iKxERMLN3ugOaAkaL3sWVigAAAABJRU5ErkJggg==);
  transform: scaleX(1);
  cursor: se-resize;
}

.alertify.ajs-no-overflow .ajs-body .ajs-content {
  overflow: hidden !important;
}

.alertify.ajs-no-padding.ajs-maximized .ajs-body .ajs-content {
  left: 0;
  right: 0;
  padding: 0;
}

.alertify.ajs-no-padding:not(.ajs-maximized) .ajs-body {
  margin-left: -24px;
  margin-right: -24px;
}

.alertify.ajs-no-padding:not(.ajs-maximized) .ajs-body .ajs-content {
  padding: 0;
}

.alertify.ajs-no-padding.ajs-resizable .ajs-body .ajs-content {
  left: 0;
  right: 0;
}

.alertify.ajs-maximizable .ajs-commands button.ajs-maximize,
.alertify.ajs-maximizable .ajs-commands button.ajs-restore {
  display: inline-block;
}

.alertify.ajs-closable .ajs-commands button.ajs-close {
  display: inline-block;
}

.alertify.ajs-maximized .ajs-dialog {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  top: 0 !important;
  left: 0 !important;
}

.alertify.ajs-maximized.ajs-modeless .ajs-modal {
  position: fixed !important;
  min-height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
}

.alertify.ajs-maximized .ajs-commands button.ajs-maximize {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAwNy8xMy8xNOrZqugAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAASklEQVQYlZWQ0QkAMQhDtXRincOZX78KVtrDCwgqJNEoIB3MPLj7lRUROlpyVXGzby6zWuY+kz6tj5sBMTMAyVV3/595RbOh3cAXsww1raeiOcoAAAAASUVORK5CYII=);
}

.alertify.ajs-resizable .ajs-dialog,
.alertify.ajs-maximized .ajs-dialog {
  padding: 0;
}

.alertify.ajs-resizable .ajs-commands,
.alertify.ajs-maximized .ajs-commands {
  margin: 14px 24px 0 0;
}

.alertify.ajs-resizable .ajs-header,
.alertify.ajs-maximized .ajs-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 16px 24px;
}

.alertify.ajs-resizable .ajs-body,
.alertify.ajs-maximized .ajs-body {
  min-height: 224px;
  display: inline-block;
}

.alertify.ajs-resizable .ajs-body .ajs-content,
.alertify.ajs-maximized .ajs-body .ajs-content {
  position: absolute;
  top: 50px;
  right: 24px;
  bottom: 50px;
  left: 24px;
  overflow: auto;
}

.alertify.ajs-resizable .ajs-footer,
.alertify.ajs-maximized .ajs-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}

.alertify.ajs-resizable:not(.ajs-maximized) .ajs-dialog {
  min-width: 548px;
}

.alertify.ajs-resizable:not(.ajs-maximized) .ajs-handle {
  display: block;
}

.alertify.ajs-movable:not(.ajs-maximized) .ajs-header {
  cursor: move;
}

.alertify.ajs-modeless .ajs-dimmer,
.alertify.ajs-modeless .ajs-reset {
  display: none;
}

.alertify.ajs-modeless .ajs-modal {
  overflow: visible;
  max-width: none;
  max-height: 0;
}

.alertify.ajs-modeless.ajs-pinnable .ajs-commands button.ajs-pin {
  display: inline-block;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAwNy8xMy8xNOrZqugAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAQklEQVQYlcWPMQ4AIAwCqU9u38GbcbHRWN1MvKQDhQFMEpKImGJA0gCgnYw0V0rwxseg5erT4oSkQVI5d9f+e9+xA0NbLpWfitPXAAAAAElFTkSuQmCC);
}

.alertify.ajs-modeless.ajs-unpinned .ajs-modal {
  position: absolute;
}

.alertify.ajs-modeless.ajs-unpinned .ajs-commands button.ajs-pin {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAwNy8xMy8xNOrZqugAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAO0lEQVQYlWP8//8/AzGAiShV6AqLi4txGs+CLoBLMYbC3t5eRmyaWfBZhwwYkX2NTxPRvibKjRhW4wMAhxkYGbLu3pEAAAAASUVORK5CYII=);
}

.alertify.ajs-modeless:not(.ajs-unpinned) .ajs-body {
  max-height: 500px;
  overflow: auto;
}

.alertify.ajs-basic .ajs-header {
  opacity: 0;
}

.alertify.ajs-basic .ajs-footer {
  visibility: hidden;
}

.alertify.ajs-frameless .ajs-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 60px;
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 1;
}

.alertify.ajs-frameless .ajs-footer {
  display: none;
}

.alertify.ajs-frameless .ajs-body .ajs-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.alertify.ajs-frameless:not(.ajs-resizable) .ajs-dialog {
  padding-top: 0;
}

.alertify.ajs-frameless:not(.ajs-resizable) .ajs-dialog .ajs-commands {
  margin-top: 0;
}

.ajs-no-overflow {
  overflow: hidden !important;
  outline: none;
}

.ajs-no-overflow.ajs-fixed {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: scroll !important;
}

.ajs-no-selection,
.ajs-no-selection * {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (max-width: 568px) {
  .alertify .ajs-dialog {
    min-width: 150px;
  }
  .alertify:not(.ajs-maximized) .ajs-modal {
    padding: 0 5%;
  }
  .alertify:not(.ajs-maximized).ajs-resizable .ajs-dialog {
    min-width: initial;
    min-width: auto;
  }
}
@-moz-document url-prefix() {
  .alertify button:focus {
    outline: 1px dotted #3593d2;
  }
}
.alertify .ajs-dimmer,
.alertify .ajs-modal {
  transform: translate3d(0, 0, 0);
  transition-property: opacity, visibility;
  transition-timing-function: linear;
  transition-duration: 250ms;
}

.alertify.ajs-hidden .ajs-dimmer,
.alertify.ajs-hidden .ajs-modal {
  visibility: hidden;
  opacity: 0;
}

.alertify.ajs-in:not(.ajs-hidden) .ajs-dialog {
  animation-duration: 500ms;
}

.alertify.ajs-out.ajs-hidden .ajs-dialog {
  animation-duration: 250ms;
}

.alertify .ajs-dialog.ajs-shake {
  animation-name: ajs-shake;
  animation-duration: 0.1s;
  animation-fill-mode: both;
}
@keyframes ajs-shake {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.alertify.ajs-slide.ajs-in:not(.ajs-hidden) .ajs-dialog {
  animation-name: ajs-slideIn;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alertify.ajs-slide.ajs-out.ajs-hidden .ajs-dialog {
  animation-name: ajs-slideOut;
  animation-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.alertify.ajs-zoom.ajs-in:not(.ajs-hidden) .ajs-dialog {
  animation-name: ajs-zoomIn;
}

.alertify.ajs-zoom.ajs-out.ajs-hidden .ajs-dialog {
  animation-name: ajs-zoomOut;
}

.alertify.ajs-fade.ajs-in:not(.ajs-hidden) .ajs-dialog {
  animation-name: ajs-fadeIn;
}

.alertify.ajs-fade.ajs-out.ajs-hidden .ajs-dialog {
  animation-name: ajs-fadeOut;
}

.alertify.ajs-pulse.ajs-in:not(.ajs-hidden) .ajs-dialog {
  animation-name: ajs-pulseIn;
}

.alertify.ajs-pulse.ajs-out.ajs-hidden .ajs-dialog {
  animation-name: ajs-pulseOut;
}

.alertify.ajs-flipx.ajs-in:not(.ajs-hidden) .ajs-dialog {
  animation-name: ajs-flipInX;
}

.alertify.ajs-flipx.ajs-out.ajs-hidden .ajs-dialog {
  animation-name: ajs-flipOutX;
}

.alertify.ajs-flipy.ajs-in:not(.ajs-hidden) .ajs-dialog {
  animation-name: ajs-flipInY;
}

.alertify.ajs-flipy.ajs-out.ajs-hidden .ajs-dialog {
  animation-name: ajs-flipOutY;
}
@keyframes ajs-pulseIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes ajs-pulseOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes ajs-zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.25, 0.25, 0.25);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes ajs-zoomOut {
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.25, 0.25, 0.25);
  }
}
@keyframes ajs-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ajs-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ajs-flipInX {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
@keyframes ajs-flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes ajs-flipInY {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}
@keyframes ajs-flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes ajs-slideIn {
  0% {
    margin-top: -100%;
  }
  100% {
    margin-top: 5%;
  }
}
@keyframes ajs-slideOut {
  0% {
    margin-top: 5%;
  }
  100% {
    margin-top: -100%;
  }
}
.alertify-notifier {
  position: fixed;
  width: 0;
  overflow: visible;
  z-index: 1982;
  transform: translate3d(0, 0, 0);
}

.alertify-notifier .ajs-message {
  position: relative;
  width: 260px;
  max-height: 0;
  padding: 0;
  opacity: 0;
  margin: 0;
  transform: translate3d(0, 0, 0);
  transition-duration: 250ms;
  transition-timing-function: linear;
}

.alertify-notifier .ajs-message.ajs-visible {
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1;
  max-height: 100%;
  padding: 15px;
  margin-top: 10px;
}

.alertify-notifier .ajs-message.ajs-success {
  background: rgba(91, 189, 114, 0.95);
}

.alertify-notifier .ajs-message.ajs-error {
  background: rgba(217, 92, 92, 0.95);
}

.alertify-notifier .ajs-message.ajs-warning {
  background: rgba(252, 248, 215, 0.95);
}

.alertify-notifier .ajs-message .ajs-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAABGdBTUEAALGPC/xhBQAAAFBJREFUGBl1j0EKADEIA+ve/P9f9bh1hEihNBfjVCO1v7RKVqJK4h8gM5cAPR42AkQEpSXPwMTyoi13n5N9YqJehm3Fnr7nL1D0ZEbD5OubGyC7a9gx+9eNAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.5);
  border-top-right-radius: 2px;
}

.alertify-notifier.ajs-top {
  top: 10px;
}

.alertify-notifier.ajs-bottom {
  bottom: 10px;
}

.alertify-notifier.ajs-right {
  right: 10px;
}

.alertify-notifier.ajs-right .ajs-message {
  right: -320px;
}

.alertify-notifier.ajs-right .ajs-message.ajs-visible {
  right: 290px;
}

.alertify-notifier.ajs-left {
  left: 10px;
}

.alertify-notifier.ajs-left .ajs-message {
  left: -300px;
}

.alertify-notifier.ajs-left .ajs-message.ajs-visible {
  left: 0;
}

.alertify-notifier.ajs-center {
  left: 50%;
}

.alertify-notifier.ajs-center .ajs-message {
  transform: translateX(-50%);
}

.alertify-notifier.ajs-center .ajs-message.ajs-visible {
  left: 50%;
  transition-timing-function: cubic-bezier(0.57, 0.43, 0.1, 0.65);
}

.alertify-notifier.ajs-center.ajs-top .ajs-message {
  top: -300px;
}

.alertify-notifier.ajs-center.ajs-top .ajs-message.ajs-visible {
  top: 0;
}

.alertify-notifier.ajs-center.ajs-bottom .ajs-message {
  bottom: -300px;
}

.alertify-notifier.ajs-center.ajs-bottom .ajs-message.ajs-visible {
  bottom: 0;
}

.ajs-no-transition.alertify .ajs-dimmer,
.ajs-no-transition.alertify .ajs-modal,
.ajs-no-transition.alertify .ajs-dialog {
  transition: none !important;
  animation: none !important;
}

.ajs-no-transition.alertify-notifier .ajs-message {
  transition: none !important;
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .alertify .ajs-dimmer,
  .alertify .ajs-modal,
  .alertify .ajs-dialog {
    transition: none !important;
    animation: none !important;
  }
  .alertify-notifier .ajs-message {
    transition: none !important;
    animation: none !important;
  }
}
/**
 * Swiper 8.4.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 12, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
    format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

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

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

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

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

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

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

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-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%;
  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%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

html,
body {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}

body {
  overflow-x: hidden;
  position: relative;
}
@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
  }
}
body.loading {
  overflow: hidden;
}
body.loading .load {
  display: flex;
  opacity: 1;
  z-index: 999;
}
body.opened {
  overflow: hidden;
}

.load {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.load body {
  background: #000;
}
.load .pswp__preloader__icn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.75;
  width: 50px;
  height: 50px;
  animation: clockwise 1000ms linear infinite;
}
.load .pswp__preloader__cut {
  width: 25px;
  height: 50px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.load .pswp__preloader__donut--fake {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  border: 2px solid red;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}
.load .pswp__preloader__donut {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  border: 5px solid #000;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
  animation: donut-rotate 2000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0);
  }
}
.catalog {
  margin-bottom: 140px;
}
.catalog__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
}
.catalog__filters1 {
  width: calc(25% - 14px);
  position: relative;
}
.catalog__filters1__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.catalog__filters1__list__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 12px;
}
.catalog__filters1__list__item:last-child {
  margin-bottom: 0;
}
.catalog__filters1__list__item input {
  height: 0;
  width: 0;
}
.catalog__filters1__list__item input:checked ~ i {
  background: #010101;
}
.catalog__filters1__list__item input:checked ~ i svg {
  opacity: 1;
}
.catalog__filters1__list__item i {
  height: 14px;
  width: 14px;
  flex-shrink: 0;
  margin-right: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0f1f2;
  margin-top: 2px;
}
.catalog__filters1__list__item i svg {
  opacity: 0;
  transition: all 0.25s ease;
}
.catalog__filters1__list__item span {
  font-size: 14px;
  line-height: 16px;
  color: #010101;
}
.catalog__filters1__range {
  display: flex;
  justify-content: space-between;
  padding-right: 40px;
}
.catalog__filters1__range__input {
  width: calc(50% - 8px);
  height: 26px;
}
.catalog__filters1__range__input input {
  border-bottom: 1px solid #9c9ca1;
  height: 100%;
  width: 100%;
  transition: all 0.25s ease;
}
.catalog__filters1__range__input input:focus {
  color: #010101;
  border-bottom-color: #010101;
}
.catalog__filters1__range__input input::-moz-placeholder {
  color: #9c9ca1;
}
.catalog__filters1__range__input input::placeholder {
  color: #9c9ca1;
}
.catalog__filters1__item {
  margin-bottom: 40px;
}
.catalog__filters1__item:last-child {
  margin-bottom: 0;
}
.catalog__filters1__cats {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.catalog__filters1__cats__wrap {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog__filters1__cats__wrap .arrow {
  content: "";
  background-size: cover;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
}
.catalog__filters1__cats__wrap .arrow svg {
  position: absolute;
  top: 4px;
  right: 4px;
  left: 4px;
  bottom: 4px;
}
.catalog__filters1__cats__wrap .arrow svg:nth-child(1) {
  opacity: 0;
}
.catalog__filters1__cats__wrap.empty .arrow {
  display: none;
}
.catalog__filters1__cats__parent,
.catalog__filters1__cats__child,
.catalog__filters1__cats__last {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
}
.catalog__filters1__cats__parent.active
  > .catalog__filters__cats__wrap
  .arrow
  svg:nth-child(1),
.catalog__filters1__cats__child.active
  > .catalog__filters__cats__wrap
  .arrow
  svg:nth-child(1),
.catalog__filters1__cats__last.active
  > .catalog__filters__cats__wrap
  .arrow
  svg:nth-child(1) {
  opacity: 1;
}
.catalog__filters1__cats__parent.active
  > .catalog__filters__cats__wrap
  .arrow
  svg:nth-child(2),
.catalog__filters1__cats__child.active
  > .catalog__filters__cats__wrap
  .arrow
  svg:nth-child(2),
.catalog__filters1__cats__last.active
  > .catalog__filters__cats__wrap
  .arrow
  svg:nth-child(2) {
  opacity: 0;
}
.catalog__filters1__cats__parent a,
.catalog__filters1__cats__child a,
.catalog__filters1__cats__last a {
  transition: all 0.25s ease;
}
.catalog__filters1__cats__parent a:hover,
.catalog__filters1__cats__child a:hover,
.catalog__filters1__cats__last a:hover {
  color: #125293;
}
.catalog__filters1__cats__parent:last-child,
.catalog__filters1__cats__child:last-child,
.catalog__filters1__cats__last:last-child {
  margin-bottom: 0;
}
.catalog__filters1__cats__childs {
  padding-left: 10px;
  margin-top: 15px;
  display: none;
}
.catalog__filters1__cats__lasts {
  padding-left: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: none;
}
.catalog__filters1__cats__lasts:last-child {
  margin-bottom: 0;
}
.catalog__filters1__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 30px;
  right: 30px;
  display: none;
}
.catalog__filters1__close svg {
  width: 100%;
  height: 100%;
}
.catalog__filters {
  width: calc(25% - 14px);
  position: relative;
}
.catalog__filters__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.catalog__filters__close {
  display: none;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 15px;
}
.catalog__filters__close svg {
  fill: #000;
}
.catalog__filters__close__text {
  font-size: 14px;
}
.catalog__filters__close__icon {
  width: 12px;
  height: 12px;
  margin-right: 12px;
}
.catalog__filters__item {
  margin-bottom: 38px;
}
.catalog__filters__item:last-child {
  margin-bottom: 0;
}
.catalog__filters__label {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 14px;
}
.catalog__filters__footer {
  margin-top: 38px;
}
.catalog__filters__button,
.catalog__filters__button-slicky {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
  padding: 8px 15px;
}
.catalog__filters__button:hover,
.catalog__filters__button-slicky:hover {
  background: #efae29;
}
.catalog__filters__button-slicky,
.catalog__filters__button-slicky-slicky {
  position: absolute;
  left: 105%;
  top: 170px;
  z-index: 10;
  display: none;
}
.catalog__filters__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog__filters__price__input {
  width: calc(50% - 3px);
  border: 1px solid #e2e2e2;
  box-sizing: border-box;
  border-radius: 2px;
  height: 43px;
}
.catalog__filters__price__input input {
  width: 100%;
  height: 100%;
  font-size: 15px;
  text-indent: 16px;
  color: #000;
}
.catalog__filters__price__input input::-moz-placeholder {
  color: #898f97;
}
.catalog__filters__price__input input::placeholder {
  color: #898f97;
}
.catalog__filters__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 190px;
  overflow: auto;
}
.catalog__filters__list input {
  border: 0;
  padding: 0;
  margin: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
.catalog__filters__list::-webkit-scrollbar {
  width: 4px;
}
.catalog__filters__list::-webkit-scrollbar-track {
  background: #f9faff;
}
.catalog__filters__list::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: #125293;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.catalog__filters__list label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog__filters__list li {
  margin-bottom: 10px;
}
.catalog__filters__list li input:checked ~ i {
  background: url(../images/33b80f347e906ea3c31a3f1c8b84d6d9.svg) no-repeat
    center #125293;
  border-color: #125293;
}
.catalog__filters__list li i {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #e2e2e2;
  margin-right: 9px;
  flex-shrink: 0;
}
.catalog__filters__list li:last-child {
  margin-bottom: 0;
}
.catalog__filters__list li span {
  font-size: 18px;
  transition: all 0.25s ease;
}
.catalog__filters .wc-layered-nav-term {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}
.catalog__filters .wc-layered-nav-term.chosen:before {
  background: url(../images/33b80f347e906ea3c31a3f1c8b84d6d9.svg) no-repeat
    center #125293;
  border-color: #125293;
}
.catalog__filters .wc-layered-nav-term:first-child {
  margin-top: 0;
}
.catalog__filters .wc-layered-nav-term:hover a {
  color: #125293;
}
.catalog__filters .wc-layered-nav-term:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #e2e2e2;
}
.catalog__filters .wc-layered-nav-term a {
  font-size: 15px;
  margin-left: 9px;
  transition: all 0.25s ease;
}
.catalog__filters .wc-layered-nav-term .count {
  display: none;
}
@media (max-width: 1280px) {
  .catalog__filters {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    height: 100%;
    box-sizing: border-box;
    padding: 15px 0;
    z-index: 11;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.25s linear;
  }
  .catalog__filters__content {
    overflow: auto;
    padding: 0 15px;
  }
  .catalog__filters__content::-webkit-scrollbar {
    width: 4px;
  }
  .catalog__filters__content::-webkit-scrollbar-track {
    background: #f9faff;
  }
  .catalog__filters__content::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: #125293;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  .catalog__filters__footer {
    display: none;
    padding: 0 15px;
  }
  .catalog__filters__close {
    display: flex;
  }
  .catalog__filters::-webkit-scrollbar {
    width: 4px;
  }
  .catalog__filters::-webkit-scrollbar-track {
    background: #f9faff;
  }
  .catalog__filters::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: #125293;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  .catalog__filters.active {
    transform: translateX(0);
  }
  .catalog__filters__button-sticky {
    display: none !important;
  }
}
.catalog__content {
  width: calc(75% - 14px);
}
.catalog__content__filter {
  display: none;
}
.catalog__content__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.catalog__content__total {
  font-size: 18px;
  line-height: 15px;
}
.catalog__content__view {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog__content__view__button {
  width: 36px;
  height: 36px;
  border: 2px solid #f0f1f2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.catalog__content__view__button:hover {
  background: #d4e7eb;
}
.catalog__content__view__button.active {
  background: #f0f1f2;
}
.catalog__content__view__button.active img {
  opacity: 0.3;
}
.catalog__content__view__button img {
  width: 10px;
  height: 10px;
}
.catalog__content__tile {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.catalog__content__tile__item {
  width: calc(33.3333333333% - 18.6666666667px);
  margin-right: 28px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.catalog__content__tile__item:nth-child(-n + 3) {
  margin-top: 0;
}
.catalog__content__tile__item:nth-child(3n + 3) {
  margin-right: 0;
}
.catalog__content__tile__item:hover .catalog__content__tile__item__image img {
  transform: scale(0.8);
}
.catalog__content__tile__item:hover .catalog__content__tile__item__desc {
  color: #125293;
}
.catalog__content__tile__item__image {
  width: 100%;
  margin-bottom: 32px;
  box-sizing: border-box;
  overflow: hidden;
  height: 250px;
}
.catalog__content__tile__item__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.25s ease;
}
.catalog__content__tile__item__scu {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #9c9ca1;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 20px;
}
.catalog__content__tile__item__desc {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 40px;
  width: 100%;
  word-break: break-word;
  transition: all 0.25s ease;
}
.catalog__content__tile__item__button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 32px;
  height: 52px;
  background: #fff;
  color: #000;
  border-radius: 6px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: auto;
}
.catalog__content__tile__item__button:hover {
  background: #000;
  color: #fff;
}
.catalog__content__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog__content__nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog__content__nav__button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.catalog__content__nav__button:hover {
  background: #efae29;
}
.catalog__content__pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog__content__pagination .wp-pagenavi {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog__content__pagination__current {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #e1e2e3;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-left: 9px;
  margin-right: 9px;
  position: relative;
}
.catalog__content__pagination__current input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.catalog__content__pagination__link {
  height: 40px;
  width: 40px;
  background: #f0f1f2;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-size: 0;
  transition: all 0.25s ease;
}
.catalog__content__pagination__link:hover {
  background: #d5d8da;
}
.catalog__content__pagination__link:before {
  width: 8px;
  height: 13px;
  content: "";
}
.catalog__content__pagination__link-prev:before {
  background: url(../images/e9fe79faf694f0db907f031303bc3c2c.svg);
}
.catalog__content__pagination__link-next:before {
  background: url(../images/8cc95411a32d6218f4154ca2ff4cc580.svg);
}
.catalog__content__pagination__total {
  font-size: 12px;
  margin-left: 20px;
}
.catalog__content__list {
  margin-bottom: 60px;
}
.catalog__content__list__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 80px;
}
.catalog__content__list__item:last-child {
  margin-bottom: 0;
}
.catalog__content__list__item__image {
  flex-shrink: 0;
  margin-right: 24px;
  width: 234px;
  overflow: hidden;
  height: 222px;
  display: block;
}
.catalog__content__list__item__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.25s ease;
}
.catalog__content__list__item__sku {
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 19px;
  color: #9c9ca1;
  text-transform: uppercase;
}
.catalog__content__list__item__title {
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 23px;
}
.catalog__content__list__item__title:hover {
  color: #125293;
}
.catalog__content__list__item__content {
  margin-right: 90px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.catalog__content__list__item__buttons {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.catalog__content__list__item__button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
  margin-bottom: 13px;
}
.catalog__content__list__item__button:hover {
  background: #efae29;
}
.catalog__content__list__item__link {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 32px;
  height: 52px;
  background: #fff;
  color: #000;
  border-radius: 6px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 24px;
  height: 52px;
  justify-content: center;
  width: 100%;
}
.catalog__content__list__item__link:hover {
  background: #000;
  color: #fff;
}
.catalog__content__list__item__price {
  font-size: 20px;
}
.catalog__content__list__item__params {
  font-size: 20px;
  font-weight: 300;
  line-height: 21px;
  padding-bottom: 10px;
  border-bottom: 1px solid #010101;
  display: inline-block;
  transition: all 0.25s ease;
}
.catalog__content__list__item__params:hover {
  color: #125293;
  border-bottom-color: #125293;
}
.catalog__cats,
.catalog__subcats {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.catalog__cats__item,
.catalog__subcats__item {
  margin-bottom: 20px;
  margin-right: 20px;
  background: #fafafa;
  height: 60px;
  box-sizing: border-box;
  border: 1px solid #fafafa;
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 15px;
  padding-right: 25px;
}
.catalog__cats__item.active,
.catalog__subcats__item.active {
  border-color: #010101;
}
.catalog__cats__item__icon,
.catalog__subcats__item__icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.catalog__cats__item__icon img,
.catalog__subcats__item__icon img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.catalog__cats__item__text,
.catalog__subcats__item__text {
  font-size: 20px;
}
.catalog__subcats {
  border-top: 1px solid rgba(112, 112, 112, 0.3);
  padding-top: 30px;
  margin-top: 30px;
}
@media (max-width: 1280px) {
  .catalog__content {
    width: 100%;
  }
  .catalog__content__filter,
  .catalog__content__total {
    display: block;
    font-size: 16px;
    width: 50%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px 0;
  }
  .catalog__content__filter {
    border-right: 1px solid rgba(112, 112, 112, 0.2);
  }
  .catalog__content__view {
    display: none;
  }
  .catalog__content__head {
    border-top: 1px solid rgba(112, 112, 112, 0.2);
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    margin-bottom: 0;
    width: 100vw;
    margin-left: -25px;
  }
}
@media (max-width: 970px) {
  .catalog__content__tile__item {
    width: calc(50% - 14px);
  }
  .catalog__content__tile__item:nth-child(3) {
    margin-top: 40px;
  }
  .catalog__content__tile__item:nth-child(3n + 3) {
    margin-right: 28px;
  }
  .catalog__content__tile__item:nth-child(2n + 2) {
    margin-right: 0;
  }
  .catalog__content__list__item {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  .catalog__content__list__item__content {
    margin-right: 0;
    width: calc(100% - 258px);
  }
  .catalog__content__list__item__buttons {
    margin-top: 15px;
    width: 100%;
    flex-direction: row;
  }
  .catalog__content__list__item__button {
    margin-right: 10px;
    margin-bottom: 0;
  }
  .catalog__content__list__item__link {
    width: unset;
    margin-right: 10px;
    margin-bottom: 0;
  }
  .catalog__filters1 {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: auto;
    z-index: 15;
    box-sizing: border-box;
    padding: 70px 30px 30px 20px;
  }
  .catalog__filters1__close {
    display: block;
  }
  .catalog__content {
    width: 100%;
  }
  .catalog__content__bottom {
    flex-direction: column;
  }
  .catalog__content__nav {
    width: 100%;
    margin-bottom: 37px;
  }
  .catalog__content__nav__button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .catalog__title {
    margin-bottom: 30px;
  }
  .catalog__cats,
  .catalog__subcats {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .catalog__cats__item,
  .catalog__subcats__item {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .catalog__content__list__item__image {
    height: unset;
    margin-right: 15px;
    width: 190px;
  }
}
@media (max-width: 570px) {
  .catalog__content__list__item {
    flex-direction: column;
  }
  .catalog__content__list__item__image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    height: 150px;
  }
  .catalog__content__list__item__content {
    width: 100%;
    margin-bottom: 20px;
  }
  .catalog__content__list__item__buttons {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog__content__list__item__button {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .catalog__content__list__item__link {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .catalog__content__tile {
    align-items: stretch;
  }
  .catalog__content__tile__item {
    width: 50%;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    padding-top: 29px;
    padding-bottom: 30px;
  }
  .catalog__content__tile__item:nth-child(2n + 2) {
    padding-left: 10px;
  }
  .catalog__content__tile__item:nth-child(2n + 1) {
    padding-right: 10px;
    border-right: 1px solid rgba(112, 112, 112, 0.2);
  }
  .catalog__content__tile__item__button {
    font-size: 10px;
    height: 39px;
    padding: 0 24px;
    margin-top: auto;
  }
}

.cart {
  padding-top: 60px;
  padding-bottom: 120px;
}
.cart button,
.cart input,
.cart textarea {
  border: 0;
  padding: 0;
  background: transparent;
  outline: 0;
}
.cart img {
  width: 100%;
  height: 100%;
}
.cart__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 50px;
}
.cart__title span {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .cart__title {
    font-size: 25px;
  }
}
.cart__title span {
  font-size: 25px;
  font-weight: 500;
  margin-left: 24px;
  color: #fff;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #125293;
}
.cart__product {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 70px;
  margin-bottom: 70px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  width: 100%;
}
.cart__product:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.cart__product__remove {
  width: 15px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}
.cart__product__remove:hover path {
  fill: #125293;
}
.cart__product__remove path {
  transition: all 0.25s ease;
}
.cart__product__info {
  width: 404px;
  margin-right: 40px;
}
.cart__product__info__desc {
  font-size: 18px;
  line-height: 22px;
}
.cart__product__info__sku {
  font-size: 14px;
  letter-spacing: 0.012em;
  font-weight: 500;
  text-transform: uppercase;
  color: #9ca7b2;
}
.cart__product__qty {
  position: relative;
  border: 1px solid #010101;
  height: 52px;
  box-sizing: border-box;
  width: 189px;
  border-radius: 6px;
  overflow: hidden;
}
.cart__product__qty input {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.cart__product__qty__button {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  cursor: pointer;
}
.cart__product__qty__button svg {
  transition: all 0.25s ease;
}
.cart__product__qty__button.disabled {
  opacity: 0.3;
}
.cart__product__qty__button:hover svg {
  transform: scale(1.1);
}
.cart__product__qty__button-minus {
  left: 0;
}
.cart__product__qty__button-plus {
  right: 0;
}
.cart__product__img {
  width: 167px;
  margin-right: 40px;
  height: 183px;
}
.cart__product__img img {
  -o-object-fit: contain;
  object-fit: contain;
}
.cart__button {
  height: 101px;
  background: #010101;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 35px;
  box-sizing: border-box;
  transition: all 0.25s ease;
}
.cart__button:hover {
  background: #125293;
}
.cart__button:hover .arrow {
  width: 57px;
}
.cart__button:hover .arrow path {
  fill: #fff;
}
.cart__button .text {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
}
.cart__button .arrow {
  width: 37px;
  height: 26px;
  overflow: hidden;
  display: flex;
  position: relative;
  transition: all 0.25s ease;
}
.cart__button .arrow svg {
  height: 100%;
  width: 57px;
  position: absolute;
  top: 0;
  right: 0;
}
.cart__empty__button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.cart__empty__button:hover {
  background: #efae29;
}
@media (max-width: 970px) {
  .cart__product {
    flex-wrap: wrap;
    position: relative;
  }
  .cart__product__qty {
    height: 52px;
    margin-top: 30px;
  }
  .cart__product__info {
    margin-right: 0;
    width: unset;
  }
  .cart__product__remove {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .cart__product__content {
    width: calc(100% - 207px);
    padding-right: 40px;
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  .cart {
    padding-top: 0px;
    padding-bottom: 30px;
  }
  .cart__product {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .cart__title span {
    font-size: 18px;
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }
  .cart__button {
    height: 60px;
  }
  .cart__button .text {
    font-size: 18px;
  }
  .cart__button svg {
    width: 18px;
    height: 13px;
  }
}
@media (max-width: 500px) {
  .cart__product {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .cart__product__img {
    margin-bottom: 20px;
  }
  .cart__product__content {
    width: 100%;
    padding-right: 0;
  }
  .cart__product__info__desc {
    font-size: 16px;
    line-height: 20px;
  }
}

.checkout {
  background: #d4e7eb;
  padding-top: 80px;
  padding-bottom: 80px;
}
.checkout button,
.checkout input,
.checkout textarea {
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  outline: 0;
}
.checkout__fields__line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.checkout__fields__field {
  width: calc(50% - 18px);
  height: 36px;
}
.checkout__fields__field input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-size: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #707070;
  border-radius: 0;
  outline: 0 !important;
  transition: all 0.25s ease;
}
.checkout__fields__field input:focus {
  border: 0;
  border-bottom: 1px solid #125293;
  color: #000;
}
.checkout__fields__field input.error {
  border-bottom-color: red;
}
.checkout__fields__textarea {
  height: 97px;
  margin-bottom: 40px;
}
.checkout__fields__textarea textarea {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-size: 16px;
  border-bottom: 1px solid #707070;
  transition: all 0.25s ease;
  resize: none;
  border-radius: 0;
  outline: 0 !important;
}
.checkout__fields__textarea textarea:focus {
  border: 0;
  border-bottom: 1px solid #125293;
  color: #000;
}
.checkout__bottom {
  display: flex;
}
.checkout__bottom button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
  margin-right: 45px;
}
.checkout__bottom button:hover {
  background: #efae29;
}
.checkout__confirm {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.checkout__confirm input {
  height: 0;
  width: 0;
}
.checkout__confirm input:checked ~ i svg {
  opacity: 1;
}
.checkout__confirm i {
  height: 14px;
  width: 14px;
  flex-shrink: 0;
  margin-right: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  background: #010101;
}
.checkout__confirm i svg {
  opacity: 0;
  transition: all 0.25s ease;
}
.checkout__confirm span {
  font-size: 12px;
  line-height: 16px;
  color: #9c9ca1;
}
.checkout__confirm span a {
  color: #010101;
}
.checkout__confirm.warning span {
  color: red !important;
}
.checkout__confirm span {
  max-width: 265px;
}
.checkout__wrap {
  background: #fff;
  padding: 60px;
}
.checkout__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
.checkout__note {
  font-size: 18px;
  line-height: 30px;
  max-width: 470px;
  margin-bottom: 50px;
}
.checkout__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-right: 40px;
}
.checkout__title span {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .checkout__title {
    font-size: 25px;
  }
}
.checkout__edit {
  color: #125293;
  font-weight: 500;
  font-size: 20px;
  border-bottom: 1px solid rgba(18, 82, 147, 0.2);
  padding-bottom: 5px;
  transition: all 0.25s ease;
}
.checkout__edit:hover {
  border-bottom-color: #125293;
}
@media (max-width: 970px) {
  .checkout__head {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .checkout__title {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .checkout {
    background: #fff;
    padding-top: 0;
    padding-bottom: 30px;
  }
  .checkout__wrap {
    padding: 0;
  }
  .checkout__edit {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .checkout__note {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
  }
  .checkout__fields__field {
    width: 100%;
    margin-bottom: 30px;
  }
  .checkout__fields__field:last-child {
    margin-bottom: 0;
  }
  .checkout__fields__line {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .checkout__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .checkout__bottom button {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.seo {
  h2 {
    font-size: 22px;
    line-height: 22px;
  }
}
.product {
  padding-bottom: 100px;
}
.product button,
.product input,
.product textarea {
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  outline: 0;
}
.product__relevant {
  margin-top: 30px;
}
.product img {
  /*width: 100%;*/
  height: 100%;
}
.product__title {
  font-size: 35px;
  font-weight: 500;
  line-height: 41px;
  margin-bottom: 30px;
}
.product__meta {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  margin-bottom: 50px;
}
.product__sku {
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 16px;
  font-weight: 500;
  color: #9c9ca1;
  margin-right: 49px;
  text-transform: uppercase;
}
.product__status {
  text-transform: uppercase;
  color: #125293;
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 16px;
  font-weight: 500;
}
.product__body {
  display: flex;
  justify-content: space-between;
}
.product__image {
  width: calc(50% - 14px);
  border: 32px solid #f0f1f2;
  box-sizing: border-box;
  /* height: 566px; */
  display: flex;
  justify-content: center;
}
.product__image img {
  -o-object-fit: contain;
  object-fit: contain;
}
.product__tabs {
  margin-bottom: 80px;
}
.product__tabs__menu {
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: auto;
  padding-bottom: 6px;
}
.product__tabs__menu::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.product__tabs__menu::-webkit-scrollbar-thumb {
  border-radius: 20px;
}
.product__tabs__menu button {
  font-size: 20px;
  margin-left: 25px;
  cursor: pointer;
  color: #000;
  transition: all 0.25s ease;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
}
.product__tabs__menu button:hover {
  color: #125293;
}
.product__tabs__menu button.active {
  border-bottom-color: #125293;
}
.product__tabs__menu button:first-child {
  margin-left: 0;
}
.product__tabs__content__item {
  display: none;
}
.product__tabs__content__item.active {
  display: block;
}
.product__info {
  width: calc(50% - 14px);
  border: 32px solid #d4e7eb;
  box-sizing: border-box;
  padding: 45px 45px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.product__info__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 24px;
}
.product__info__text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 40px;
}
.char-side__title {
  font-size: larger;
  margin-bottom: 1rem;
  color: #000;
}
.product__info__params {
  font-size: 12px;
  font-weight: 300;
  line-height: 21px;
  border-bottom: 1px solid #010101;
  display: inline-block;
  transition: all 0.25s ease;
  margin-left: 1rem;
  vertical-align: middle;
}

.product__info__params:hover {
  color: #125293;
  border-bottom-color: #125293;
}
.product__info__bottom {
  margin-top: auto;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
  padding-top: 6%;
  width: 100%;
}
.product__info__price {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}
.product__info__buttons {
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.product__info__button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.product__info__button:hover {
  background: #efae29;
}
.product__info__qty {
  margin-right: 10px;
  position: relative;
  width: 100%;
  border: 1px solid #010101;
  box-sizing: border-box;
  border-radius: 6px;
  overflow: hidden;
}
.product__info__qty input {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.product__info__qty__button {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  cursor: pointer;
}
.product__info__qty__button svg {
  transition: all 0.25s ease;
}
.product__info__qty__button.disabled {
  opacity: 0.3;
}
.product__info__qty__button:hover svg {
  transform: scale(1.1);
}
.product__info__qty__button-minus {
  left: 0;
}
.product__info__qty__button-plus {
  right: 0;
}
.product__body {
  margin-bottom: 80px;
}
.product__params__title {
  font-size: 45px;
  font-weight: 500;
  line-height: 52px;
  margin-bottom: 50px;
}
.product__params__list__item {
  display: flex;
  justify-content: space-between;
  align-content: center;
  border-bottom: 1px solid rgba(156, 156, 161, 0.2);
  margin-top: 15px;
  font-size: 18px;
  line-height: 18px;
  padding-bottom: 15px;
}
.product__params__list__item span:nth-child(1) {
  flex-shrink: 0;
}
.product__params__list__item span:nth-child(2) {
  padding-left: 15px;
  text-align: right;
}
.product__params__list__item:nth-child(1) {
  margin-top: 0;
}
.product__relevant__title {
  font-size: 45px;
  font-weight: 500;
  line-height: 52px;
  margin-bottom: 50px;
}
.product__relevant__list {
  display: flex;
  justify-content: flex-start;
}
.product__relevant__list__item {
  width: 299px;
  margin-right: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.product__relevant__list__item:last-child {
  margin-right: 0;
}
.product__relevant__list__item:hover .product__relevant__list__item__image img {
  transform: scale(0.8);
}
.product__relevant__list__item:hover .product__relevant__list__item__desc {
  color: #125293;
}
.product__relevant__list__item__image {
  width: 100%;
  height: 250px;
  margin-bottom: 32px;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}
.product__relevant__list__item__image img {
  transition: all 0.25s ease;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__relevant__list__item__scu {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #9c9ca1;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 20px;
}
.product__relevant__list__item__desc {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 40px;
  transition: all 0.25s ease;
}
.product__relevant__list__item button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 32px;
  height: 52px;
  background: #fff;
  color: #000;
  border-radius: 6px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.25s ease;
}
.product__relevant__list__item button:hover {
  background: #000;
  color: #fff;
}
.product__relevant__wrap {
  position: relative;
  padding-right: 25px;
  padding-left: 25px;
  margin-left: -25px;
  overflow: hidden;
  width: 100%;
}
.product__relevant__controls {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  justify-content: flex-end;
  align-items: center;
}
.product__relevant__control {
  width: 137px;
  height: 137px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.product__relevant__control:hover:before {
  width: 137px;
  height: 137px;
}
.product__relevant__control:before {
  content: "";
  width: 103px;
  height: 103px;
  background: #010101;
  border-radius: 50%;
  transition: all 0.25s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.product__relevant__control__inner {
  position: relative;
  z-index: 2;
  width: 103px;
  height: 103px;
  background: #010101;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__relevant__control__inner svg {
  width: 36px;
  height: 22px;
}
@media (max-width: 1280px) {
  .product__relevant__controls {
    display: flex;
  }
  .product__image {
    border-width: 14px;
  }
  .product__info {
    border-width: 14px;
    padding: 25px;
  }
}
@media (max-width: 970px) {
  .product__image {
    border: 0;
  }
  .product__image img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .product__info {
    padding: 0;
    border: 0;
  }
  .product__info__buttons {
    flex-direction: column;
  }
  .product__info__qty {
    margin-bottom: 20px;
    margin-right: 0;
    height: 52px;
  }
  .product__info__button {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  .product__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 30px;
  }
  .product__body {
    flex-direction: column;
  }
  .product__image,
  .product__info {
    width: 100%;
  }
  .product__image {
    margin-bottom: 50px;
    height: 200px;
  }
  .product__image img {
    -o-object-fit: contain;
    object-fit: contain;
  }
  .product__info__text {
    margin-bottom: 20px;
  }
  .product__params__title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 50px;
  }
  .product__params__list {
    flex-direction: column;
  }
  .product__params__list__item {
    width: 100%;
    margin-right: 0;
    margin-top: 0 !important;
    margin-bottom: 15px;
  }
  .product__params__list__item:last-child {
    margin-bottom: 0;
  }
  .product__relevant__title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 50px;
  }
  .product__relevant__control {
    width: 40px;
    height: 40px;
  }
  .product__relevant__control:before {
    display: none;
  }
  .product__relevant__control__inner {
    width: 40px;
    height: 40px;
  }
  .product__relevant__control__inner svg {
    height: 14px;
    width: 9px;
  }
}

.header {
  background: #125293;
  padding: 30px 0;
}
.header__top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
}
.header__top__logo {
  margin-right: 44px;
}
.header__top__menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 20px;
}
.header__top__menu__item {
  font-size: 16px;
  margin-right: 40px;
}
.header__top__menu__item:last-child {
  margin-right: 0;
}
.header__top__menu__item a {
  color: #fff;
  transition: all 0.25s ease;
}
.header__top__menu__item a:hover {
  color: #fcb72b;
}
.header__top__contacts {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 30px;
}
.header__top__contacts__phone {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  margin-right: 35px;
  color: #fff;
  transition: all 0.25s ease;
}
.header__top__contacts__phone:last-child {
  margin-right: 0;
}
.header__top__contacts__phone:hover {
  color: #fcb72b;
}
.header__top__time {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 20px;
}
.header__top__email {
  color: #fcb72b;
  font-size: 16px;
  border-bottom: 1px solid rgba(252, 183, 43, 0.2);
  margin-left: 30px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.header__top__email:hover {
  border-bottom-color: #fcb72b;
}
.header__top__city {
  font-size: 16px;
  margin-left: auto;
  flex-shrink: 0;
}
.header__top__city a,
.header__top__city span {
  color: #fff;
}
.header__top__city span {
  padding-right: 3px;
}
.header__top__city a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}
.header__top__city a:hover {
  border-bottom-color: #fff;
}
.header__top__mobile {
  display: none;
}
.header__top__mobile__search,
.header__top__mobile__burger {
  width: 25px;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}
.header__top__mobile__search svg,
.header__top__mobile__burger svg {
  height: 100%;
  width: 100%;
}
.header__top__mobile__search {
  height: 25px;
}
.header__top__mobile__burger {
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 15px;
}
.header__top__mobile__burger .bar {
  height: 2px;
  width: 100%;
  background: #fff;
}
.header__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__bottom__catalog {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 151px;
  border-radius: 8px;
  flex-shrink: 0;
  background: #fcb72b;
  margin-right: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.header__bottom__catalog:hover {
  background: #efae29;
}
.header__bottom__catalog__text {
  font-size: 18px;
  font-weight: 500;
  margin-right: 29px;
}
.header__bottom__catalog__icon {
  transition: all 0.25s ease;
}
.header__bottom__catalog__icon path {
  transition: all 0.25s ease;
}
.header__bottom__catalog.active {
  background: #000;
}
.header__bottom__catalog.active .header__bottom__catalog__text {
  color: #fff;
}
.header__bottom__catalog.active .header__bottom__catalog__icon {
  transform: rotate(180deg);
}
.header__bottom__catalog.active .header__bottom__catalog__icon path {
  fill: #fff;
}
.header__bottom__search {
  height: 60px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.header__bottom__search.active button path {
  fill: #000;
}
.header__bottom__search input {
  height: 100%;
  width: 100%;
  text-indent: 26px;
  background: transparent;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: unset;
  margin-bottom: 0;
  color: #fff;
  transition: all 0.25s ease;
}
.header__bottom__search input:focus {
  background: #fff;
  color: #000;
}
.header__bottom__search button {
  background: transparent;
  height: 60px;
  width: 60px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
}
.header__bottom__search button path {
  transition: all 0.25s ease;
}
.header__bottom__cart {
  margin-left: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
}
.header__bottom__cart__icon {
  position: relative;
  margin-right: 22px;
}
.header__bottom__cart__count {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fcb72b;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -12px;
  right: -14px;
}
.header__bottom__cart__text {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 1690px) {
  .header__top__logo {
    margin-right: 20px;
  }
  .header__top__menu__item {
    margin-right: 20px;
  }
  .header__top__email {
    margin-left: 20px;
  }
  .header__top__time {
    margin-left: 20px;
  }
  .header__top__contacts {
    margin-left: 20px;
  }
  .header__top__contacts__phone {
    margin-right: 15px;
  }
}
@media (max-width: 1500px) {
  .header__top__logo {
    width: 150px;
  }
  .header__top__logo svg {
    width: 100%;
    height: auto;
  }
  .header__top__contacts {
    flex-direction: column;
  }
  .header__top__contacts__phone {
    margin-right: 0;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
  }
  .header__top__contacts__phone:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  .header__top__time {
    display: none;
  }
  .header__bottom__search {
    height: 40px;
  }
  .header__bottom__search button {
    height: 40px;
    width: 40px;
  }
  .header__bottom__catalog {
    height: 40px;
    width: 100px;
  }
  .header__bottom__catalog__text {
    margin-right: 10px;
    font-size: 14px;
  }
  .header__bottom__cart {
    margin-left: 10px;
  }
  .header__bottom__cart__icon {
    width: 30px;
    margin-right: 15px;
  }
  .header__bottom__cart__icon svg {
    width: 100%;
  }
  .header__bottom__cart__count {
    width: 20px;
    height: 20px;
    font-size: 12px;
    top: -8px;
    right: -10px;
  }
  .header__bottom__cart__text {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .header {
    padding: 20px 0;
  }
  .header__top {
    padding-bottom: 10px;
  }
  .header__top__menu,
  .header__top__city,
  .header__top__email,
  .header__top__contacts {
    display: none;
  }
  .header__top__mobile {
    display: flex;
    margin-left: auto;
  }
  .header__bottom__search {
    display: none;
  }
  .header__bottom__cart {
    margin-left: auto;
  }
}

.modal-categories {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  top: 0;
  width: 100vw;
  margin-top: 202px;
  height: calc(100vh - 202px);
  background: #125293;
  box-sizing: border-box;
  padding-bottom: 50px;
}
.modal-categories__wrap {
  display: grid;
  grid-template-columns: 430px auto;
  grid-gap: 25px;
}
.modal-categories__pages {
  height: 100%;
}
.modal-categories__pages__item {
  display: none;
  height: 100%;
}
.modal-categories__pages__item.active {
  display: block;
}
.modal-categories__pages__title {
  font-size: 35px;
  margin-bottom: 30px;
}
.modal-categories__pages__link {
  font-size: 25px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  transition: all 0.25s ease;
}
.modal-categories__pages__link:hover {
  border-bottom-color: #fff;
}
.modal-categories__products {
  overflow: auto;
  margin-bottom: 40px;
  height: calc(100% - 285px);
}
.modal-categories__products__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: #104a84;
  margin-bottom: 2px;
}
.modal-categories__products__item:last-child {
  margin-bottom: 0;
}
.modal-categories__products__item__button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
  margin-left: 100px;
  flex-shrink: 0;
}
.modal-categories__products__item__button:hover {
  background: #efae29;
}
.modal-categories__products__item__name {
  font-size: 24px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  transition: all 0.25s ease;
}
.modal-categories__products__item__name:hover {
  border-bottom-color: #fff;
}
.modal-categories__products__item__sku {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  margin-left: auto;
}
.modal-categories__products__item__image {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 4px;
  flex-shrink: 0;
  margin-right: 40px;
}
.modal-categories__products__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.modal-categories__menu__inner {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.modal-categories__menu__item.active {
  background: #104a84;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.modal-categories__menu__item a {
  display: block;
  font-size: 24px;
  color: #fff;
  padding: 14px 14px 10px;
}
.modal-categories__menu__item a:hover {
  transition: all 0.25s ease;
  background: #000;
}
@media (max-width: 1500px) {
  .modal-categories {
    height: calc(100vh - 188px);
    margin-top: 188px;
    padding-bottom: 30px;
  }
  .modal-categories__menu__item a {
    font-size: 20px;
    padding: 10px 10px 8px;
  }
  .modal-categories__products {
    height: calc(100% - 130px);
  }
  .modal-categories__products__item__image {
    height: 70px;
    width: 70px;
  }
}
@media (max-width: 1400px) {
  .modal-categories__wrap {
    grid-template-columns: 300px auto;
  }
  .modal-categories__products__item__sku,
  .modal-categories__products__item__button {
    display: none;
  }
  .modal-categories__products__item__name {
    font-size: 20px;
  }
}
@media (max-width: 1100px) {
  .modal-categories {
    height: calc(100vh - 133px);
    margin-top: 133px;
  }
}
@media (max-width: 768px) {
  .modal-categories__wrap {
    grid-template-columns: 1fr;
  }
  .modal-categories__pages {
    display: none;
  }
}

.main-header {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0;
}
.main-header__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.main-header__slider {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  grid-column: 1/3;
}
.main-header__slider__item {
  position: relative;
}
.main-header__slider__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url(../images/9fd31b974cf2cb595083ace02121e18a.png);
  background-size: cover;
}
.main-header__slider__item__image {
  display: flex;
}
.main-header__slider__item__content {
  position: absolute;
  left: 50px;
  bottom: 50px;
  width: 100%;
  max-width: 500px;
  z-index: 3;
}
.main-header__slider__item__title {
  color: #fff;
  font-size: 80px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 70px;
}
.main-header__slider__item__sub {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.8);
}
.main-header__slider__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  right: 45px;
  bottom: 45px;
  z-index: 5;
}
.main-header__slider__prev,
.main-header__slider__next {
  width: 45px;
  height: 45px;
  border: 0;
  padding: 0;
  margin: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}
.main-header__slider__prev path,
.main-header__slider__next path {
  transition: all 0.25s ease;
}
.main-header__slider__prev:hover,
.main-header__slider__next:hover {
  background: #125293;
}
.main-header__slider__prev:hover path,
.main-header__slider__next:hover path {
  fill: #fff;
}
.main-header__slider__prev {
  margin-right: 10px;
}
.main-header__slider__prev svg {
  transform: rotate(180deg);
}
.main-header__category {
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  transition: all 0.25s ease;
  position: relative;
}
.main-header__category:hover {
  border-color: #000;
}
.main-header__category:hover .main-header__category__title,
.main-header__category:hover .main-header__item__title {
  border-bottom-color: #000;
}
.main-header__category__image {
  height: 75%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 20px;
  box-sizing: border-box;
}
.main-header__category__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}
.main-header__category__content,
.main-header__item__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 45px;
}
.main-header__category__title,
.main-header__item__title {
  font-size: 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: inline;
  transition: all 0.25s ease;
}
.main-header__category__qty,
.main-header__item__qty {
  margin-top: 20px;
  font-size: 25px;
  color: #125293;
}
.main-header__item {
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.main-header__item:nth-child(5) {
  background: url(../images/55b97ce2a7c4763c9ce326d510da7b8f.png) no-repeat
    center;
  border: 0;
}
.main-header__item:nth-child(5) .main-header__item__title {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.main-header__item:nth-child(5) .main-header__item__qty {
  color: #fcb72b;
}
.main-header__item:nth-child(7) {
  background: url(../images/37d94953d3016398f54fc051894c9a12.png) no-repeat
    center;
  border: 0;
}
.main-header__item:nth-child(7) .main-header__item__title {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.main-header__item:nth-child(7) .main-header__item__qty {
  color: #fcb72b;
}
.main-header__item:nth-child(8) {
  background: url(../images/25c3d8382f1a81310a03ce2cd75cb829.png) no-repeat
    center;
  border: 0;
}
.main-header__item:nth-child(8) .main-header__item__title {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.main-header__item:nth-child(8) .main-header__item__qty {
  color: #fcb72b;
}
.main-header__item:nth-child(9) {
  background: url(../images/bf0c04b9e0cd9e775cd58c8e1491eb1c.png) no-repeat
    center;
  border: 0;
}
.main-header__item:nth-child(9) .main-header__item__title {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.main-header__item:nth-child(9) .main-header__item__qty {
  color: #fcb72b;
}
.main-header__item:before {
  content: "";
  padding-top: 78%;
  float: left;
}
.main-header__item:hover {
  border-color: #000;
}
.main-header__item:hover .main-header__item__title {
  border-bottom-color: #000;
}
.main-header__item:hover:nth-child(5) .main-header__item__title {
  border-bottom-color: #fff;
}
.main-header__item:hover:nth-child(7) .main-header__item__title {
  border-bottom-color: #fff;
}
.main-header__item:hover:nth-child(8) .main-header__item__title {
  border-bottom-color: #fff;
}
.main-header__item:hover:nth-child(9) .main-header__item__title {
  border-bottom-color: #fff;
}
.main-header__item__image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 67%;
  box-sizing: border-box;
  padding-bottom: 20px;
  padding-right: 20px;
  display: flex;
  align-items: flex-end;
}
.main-header__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right;
  object-position: right;
}
@media (max-width: 1600px) {
  .main-header__slider__item__content {
    left: 25px;
    bottom: 25px;
  }
  .main-header__slider__item__title {
    font-size: 45px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .main-header__slider__item__sub {
    font-size: 20px;
  }
  .main-header__slider__controls {
    right: 25px;
    bottom: 25px;
  }
  .main-header__category__content,
  .main-header__item__content {
    padding: 20px;
  }
  .main-header__category__title,
  .main-header__item__title {
    font-size: 30px;
  }
  .main-header__category__qty,
  .main-header__item__qty {
    margin-top: 15px;
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .main-header__wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .main-header__category__title,
  .main-header__item__title {
    line-height: 38px;
  }
}
@media (max-width: 600px) {
  .main-header__wrap {
    grid-template-columns: 100%;
    grid-gap: 20px;
  }
  .main-header__slider {
    grid-column: unset;
  }
  .main-header__item:before {
    padding-top: 60%;
  }
  .main-header__category {
    position: relative;
    overflow: hidden;
  }
  .main-header__category:before {
    content: "";
    padding-top: 60%;
    float: left;
  }
  .main-header__category__image {
    height: 67%;
    padding-right: 20px;
  }
  .main-header__category__image img {
    -o-object-position: right;
    object-position: right;
  }
}
@media (max-width: 540px) {
  .main-header__slider__controls {
    display: none;
  }
  .main-header__slider__item__content {
    width: unset;
    right: 25px;
  }
  .main-header__slider__item__title {
    font-size: 30px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .main-header__slider__item__sub {
    font-size: 18px;
  }
}

.main-benefits {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 160px;
}
.main-benefits__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.main-benefits__item {
  overflow: hidden;
  padding: 40px;
  box-sizing: border-box;
}
.main-benefits__item:nth-child(1) {
  background: url(../images/c14f8ec20d71ac4bbebc004a39a44aeb.svg) no-repeat
    center;
}
.main-benefits__item:nth-child(2) {
  background: url(../images/bdc72ddb7665982535c42e44f5adabfe.svg) no-repeat
    center;
}
.main-benefits__item:nth-child(3) {
  background: url(../images/b498e98e512c6972d2699f6de38b19ba.svg) no-repeat
    center;
}
.main-benefits__item:nth-child(4) {
  background: url(../images/473f52604278bc6f81f152d995087dc8.svg) no-repeat
    center;
}
.main-benefits__item:nth-child(2) .main-benefits__item__title,
.main-benefits__item:nth-child(2) .main-benefits__item__text {
  color: #000;
}
.main-benefits__item:before {
  content: "";
  padding-top: 56%;
  float: left;
}
.main-benefits__item__title {
  font-size: 100px;
  display: inline-block;
  line-height: 91px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  color: #fff;
}
.main-benefits__item__title span {
  font-size: 45px;
}
.main-benefits__item__text {
  font-size: 28px;
  line-height: 34px;
  color: #fff;
}
@media (max-width: 1600px) {
  .main-benefits__item {
    padding: 20px;
  }
  .main-benefits__item__text {
    font-size: 20px;
    line-height: 25px;
  }
  .main-benefits__item__title {
    font-size: 60px;
    line-height: 50px;
    margin-bottom: 8px;
  }
}
@media (max-width: 1100px) {
  .main-benefits {
    margin-bottom: 60px;
  }
  .main-benefits__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-benefits__item {
    background: #125293 !important;
  }
  .main-benefits__item:before {
    padding-top: 30%;
  }
  .main-benefits__item__title,
  .main-benefits__item__text {
    color: #fff !important;
  }
}
@media (max-width: 768px) {
  .main-benefits__wrap {
    grid-gap: 20px;
  }
}
@media (max-width: 500px) {
  .main-benefits__wrap {
    grid-gap: 10px;
  }
  .main-benefits__item {
    padding: 10px;
  }
  .main-benefits__item__title {
    font-size: 30px;
    line-height: 35px;
  }
  .main-benefits__item__title span {
    font-size: 25px;
  }
  .main-benefits__item__text {
    font-size: 16px;
    line-height: 23px;
  }
}

.main-about {
  padding: 0;
  margin-bottom: 160px;
}
.main-about__image img {
  -o-object-fit: cover;
  object-fit: cover;
}
.main-about__title {
  font-size: 100px;
  line-height: 100px;
  word-break: break-word;
  margin-bottom: 40px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 1500px) {
  .main-about__title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 1200px) {
  .main-about__title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 1100px) {
  .main-about__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .main-about__title {
    font-size: 40px;
    line-height: 40px;
  }
}
.main-about__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.main-about__content {
  border: 1px solid #e4e4e4;
  border-left: 0;
  padding: 60px 60px;
}
.main-about__image {
  display: flex;
}
.main-about__text p {
  font-size: 28px;
  line-height: 38px;
  padding-bottom: 38px;
}
.main-about__text p:last-child {
  padding-bottom: 0;
}
.main-about__link {
  font-size: 28px;
  line-height: 40px;
  color: #125293;
  border-bottom: 1px solid rgba(18, 82, 147, 0.2);
  transition: all 0.25s ease;
}
.main-about__link:hover {
  border-bottom-color: #125293;
}
@media (max-width: 1100px) {
  .main-about {
    margin-bottom: 60px;
  }
  .main-about__wrap {
    display: block;
  }
  .main-about__image {
    display: none;
  }
  .main-about__content {
    padding: 0;
    border: 0;
  }
  .main-about__text p {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 30px;
  }
  .main-about__link {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .main-about__title {
    margin-bottom: 20px;
  }
}

.main-services {
  padding-top: 100px;
  padding-bottom: 110px;
  background: url(../images/65875a63686e18ddfc2ed91089e831fc.svg) no-repeat
    center #125293;
  background-size: auto 100%;
}
.main-services__title {
  font-size: 100px;
  line-height: 100px;
  word-break: break-word;
  margin-bottom: 40px;
  font-weight: 500;
  color: #fff;
  max-width: 1500px;
  margin-bottom: 40px;
}
@media (max-width: 1500px) {
  .main-services__title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 1200px) {
  .main-services__title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 1100px) {
  .main-services__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .main-services__title {
    font-size: 40px;
    line-height: 40px;
  }
}
.main-services__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 60px;
}
.main-services__bottom {
  display: flex;
  justify-content: center;
}
.main-services__link {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.main-services__link:hover {
  background: #efae29;
}
.main-services__item {
  box-sizing: border-box;
  border: 1px solid #4275a8;
  background: #125293;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.main-services__item:before {
  content: "";
  padding-top: 100%;
  float: left;
}
.main-services__item__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 40px;
  box-sizing: border-box;
}
.main-services__item__image {
  height: 165px;
  margin-bottom: 70px;
}
.main-services__item__image img {
  height: 100%;
}
.main-services__item__title {
  font-size: 45px;
  line-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  color: #fff;
  display: inline-block;
}
.main-services__item__text {
  font-size: 24px;
  line-height: 33px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1700px) {
  .main-services__item__image {
    margin-bottom: 30px;
    height: 150px;
  }
}
@media (max-width: 1600px) {
  .main-services__item__content {
    padding: 20px 15px;
  }
  .main-services__item__image {
    height: 120px;
  }
  .main-services__item__title {
    font-size: 35px;
    line-height: 38px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1500px) {
  .main-services__item__text {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 1300px) {
  .main-services__item__image {
    height: 100px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .main-services__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-services__item:before {
    padding-top: 65%;
  }
}
@media (max-width: 1100px) {
  .main-services {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .main-services__title {
    margin-bottom: 20px;
  }
  .main-services__item__content {
    position: static;
  }
  .main-services__item:before {
    display: none;
  }
}
@media (max-width: 768px) {
  .main-services__item__content {
    position: static;
  }
  .main-services__item__image {
    height: 65px;
    margin-bottom: 10px;
  }
  .main-services__item__title {
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .main-services__item__text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 600px) {
  .main-services__wrap {
    grid-template-columns: auto;
    margin-bottom: 30px;
  }
}

.main-reviews {
  margin-top: 100px;
  padding: 0;
  margin-bottom: 160px;
}
.main-reviews__title {
  font-size: 100px;
  line-height: 100px;
  word-break: break-word;
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1500px) {
  .main-reviews__title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 1200px) {
  .main-reviews__title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 1100px) {
  .main-reviews__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .main-reviews__title {
    font-size: 40px;
    line-height: 40px;
  }
}
.main-reviews__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.main-reviews__menu__item {
  font-size: 26px;
  border: 0;
  padding: 0;
  border-bottom: 1px dashed transparent;
  background: transparent;
  transition: all 0.25s ease;
}
.main-reviews__menu__item:not(.active) {
  border-bottom-color: #125293;
  color: #125293;
  cursor: pointer;
}
.main-reviews__menu__item:first-child {
  margin-right: 40px;
}
.main-reviews__page {
  display: none;
}
.main-reviews__page.active {
  display: block;
}
.main-reviews__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-reviews__link {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.main-reviews__link:hover {
  background: #efae29;
}
.main-reviews__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 28px;
  margin-bottom: 60px;
}
.main-reviews__item {
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  padding: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.main-reviews__item:hover {
  border-color: #000;
}
.main-reviews__item__image {
  height: 180px;
  margin-bottom: 35px;
}
.main-reviews__item__image img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
}
.main-reviews__item__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 9px;
  text-align: center;
  word-break: break-word;
}
.main-reviews__item__size {
  font-size: 15px;
  color: #9b9b9b;
}
@media (max-width: 1100px) {
  .main-reviews {
    margin-top: 50px;
    margin-bottom: 60px;
  }
  .main-reviews__title {
    margin-bottom: 20px;
  }
  .main-reviews__menu {
    margin-bottom: 20px;
  }
  .main-reviews__menu__item {
    font-size: 20px;
  }
  .main-reviews__menu__item:first-child {
    margin-right: 20px;
  }
  .main-reviews__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .main-reviews__wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-bottom: 30px;
  }
  .main-reviews__item {
    padding: 10px;
  }
  .main-reviews__item__title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .main-reviews__item__image {
    margin-bottom: 15px;
    height: 130px;
  }
}

.main-question {
  padding: 120px 0;
  background: url(../images/61c2128e7074a20f3af47eb089b08ea4.svg) no-repeat
    center #125293;
  background-size: auto 100%;
}
.main-question__wrap {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-gap: 28px;
}
.main-question__title {
  color: #fff;
  font-size: 100px;
  line-height: 100px;
  word-break: break-word;
  margin-bottom: 40px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 1500px) {
  .main-question__title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 1200px) {
  .main-question__title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 1100px) {
  .main-question__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .main-question__title {
    font-size: 40px;
    line-height: 40px;
  }
}
.main-question__title span {
  color: #7197be;
}
.main-question__circles {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.main-question__circles__item {
  width: 157px;
  height: 157px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -20px;
  position: relative;
  background: #125293;
}
.main-question__circles__item:first-child {
  margin-left: 0;
  z-index: 3;
}
.main-question__circles__item:nth-child(2) {
  z-index: 2;
}
.main-question__circles__item__head {
  font-size: 32px;
  font-weight: 500;
  line-height: 43px;
  margin-bottom: 9px;
  color: #fff;
}
.main-question__circles__item__text {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  padding: 0 20px;
}
.main-question__form__input {
  border-radius: 8px;
  margin-bottom: 10px;
  height: 104px;
}
.main-question__form__input input {
  width: 100%;
  height: 100%;
  background: #104a84;
  font-size: 24px;
  text-indent: 40px;
  color: #fff;
  border: 0 !important;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease;
}
.main-question__form__input input:focus {
  background: #fff;
  color: #000;
}
.main-question__form__input input:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.main-question__form__input input:focus::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.main-question__form__input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.main-question__form__input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.main-question__form__textarea {
  border-radius: 8px;
  margin-bottom: 24px;
  height: 258px;
}
.main-question__form__textarea textarea {
  width: 100%;
  height: 100%;
  padding: 0;
  padding-top: 40px;
  box-sizing: border-box;
  background: #104a84;
  font-size: 24px;
  text-indent: 40px;
  color: #fff;
  border: 0;
  margin: 0;
  resize: none;
  transition: all 0.25s ease;
}
.main-question__form__textarea textarea:focus {
  background: #fff;
  color: #000;
}
.main-question__form__textarea textarea:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.main-question__form__textarea textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.main-question__form__textarea textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.main-question__form__textarea textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.main-question__form__confirm,
.modal__form__confirm {
  display: inline-flex;
  justify-content: flex-start;
  font-size: 24px;
  margin-bottom: 30px;
  color: #fff;
}
.main-question__form__confirm a,
.modal__form__confirm a {
  text-decoration: underline;
  color: #fff;
}
.main-question__form__confirm input,
.modal__form__confirm input {
  height: 0;
  width: 0;
  border: 0;
  padding: 0;
  margin: 0;
}
.main-question__form__confirm input:checked ~ span,
.modal__form__confirm input:checked ~ span {
  background: #fff;
}
.main-question__form__confirm input:checked ~ span svg,
.modal__form__confirm input:checked ~ span svg {
  opacity: 1;
}
.main-question__form__confirm span,
.modal__form__confirm span {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #fff;
  box-sizing: border-box;
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-question__form__confirm span svg,
.modal__form__confirm span svg {
  width: 60%;
  height: auto;
  opacity: 0;
  transition: all 0.25s ease;
}
.main-question__form__confirm span svg path,
.modal__form__confirm span svg path {
  fill: #000;
}
.main-question__form__button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.main-question__form__button:hover {
  background: #efae29;
}
@media (max-width: 1200px) {
  .main-question__wrap {
    grid-template-columns: 1fr 1fr;
  }
  .main-question__form__input {
    height: 50px;
  }
  .main-question__form__input input {
    font-size: 18px;
    text-indent: 10px;
  }
  .main-question__form__textarea {
    height: 200px;
  }
  .main-question__form__textarea textarea {
    padding-top: 10px;
    font-size: 18px;
    text-indent: 10px;
  }
  .main-question__form__confirm,
  .modal__form__confirm {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 900px) {
  .main-question {
    padding: 40px 0;
  }
  .main-question__wrap {
    grid-template-columns: 1fr;
  }
  .main-question__title br {
    display: none;
  }
}
@media (max-width: 768px) {
  .main-question__circles__item {
    height: 120px;
    width: 120px;
    margin-left: -11px;
  }
  .main-question__circles__item__head {
    font-size: 20px;
    line-height: 12px;
    margin-bottom: 5px;
  }
  .main-question__circles__item__text {
    font-size: 14px;
    line-height: 16px;
  }
}

.services-page__content h2 {
  font-size: 35px;
  line-height: 35px;
  margin-bottom: 20px;
}
.services-page__content ul {
  margin-bottom: 20px;
}
.services-page__content li {
  list-style: disc inside;
  margin-bottom: 7px;
}
.services-page__content li:last-child {
  margin-bottom: 0;
}

.menu_footer a {
  transition: all 0.25s ease;
}
.menu_footer a:hover {
  color: #fcb72b !important;
}

.footer__city {
  font-size: 18px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 40px;
}
.footer__copyright,
.footer__policy {
  font-size: 15px;
  color: #fff;
}

footer .footer_right .phone {
  transition: all 0.25s ease;
}
footer .footer_right .phone:hover {
  color: #fcb72b;
}

.benefits-section {
  padding-top: 50px;
}
.benefits-section .benefit.line3 {
  background: transparent;
  border: 1px solid #e4e4e4;
}
.benefits-section .benefit.line3 .benefit-text {
  color: #000;
}
.benefits-section .benefit.line3 .benefit-text a {
  color: #125293;
}
.benefits-section .benefit.line3:before {
  display: none;
}
.benefits-section .benefit.sline1:before {
  background: url(../images/e5ffb1a6fda0faa4f480fc23b8f8d7de.svg);
}
.benefits-section .benefit.sline2:before {
  background: url(../images/56e1f0ef44c6e0c6da11b3799c28d248.svg);
}
.benefits-section .benefit.sline3:before {
  background: url(../images/bf831d792486a1a23ee8156c18fb599a.svg);
}

.ajs-message {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.section-text {
  margin-bottom: 40px;
  margin-top: 40px;
}
.section-text .text h4 {
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 24px;
  margin-top: 40px;
}
.section-text .text ul {
  margin-bottom: 20px;
}
.section-text .text li {
  list-style: disc inside;
  margin-bottom: 7px;
}
.section-text .text li:last-child {
  margin-bottom: 0;
}

.custom-page {
  padding-bottom: 50px;
}

.error-404 {
  padding: 50px 0;
}

.reviews-page {
  margin-top: 0 !important;
  margin-bottom: 100px;
}
.reviews-page .main-reviews__title {
  text-align: left;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  display: none;
}
.modal__close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50px;
  right: 50px;
  background: transparent;
  border: 0;
  margin: 0;
  transform: rotate(45deg);
  z-index: 25;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.25s ease;
}
.modal__close:before,
.modal__close:after {
  content: "";
  background: #fff;
  transition: all 0.25s ease;
  position: absolute;
}
.modal__close:before {
  top: 0;
  left: 19px;
  height: 100%;
  width: 2px;
}
.modal__close:after {
  top: 19px;
  left: 0;
  height: 2px;
  width: 100%;
}
.modal__close:hover {
  opacity: 1;
}
.modal__fade {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.modal__fade-form {
  background: #125293;
}
.modal__fade-thanks {
  background: #107744;
}
.modal__inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}
.modal__form {
  width: 100%;
  max-width: 1090px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: auto 0;
}
.modal__form.modal-question,
.modal__form.modal-call,
.modal__form.modal-one-click,
.modal__form.modal-price {
  display: none;
}
.modal__form__title,
.modal__thanks__title {
  font-size: 80px;
  font-weight: 500;
  line-height: 80px;
  margin-bottom: 40px;
  color: #fff;
}
.modal__form__title span,
.modal__thanks__title span {
  color: rgba(255, 255, 255, 0.4);
}
.modal__form__input input,
.modal__form__input textarea,
.modal__form__textarea input,
.modal__form__textarea textarea {
  border: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-indent: 28px;
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 24px;
  transition: all 0.25s ease;
}
.modal__form__input input::-moz-placeholder,
.modal__form__input textarea::-moz-placeholder,
.modal__form__textarea input::-moz-placeholder,
.modal__form__textarea textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.modal__form__input input::placeholder,
.modal__form__input textarea::placeholder,
.modal__form__textarea input::placeholder,
.modal__form__textarea textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.modal__form__input input:focus,
.modal__form__input textarea:focus,
.modal__form__textarea input:focus,
.modal__form__textarea textarea:focus {
  background: #fff;
  color: #000;
}
.modal__form__textarea {
  height: 260px;
}
.modal__form__textarea textarea {
  resize: none;
  padding-top: 30px;
  box-sizing: border-box;
}
.modal__form__input {
  height: 80px;
  margin-bottom: 10px;
}
.modal__form__input:last-child {
  margin-bottom: 0;
}
.modal__form__input-short {
  width: 50%;
}
.modal__form__inputs {
  margin-bottom: 20px;
}
.modal__form__inputs-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.modal__form__button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
}
.modal__form__button:hover {
  background: #efae29;
}
.modal__cities {
  display: none;
  width: 100%;
  padding: 30px 100px;
  margin: auto 0;
}
.modal__cities
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  font-size: 20px;
}
.modal__cities__text {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
.modal__cities__select {
  margin-bottom: 20px;
}
.modal__cities__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px;
}
.modal__cities__list__item a {
  transition: all 0.25s ease;
  color: #fff;
  font-size: 20px;
}
.modal__cities__list__item a:hover {
  color: #fcb72b;
}
.modal__thanks {
  display: none;
}
.modal__thanks__button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 28px;
  height: 52px;
  background: #fcb700;
  color: #000;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  transition: all 0.25s ease;
  background: #fff;
}
.modal__thanks__button:hover {
  background: #efae29;
}
.modal__thanks__button:hover {
  background: yellow;
}
@media (max-width: 1400px) {
  .modal__cities__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1100px) {
  .modal__cities__list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }
  .modal__inner {
    padding: 25px;
  }
  .modal__close {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }
  .modal__close:before {
    left: 14px;
  }
  .modal__close:after {
    top: 14px;
  }
  .modal__form__title,
  .modal__thanks__title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .modal__form__input {
    height: 60px;
  }
  .modal__form__confirm {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .modal__cities {
    padding: 30px 0;
  }
  .modal__cities
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    font-size: 16px;
  }
  .modal__cities__text {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .modal__cities__select {
    margin-bottom: 15px;
  }
  .modal__cities__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .modal__cities__list__item a {
    font-size: 16px;
  }
  .modal__form__input {
    height: 50px;
  }
  .modal__form__input input {
    font-size: 18px;
    text-indent: 10px;
  }
  .modal__form__input-short {
    width: 100%;
  }
}

.modal-menu {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  display: none;
  top: 134px;
  background: #125293;
  box-sizing: border-box;
  padding-bottom: 30px;
}
.modal-menu .container {
  height: 100%;
}
.modal-menu__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.modal-menu__contacts {
  display: flex;
  flex-direction: column;
}
.modal-menu__contacts__phone {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  transition: all 0.25s ease;
}
.modal-menu__contacts__phone:last-child {
  margin-bottom: 0;
}
.modal-menu__contacts__phone:hover {
  color: #fcb72b;
}
.modal-menu__time {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}
.modal-menu__email {
  color: #fcb72b;
  font-size: 18px;
  border-bottom: 1px solid rgba(252, 183, 43, 0.2);
  flex-shrink: 0;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}
.modal-menu__email:hover {
  border-bottom-color: #fcb72b;
}
.modal-menu__city {
  font-size: 18px;
  margin-top: auto;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.modal-menu__city a,
.modal-menu__city span {
  color: #fff;
}
.modal-menu__city span {
  padding-right: 3px;
}
.modal-menu__city a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}
.modal-menu__city a:hover {
  border-bottom-color: #fff;
}
.modal-menu__menu {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: auto;
}
.modal-menu__menu__item {
  margin-bottom: 5px;
}
.modal-menu__menu__item a {
  font-size: 18px;
  color: #fff;
  transition: all 0.25s ease;
}
.modal-menu__menu__item a:hover {
  color: #fcb72b;
}
.modal-menu__menu__item:last-child {
  margin-bottom: 0;
}

.modal-search {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #125293;
  z-index: 20;
}
.modal-search .container {
  height: 100%;
}
.modal-search__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal-search__close {
  position: absolute;
  background: transparent;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
  border: 0;
  margin: 0;
  transform: rotate(45deg);
  z-index: 25;
  opacity: 0.4;
  transition: all 0.25s ease;
}
.modal-search__close:before,
.modal-search__close:after {
  content: "";
  background: #fff;
  transition: all 0.25s ease;
  position: absolute;
}
.modal-search__close:before {
  top: 0;
  left: 14px;
  height: 100%;
  width: 2px;
}
.modal-search__close:after {
  top: 14px;
  left: 0;
  height: 2px;
  width: 100%;
}
.modal-search__close:hover {
  opacity: 1;
}
.modal-search__search {
  height: 60px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.modal-search__search.active button path {
  fill: #000;
}
.modal-search__search input {
  height: 100%;
  width: 100%;
  text-indent: 26px;
  background: transparent;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: unset;
  margin-bottom: 0;
  color: #000;
  transition: all 0.25s ease;
}
.modal-search__search input:focus {
  color: #000;
}
.modal-search__search input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.modal-search__search input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.modal-search__search button {
  background: transparent;
  height: 60px;
  width: 60px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
}
.modal-search__search button path {
  transition: all 0.25s ease;
  fill: #000;
}

.services {
  padding-top: 0;
  padding-bottom: 40px;
}
.services__title {
  font-size: 100px;
  line-height: 100px;
  word-break: break-word;
  margin-bottom: 40px;
  font-weight: 500;
}
@media (max-width: 1500px) {
  .services__title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 1200px) {
  .services__title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 1100px) {
  .services__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .services__title {
    font-size: 40px;
    line-height: 40px;
  }
}
.services__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 28px;
  margin-bottom: 60px;
}
.services__item {
  border: 1px solid #e4e4e4;
  padding: 35px;
}
.services__item__image {
  width: 123px;
  height: 123px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 35px;
}
.services__item__title {
  font-size: 30px;
  color: #125293;
  border-bottom: 1px solid rgba(18, 82, 147, 0.2);
  display: inline;
  word-break: break-word;
}
.services__item__text {
  margin-top: 30px;
  font-size: 21px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.8);
}
.services__content__inner {
  width: 100%;
  max-width: 1200px;
}
.services__content p {
  color: #000;
  margin: 0 0 20px 0;
  font-size: 24px;
  line-height: 34px;
}
.services__content h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 24px;
  margin-top: 40px;
}
.services__content ul {
  margin-bottom: 20px;
}
.services__content li {
  list-style: disc inside;
  margin-bottom: 7px;
}
.services__content li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1300px) {
  .services__item {
    padding: 20px;
  }
  .services__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .services__item__image {
    margin-bottom: 20px;
  }
  .services__item__title {
    font-size: 20px;
  }
  .services__item__text {
    font-size: 16px;
    margin-top: 20px;
    line-height: 23px;
  }
}
@media (max-width: 768px) {
  .services__list {
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
  .services__item__image {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 500px) {
  .services__list {
    grid-template-columns: 1fr;
  }
}

.breadcrumbs {
  padding-top: 60px;
  padding-bottom: 40px;
}
.breadcrumbs__list {
  font-size: 1.4rem;
}
.breadcrumbs__list a {
  transition: all 0.25s ease;
}
.breadcrumbs__list a:hover {
  color: #fcb72b;
}
.breadcrumbs__list span {
  font-size: 20px;
}
.breadcrumbs__list span.current-item {
  color: #808080;
}
.breadcrumbs__list > span {
  padding-right: 10px;
  padding-left: 10px;
}
.breadcrumbs__list > span:first-child {
  padding-left: 0;
}
.breadcrumbs__list > span:last-child {
  padding-right: 0;
}
@media (max-width: 900px) {
  .breadcrumbs {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .breadcrumbs__list span {
    font-size: 16px;
  }
}

.footer {
  background: #104a84;
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer__info {
  flex-shrink: 0;
  padding-right: 20px;
}
.footer__info__logo {
  margin-bottom: 15px;
}
.footer__info__logo svg {
  width: 100%;
  height: auto;
}
.footer__info__city {
  font-size: 18px;
  flex-shrink: 0;
  margin-bottom: 41px;
}
.footer__info__city a,
.footer__info__city span {
  color: #fff;
}
.footer__info__city span {
  padding-right: 3px;
}
.footer__info__city a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}
.footer__info__city a:hover {
  border-bottom-color: #fff;
}
.footer__info__copyright,
.footer__info__policy {
  color: #fff;
  font-size: 15px;
}
.footer__info__policy {
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__info__policy:hover {
  border-bottom-color: #fff;
}
.footer__mobile {
  display: none;
}
.footer__mobile__copyright,
.footer__mobile__policy {
  color: #fff;
  font-size: 15px;
}
.footer__menu {
  -moz-column-count: 3;
  column-count: 3;
  padding-right: 20px;
}
.footer__cats {
  -moz-column-count: 2;
  column-count: 2;
}
.footer__menu,
.footer__cats {
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.footer__menu a,
.footer__cats a {
  font-size: 18px;
  color: #fff;
  transition: all 0.25s ease;
}
.footer__menu a:hover,
.footer__cats a:hover {
  color: #fcb72b;
}
.footer__menu li,
.footer__cats li {
  margin-bottom: 20px;
}
.footer__contacts {
  padding-left: 20px;
  flex-shrink: 0;
}
.footer__contacts__phones {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__contacts__phone {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}
.footer__contacts__phone:hover {
  color: #fcb72b;
}
.footer__contacts__phone:last-child {
  margin-bottom: 0;
}
.footer__contacts__button {
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  padding: 0 32px;
  height: 52px;
  background: #fff;
  color: #000;
  border-radius: 6px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.25s ease;
}
.footer__contacts__button:hover {
  background: #000;
  color: #fff;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1600px) {
  .footer__cats,
  .footer__menu {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 1400px) {
  .footer__menu {
    -moz-column-count: 2;
    column-count: 2;
  }
  .footer__contacts__phone {
    font-size: 22px;
  }
}
@media (max-width: 1100px) {
  .footer__menu,
  .footer__cats {
    -moz-column-count: 1;
    column-count: 1;
  }
}
@media (max-width: 768px) {
  .footer__cats,
  .footer__menu {
    margin-bottom: 15px;
    width: 49%;
  }
  .footer__cats li,
  .footer__menu li {
    margin-bottom: 8px;
  }
  .footer__cats li:last-child,
  .footer__menu li:last-child {
    margin-bottom: 0;
  }
  .footer__info {
    width: 100%;
    margin-bottom: 15px;
    padding-right: 0;
  }
  .footer__info__logo {
    margin-bottom: 0;
    width: 200px;
  }
  .footer__info__city,
  .footer__info__copyright,
  .footer__info__policy {
    display: none;
  }
  .footer__contacts {
    padding-left: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  .footer__contacts__phones {
    align-items: flex-start;
  }
  .footer__mobile {
    display: block;
  }
}

.in-cart {
  background: #000;
  position: fixed;
  border-radius: 6px;
  top: 32px;
  right: 32px;
  width: 0;
  max-width: 360px;
  padding: 15px 0;
  overflow: hidden;
  z-index: 0;
  box-sizing: border-box;
  transition: width 0.25s linear;
}
.in-cart.show {
  width: 360px;
  padding: 15px 24px;
  z-index: 10;
}
.in-cart__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  width: 100vh;
  max-width: 312px;
  transition: all 0.25s linear 0.25s;
}
.show > .in-cart__inner {
  opacity: 1;
}
.in-cart__controls {
  margin-left: 20px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}
.in-cart__content {
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}
.in-cart__separator {
  height: 33px;
  width: 1px;
  background: #333333;
  margin-right: 13px;
  margin-left: 13px;
}
.in-cart__close {
  cursor: pointer;
  width: 9px;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}
.in-cart__close svg {
  width: 100%;
  height: 100%;
}
.in-cart__link {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 400px) {
  .in-cart {
    top: 0;
    right: 0;
    border-radius: 0;
    max-width: unset;
  }
  .in-cart__inner {
    max-width: unset;
    width: calc(100vw - 48px);
  }
  .in-cart.show {
    width: 100%;
  }
}

.manufacture-logos {
  margin-bottom: 60px;
}
.manufacture-logos__title {
  font-size: 100px;
  line-height: 100px;
  word-break: break-word;
  margin-bottom: 40px;
  font-weight: 500;
}
@media (max-width: 1500px) {
  .manufacture-logos__title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 1200px) {
  .manufacture-logos__title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 1100px) {
  .manufacture-logos__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .manufacture-logos__title {
    font-size: 40px;
    line-height: 40px;
  }
}
.manufacture-logos__list__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.manufacture-logos__list__item__image {
  width: 80px;
  flex-shrink: 0;
  padding-right: 15px;
}
.manufacture-logos__list__item__text {
  font-size: 20px;
}
.manufacture-logos__list__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
@media (max-width: 768px) {
  .manufacture-logos__list__item__text {
    font-size: 16px;
    word-break: break-word;
  }
}

.gallery-page {
  margin-bottom: 60px;
}
.gallery-page__title {
  font-size: 100px;
  line-height: 100px;
  word-break: break-word;
  margin-bottom: 40px;
  font-weight: 500;
}
@media (max-width: 1500px) {
  .gallery-page__title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 1200px) {
  .gallery-page__title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 1100px) {
  .gallery-page__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .gallery-page__title {
    font-size: 40px;
    line-height: 40px;
  }
}
.gallery-page__slider {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.gallery-page__slider__item {
  position: relative;
}
.gallery-page__slider__item__image {
  display: flex;
}
.gallery-page__slider__item__content {
  position: absolute;
  left: 50px;
  bottom: 50px;
  width: 100%;
  max-width: 500px;
  z-index: 3;
}
.gallery-page__slider__item__title {
  color: #fff;
  font-size: 80px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 70px;
}
.gallery-page__slider__item__sub {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.8);
}
.gallery-page__slider__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  right: 45px;
  bottom: 45px;
  z-index: 5;
}
.gallery-page__slider__prev,
.gallery-page__slider__next {
  width: 45px;
  height: 45px;
  border: 0;
  padding: 0;
  margin: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}
.gallery-page__slider__prev path,
.gallery-page__slider__next path {
  transition: all 0.25s ease;
}
.gallery-page__slider__prev:hover,
.gallery-page__slider__next:hover {
  background: #125293;
}
.gallery-page__slider__prev:hover path,
.gallery-page__slider__next:hover path {
  fill: #fff;
}
.gallery-page__slider__prev {
  margin-right: 10px;
}
.gallery-page__slider__prev svg {
  transform: rotate(180deg);
}
@media (max-width: 1600px) {
  .gallery-page__slider__controls {
    right: 25px;
    bottom: 25px;
  }
}
@media (max-width: 540px) {
  .gallery-page__slider__controls {
    right: 10px;
    bottom: 10px;
  }
}
