/**
* Importing by glob example
* https://github.com/maoberlehner/node-sass-magic-importer/tree/master/packages/node-sass-magic-importer#globbing
 */
/*
    Dots plugin
*/
/*
    Navigation plugin
*/
.carousel {
  position: relative;
  box-sizing: border-box;
}
.carousel *, .carousel *:before, .carousel *:after {
  box-sizing: inherit;
}
.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

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

.carousel__track {
  display: 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;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

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

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  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;
}

/*
  Thumbs plugin
*/
/* 3/2 */
/*
  HTML plugin
*/
/*
  Toolbar plugin
*/
html.with-fancybox {
  scroll-behavior: auto;
}

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

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}
.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}
.fancybox__container :focus {
  outline: none;
}
body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}
@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
}

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

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  /* For Safari */
  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;
  -ms-scroll-chaining: none;
      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;
  }
}

/* Close button located inside content area */
.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 {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          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;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

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

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

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

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

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

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

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

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

/* Both `throwOut` classes are for closing animation after dragging up/down */
.fancybox-throwOutUp {
  -webkit-animation: 0.15s ease both fancybox-throwOutUp;
          animation: 0.15s ease both fancybox-throwOutUp;
}

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

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

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  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: -webkit-grab;
  cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: 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: -webkit-grab;
  cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

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

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}
.is-closing .has-image .fancybox__content {
  overflow: visible;
}
.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
  /* Fix Mac OS Safari 11 - 13 */
}
.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%;
  -o-object-fit: contain;
     object-fit: contain;
}
.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}
.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}
.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

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

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

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}
.fancybox__thumbs .carousel__slide {
  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;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}
@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}
.fancybox__toolbar__items {
  display: 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;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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 {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  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;
}

a {
  color: inherit;
}

body {
  padding-top: 103px;
}
@media (max-width: 767px) {
  body {
    padding-top: 35px;
  }
}
@media (max-width: 400px) {
  body {
    padding-top: 51px;
  }
}

.header {
  border-bottom: 1px solid #ECECEC;
  padding: 10px 25px;
  box-sizing: border-box;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 10;
  background: #fff;
}
.header__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.header__burger {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 50px;
  flex-shrink: 0;
  cursor: pointer;
}
.header__burger svg {
  width: 25px;
  height: 22px;
}
.header__logo {
  max-height: 49px;
  height: 100%;
  margin-right: 50px;
}
.header__logo img {
  width: 100%;
}
.header__menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__menu .menu-item {
  margin-right: 49px;
  font-size: 1.6rem;
  font-weight: 500;
  flex-shrink: 0;
}
.header__menu .menu-item:last-child {
  margin-right: 0;
}
.header__menu .menu-item a {
  transition: all 0.25s ease;
}
.header__menu .menu-item a:hover {
  color: #EE3D48;
}
.header__new {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  width: 62px;
  flex-shrink: 0;
  margin-left: auto;
}
.header__new img {
  width: 54px;
}
.header__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 29px;
}
.header__search, .header__user {
  height: 18px;
  width: 18px;
  margin-right: 36px;
  cursor: pointer;
}
.header__search svg, .header__user svg {
  height: 100%;
}
.header__favorite {
  height: 18px;
  width: 18px;
  margin-right: 36px;
  position: relative;
  cursor: pointer;
}
.header__favorite.active svg {
  fill: #EE3D48;
}
.header__favorite.active svg:nth-child(2) {
  opacity: 1;
}
.header__favorite svg {
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.25s ease;
}
.header__favorite svg:nth-child(2) {
  opacity: 0;
}
.header__cart {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__cart__icon {
  height: 18px;
  margin-right: 10px;
  width: 22px;
}
.header__cart__icon svg {
  height: 100%;
}
.header__cart__text {
  font-size: 1.4rem;
}
@media (max-width: 1280px) {
  .header__menu {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__logo img {
    margin-right: 10px !important;
  }
  .header__burger {
    margin-right: 10px;
  }
  .header__burger svg {
    width: 18.5px;
    height: 16px;
  }
  .header__logo {
    height: 30px;
    margin-right: 0;
  }
  .header__new {
    width: 30px;
    height: 30px;
  }
  .header__new img {
    width: 22px;
  }
}
@media (max-width: 500px) {
  .header {
    padding: 10px 15px;
  }
  .header__buttons {
    margin-left: 10px;
  }
  .header__search, .header__favorite, .header__user {
    margin-right: 10px;
  }
}
.header__menu.m-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}
.header__menu.m-menu .menu-item {
    font-size: 2rem;
}
.header__menu.m-menu {
  display: flex; 
}

.main-banner {
  position: relative;
  margin-bottom: 2px;
}
.main-banner:last-child {
  margin-bottom: 0;
}
.main-banner * {
  color: #fff;
}
.main-banner__image {
  height: 611px;
}
.main-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-banner__outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-banner__outer .container {
  height: 100%;
}
.main-banner__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.main-banner__label {
  font-size: 2.9rem;
  margin-bottom: 23px;
  text-transform: uppercase;
}
.main-banner__title {
  width: 245px;
  margin-bottom: 30px;
}
.main-banner__link {
  font-size: 1.4rem;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 17px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.main-banner__link:hover {
  color: #000;
  background: #fff;
}
@media (max-width: 767px) {
  .main-banner__image {
    height: 400px;
  }
  .main-banner__label {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .main-banner__title {
    width: 180px;
    margin-bottom: 15px;
  }
}
@media (max-width: 400px) {
  .main-banner__image {
    height: 350px;
  }
}

.footer {
  background: #fff;
  padding-top: 65px;
  padding-bottom: 40px;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__column {
  width: calc(25% - 15px);
}
.footer__column * {
  color: #333;
}
.footer__column.right {
    text-align: right;
}
.footer__column__title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: 0px 0px 0px rgb(0 0 0);
}
.footer__menu {
  display: flex;
  gap: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__menu__item {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.footer__menu__item a {
  transition: all 0.25s ease;
}
.footer__menu__item a:hover {
  color: #000;
}
.footer__menu__item:last-child {
  margin-bottom: 0;
}
.footer__contacts__line {
  margin-bottom: 14px;
  font-size: 1.6rem;
  font-weight: 500;
}
.footer__contacts__line:last-child {
  margin-bottom: 0;
}
.footer__contacts__line a {
  transition: all 0.25s ease;
}
.footer__contacts__line a:hover {
  color: #000;
}
.footer__socials {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__socials__item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin-right: 20px;
  transition: all 0.25s ease;
}
.footer__socials__item:last-child {
  margin-right: 0;
}
.footer__socials__item:hover {
  background: #EE3D48;
}
.footer__socials__item:hover svg {
  fill: #fff;
}
.footer__socials__item svg {
  height: 20px;
  width: 20px;
  transition: all 0.25s ease;
}
.footer__bottom {
    margin-top: 30px;
    display: flex;
	justify-content: space-between;
    align-items: center;
    border-top: 1px solid #B9B9B9;
    padding-top: 15px;
}
.footer__bottom__copyright, .footer__bottom__link {
  color: #333;
  font-size: 1.6rem;
  text-shadow: 0px 0px 0px rgb(0 0 0);
  font-weight: 500;
  line-height: 1.9rem;
  margin-right: 45px;
}
.footer__bottom__copyright:last-child, .footer__bottom__link:last-child {
  margin-right: 0;
}
.footer__bottom__link {
  transition: all 0.25s ease;
}
.footer__bottom__link:hover {
  color: #000;
}
@media (max-width: 970px) {
  .footer__bottom {
    margin-top: 15px;
    flex-direction: column;
    align-items: flex-start;
	padding: 15px;
    gap: 10px;
  }
  .footer__bottom__copyright, .footer__bottom__link {
    margin-right: 0;
  }
  .footer__bottom__link {
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .footer__wrap {
	 padding-right: 15px!important;
     padding-left: 15px!important;
   }
  .footer__socials {
    margin-top: 20px;
  }
  .footer__socials__item {
    width: 30px;
    height: 30px;
  }
  .footer__socials__item svg {
    width: 16px;
    height: 16px;
  }
  .footer__wrap {
    flex-direction: column;
  }
  .footer__column {
    width: 100%;
    margin-bottom: 40px;
  }
  .footer__column.right {
    text-align: left;
  }
  .footer__column__title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .footer__menu {        
    gap: 0;
	flex-direction: row;
	padding-left: 0px;
	flex-wrap: wrap;
	}
  .footer__menu__item {
    margin-bottom: 10px;
    font-size: 1.4rem;
	margin-bottom: 10px;
    font-size: 1.6rem;
    padding: 10px 0;
  }
  .footer__menu__item a {
    padding-right: 24px;
}
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
}
.menu__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 36px;
}
.menu__head__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 17px;
  flex-shrink: 0;
  cursor: pointer;
}
.menu__head__button svg {
  width: 25px;
  height: 22px;
  stroke: #000;
}
.menu__head__logo {
  max-height: 49px;
  height: 100%;
}
.menu__head__logo img {
  width: 100%;
}
.menu__outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(137, 143, 151, 0.8);
}
.menu__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.menu__socials__item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  margin-right: 20px;
  transition: all 0.25s ease;
}
.menu__socials__item:last-child {
  margin-right: 0;
}
.menu__socials__item:hover {
  background: #EE3D48;
}
.menu__socials__item:hover svg {
  fill: #fff;
}
.menu__socials__item svg {
  height: 20px;
  width: 20px;
  transition: all 0.25s ease;
  fill: #fff;
}
.menu__inner {
  background: #F7F6F2;
  width: 100%;
  max-width: 580px;
  height: 100%;
  position: relative;
  padding: 20px 80px 70px 25px;
  box-sizing: border-box;
  overflow: auto;
}
.menu__content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  height: calc(100% - 62px - 36px);
  box-sizing: border-box;
}
.menu__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 40px;
}
.menu__list li {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 2.4rem;
  transition: all 0.25s ease;
}
.menu__list li:last-child {
  margin-bottom: 0;
}
.menu__list li:first-child {
  font-size: 2.8rem;
  line-height: 2.8rem;
  margin-bottom: 24px;
}
.menu__list li:first-child a {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.menu__list li:hover {
  color: #EE3D48;
}
.menu__second {
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.menu__second li {
  font-size: 2rem;
  line-height: 2.4rem;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}
.menu__second li:last-child {
  margin-bottom: 0;
}
.menu__second li:hover {
  color: #EE3D48;
}

.search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
}
.search__fade {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.search__content {
  transition: transform 0.5s linear;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}
.active > .search__content {
  transform: translateY(0);
}
.search__inner {
  background: #fff;
  padding: 20px 25px 20px;
  position: relative;
  width: 50%;
}
.search__close {
  width: 37px;
  height: 37px;
  position: absolute;
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  align-items: center;
  top: -50px;
  right: 0px;
  cursor: pointer;
}
.search__close svg {
  width: 15px;
  height: 15px;
}
.search__form {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.search__form input {
  width: calc(100% - 140px);
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
  height: 100%;
  text-indent: 15px;
}
.search__form button {
  height: 100%;
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.25s ease;
  cursor: pointer;
}
.search__form button:hover {
  background: #EE3D48;
}
@media (max-width: 767px) {
  .search__inner {
    width: 90%;
    padding: 10px 15px;
  }
}

.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: 1.4rem;
  line-height: 1.8rem;
  color: #fff;
}
.in-cart__separator {
  height: 33px;
  width: 1px;
  background: #333333;
  margin-right: 13px;
  margin-left: 13px;
}
.in-cart__close {
  cursor: pointer;
  width: 9px;
}
.in-cart__close svg {
  width: 100%;
  height: 100%;
}
.in-cart__link {
  font-size: 1.4rem;
  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%;
  }
}

.atention {
  position: fixed;
  text-align: center;
  background: #000;
  font-size: 1.6rem;
  color: #fff;
  left: 0;
  width: 100%;
  padding: 5px 10px;
  z-index: 5;
  top: 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .atention {
    font-size: 1.4rem;
  }
}

.catalog {
  margin-top: 40px;
  margin-bottom: 120px;
}
.catalog__title {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.catalog__title svg {
  width: 86px;
  height: 45px;
}
.catalog__cats {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  overflow: auto;
}
.catalog__cats__item {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 24px;
  font-weight: 500;
  color: #111111;
  font-size: 1.8rem;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.catalog__cats__item:last-child {
  margin-right: 0;
}
.catalog__cats__item:hover {
  background: #EE3D48;
  border-color: #EE3D48;
  color: #fff;
}
.catalog__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.catalog__product {
  width: calc(33.3333333333% - 26.6666666667px);
  margin-right: 40px;
  margin-top: 40px;
}
.catalog__product:nth-child(-n+3) {
  margin-top: 0;
}
.catalog__product:nth-child(3n+3) {
  margin-right: 0;
}
.catalog__product__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog__product__content {
  padding-right: 10px;
}
.catalog__product__favorite {
  margin-left: auto;
  width: 18px;
  height: 17px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
.catalog__product__favorite.active svg {
  fill: #EE3D48;
}
.catalog__product__favorite.active svg:nth-child(1) {
  opacity: 0;
}
.catalog__product__favorite.active svg:nth-child(2) {
  opacity: 1;
}
.catalog__product__favorite svg {
  transition: all 0.25s ease;
  fill: #898F97;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.catalog__product__favorite svg:nth-child(2) {
  opacity: 0;
}
.catalog__product__favorite:hover svg {
  fill: #EE3D48;
}
.catalog__product__title {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 4px;
  transition: all 0.25s ease;
}
:hover > .catalog__product__title {
  color: #EE3D48;
}
.catalog__product__price {
  font-size: 1.6rem;
}
.catalog__product__image {
  height: 280px;
  margin-bottom: 14px;
  overflow: hidden;
}
.catalog__product__image img {
  transition: all 0.25s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
:hover > .catalog__product__image img {
  transform: scale(1.1);
}
.catalog__all {
  margin-bottom: 30px;
}
.catalog__all__button {
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border: 1px solid rgba(137, 143, 151, 0.2);
  transition: all 0.25s ease;
}
.catalog__all__button:hover {
  background: #EE3D48;
  border-color: #EE3D48;
  color: #fff;
}
.catalog__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog__pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.catalog__pagination__prev, .catalog__pagination__next {
  font-size: 1.5rem;
  color: #898F97;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.catalog__pagination__prev {
  margin-right: 32px;
}
.catalog__pagination__prev:before {
  content: "";
  height: 12px;
  width: 5px;
  background: url(../images/b27f56bd18f6cafa326304d18e12c7f5.svg) no-repeat center;
  background-size: contain;
  margin-right: 12px;
}
.catalog__pagination__next {
  margin-left: 32px;
}
.catalog__pagination__next:after {
  content: "";
  height: 12px;
  width: 5px;
  background: url(../images/b27f56bd18f6cafa326304d18e12c7f5.svg) no-repeat center;
  background-size: contain;
  transform: rotate(180deg);
  margin-left: 12px;
}
.catalog__pagination__item {
  border: 2px solid transparent;
  border-radius: 2px;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.catalog__pagination__item.active {
  border-color: #000;
}
.catalog__pagination__item .extend {
  display: none;
}
.catalog__total {
  font-size: 1.5rem;
  color: #DEDEDE;
  margin-left: auto;
}
.catalog__single__title {
  font-size: 3.4rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.catalog__single__text {
  max-width: 840px;
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 50px;
}
.catalog__single__item {
  margin-bottom: 40px;
}
.catalog__single__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 970px) {
  .catalog__cats {
    justify-content: flex-start;
    margin-bottom: 40px;
  }
  .catalog__list {
    margin-bottom: 30px;
  }
  .catalog__product {
    width: calc(33.3333333333% - 13.3333333333px);
    margin-right: 20px;
    margin-top: 20px;
  }
  .catalog__product__image {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .catalog__product {
    width: calc(50% - 10px);
  }
  .catalog__product__title {
    font-size: 1.6rem;
  }
  .catalog__product:nth-child(3n+3) {
    margin-top: 20px;
    margin-right: 20px;
  }
  .catalog__product:nth-child(2n+2) {
    margin-right: 0;
  }
  .catalog__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalog__total {
    margin-left: 0;
    margin-top: 20px;
  }
  .catalog__all__button {
    font-size: 1.4rem;
    padding: 10px 0;
  }
  .catalog__cats__item {
    font-size: 1.4rem;
    padding: 5px 10px;
  }
  .catalog__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .catalog__product {
    width: 100%;
    margin-right: 0 !important;
  }
  .catalog__product:nth-child(2) {
    margin-top: 20px;
  }
}

.breadcrumbs {
  padding: 13px 25px;
  margin-bottom: 10px;
}
.breadcrumbs__list {
  display: flex;
}
.breadcrumbs__list__item {
  font-size: 1.4rem;
  line-height: 1.7rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 24px;
}
.breadcrumbs__list__item:after {
  display: inline-block;
  content: "";
  width: 1px;
  height: 17px;
  background: rgba(112, 112, 112, 0.2);
  margin-left: 24px;
}
.breadcrumbs__list__item:last-child {
  margin-right: 0;
}
.breadcrumbs__list__item:last-child:after {
  display: none;
}
@media (max-width: 970px) {
  .breadcrumbs__list {
    display: block;
  }
  .breadcrumbs__list__item {
    display: inline-flex;
    margin-right: 10px;
  }
  .breadcrumbs__list__item:after {
    margin-left: 10px;
    height: 12px;
  }
}

.series {
  margin-bottom: 120px;
}
.series__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 80px;
}
.series__content {
  margin-left: auto;
  width: calc(100% - 720px);
}
.series__content__menu {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  margin-bottom: 20px;
}
.series__content__menu__item {
  margin-right: 60px;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000;
}
.series__content__menu__item:hover {
  color: #EE3D48;
}
.series__content__menu__item.active:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #111;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.series__content__menu__item:last-child {
  margin-right: 0;
}
.series__content__tab {
  display: none;
}
.series__content__tab.active {
  display: block;
}
.series__content__tab__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.series__content__tab__description {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.series__content__tab__description strong {
  font-weight: 500;
}
.series__content__tab__description p {
  margin-bottom: 26px;
}
.series__content__tab__description p:last-child {
  margin-bottom: 0;
}
.series__slider {
  position: relative;
  overflow: hidden;
  width: 700px;
}
.series__slider__item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.series__slider__item a {
  display: inline-block;
  cursor: zoom-in;
  position: relative;
  height: 100%;
  width: 100%;
}
.series__slider__item__zoom {
  opacity: 0;
  transition: all 0.25s ease;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 0px 14px 0px rgba(0, 0, 0, 0.2);
}
.series__slider__item__zoom svg {
  width: 25%;
  height: 25%;
  fill: #fff;
}
:hover > .series__slider__item__zoom {
  opacity: 1;
}
.series__slider__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.series__slider__controls__item {
  position: relative;
  z-index: 5;
  background: rgba(30, 30, 30, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.series__slider__controls__item img {
  height: 70%;
}
.series__slider__controls__item:hover {
  background: rgba(0, 0, 0, 0.5);
}
.series__slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 25px;
  width: 100%;
}
.series__slider__dots__item {
  position: relative;
  z-index: 5;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  margin-right: 9px;
}
.series__slider__dots__item:last-child {
  margin-right: 0;
}
.series__slider__dots__item.active {
  background: transparent;
}
.series__title {
  font-size: 4rem;
  line-height: 4.9rem;
  padding-bottom: 20px;
}
.series__products {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.series__products__item {
  width: calc(33.3333333333% - 26.6666666667px);
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  margin-right: 40px;
  position: relative;
}
.series__products__item:nth-child(3n+3) {
  margin-right: 0;
}
.series__products__item:nth-child(-n+3) {
  margin-top: 0;
}
.series__products__item__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.series__products__item__image {
  height: 280px;
  margin-bottom: 14px;
  overflow: hidden;
}
.series__products__item__image img {
  transition: all 0.25s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.series__products__item__name {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.series__products__item__price {
  font-size: 1.6rem;
}
.series__products__item__price ins {
  text-decoration: none;
}
.series__products__item__price ins .woocommerce-Price-amount {
  color: #EE3D48;
}
.series__products__item__content {
  padding-right: 10px;
}
.series__products__item__favorite {
  cursor: pointer;
  flex-shrink: 0;
  width: 18px;
  height: 17px;
  position: relative;
  margin-left: auto;
}
.series__products__item__favorite.active svg {
  fill: #EE3D48;
}
.series__products__item__favorite.active svg:nth-child(1) {
  opacity: 0;
}
.series__products__item__favorite.active svg:nth-child(2) {
  opacity: 1;
}
.series__products__item__favorite svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 17px;
  transition: all 0.25s ease;
  fill: #898F97;
}
.series__products__item__favorite svg:nth-child(2) {
  opacity: 0;
}
.series__products__item__favorite:hover svg {
  fill: #EE3D48;
}
.series__scheme {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}
.series__scheme__item {
  width: calc(33.3333333333% - 13.3333333333px);
  margin-right: 20px;
  max-height: 250px;
}
.series__scheme__item:last-child {
  margin-right: 0;
}
.series__modules {
  margin-bottom: 60px;
}
.series__modules:last-child {
  margin-bottom: 0;
}
.series__modules__title {
  font-size: 4rem;
  margin-bottom: 40px;
  text-align: center;
}
.series__modules__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.series__modules__item {
  width: calc(20% - 16px);
  position: relative;
  margin-right: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
}
.series__modules__item:nth-child(-n+5) {
  margin-top: 0;
}
.series__modules__item:nth-child(5n+5) {
  margin-right: 0;
}
.series__modules__item__image {
  margin-bottom: 20px;
  position: relative;
}
.series__modules__item__image:hover img:nth-child(1) {
  z-index: 1;
}
.series__modules__item__image:hover img:nth-child(2) {
  opacity: 1;
  z-index: 6;
}
.series__modules__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.series__modules__item__image img:nth-child(1) {
  position: relative;
  z-index: 5;
}
.series__modules__item__image img:not(:nth-child(1)) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.25s ease;
}
.series__modules__item__title {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 4px;
}
.series__modules__item__size {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 12px;
}
.series__modules__item__variations {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.series__modules__item__price {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.series__modules__item__price ins {
  text-decoration: none;
}
.series__modules__item__price ins .woocommerce-Price-amount {
  color: #EE3D48;
}
.series__modules__item__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #001111;
  width: 100%;
  height: 60px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.series__modules__item__button .icon {
  width: 16px;
  height: 13px;
  margin-right: 13px;
  position: relative;
}
.series__modules__item__button .icon svg {
  position: absolute;
  top: 0;
  fill: #fff;
}
.series__modules__item__button .text {
  font-size: 1.4rem;
  color: #fff;
}
.series__modules__item__button:hover {
  background: #EE3D48;
}
.series__modules__item__button:disabled {
  background: gray;
  filter: grayscale(1);
  cursor: not-allowed;
}
.series__modules__item__color {
  width: 100%;
  height: 45px;
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
}
.series__modules__item__color__single {
  font-size: 1.4rem;
  padding-left: 13px;
  padding-right: 20px;
  height: 100%;
  display: flex;
  align-items: center;
}
.series__modules__item__qty {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #E5E5E5;
  width: 100%;
  height: 45px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.series__modules__item__qty__input {
  width: calc(100% - 23px);
}
.series__modules__item__qty__input input {
  height: 100%;
  width: 100%;
  font-size: 1.4rem;
  text-indent: 13px;
}
.series__modules__item__qty__buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}
.series__modules__item__qty__buttons button {
  height: 50%;
  width: 23px;
  background: #E5E5E5;
  transition: all 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.series__modules__item__qty__buttons button svg {
  width: 6px;
  height: 4px;
  fill: #111111;
  stroke: #111111;
}
.series__modules__item__qty__buttons button:hover {
  background: #C7C7C7;
}
.series__modules__item__favorite {
  cursor: pointer;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
}
.series__modules__item__favorite.active svg {
  fill: #EE3D48;
}
.series__modules__item__favorite.active svg:nth-child(1) {
  opacity: 0;
}
.series__modules__item__favorite.active svg:nth-child(2) {
  opacity: 1;
}
.series__modules__item__favorite span {
  width: 18px;
  height: 17px;
  position: relative;
}
.series__modules__item__favorite svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 17px;
  transition: all 0.25s ease;
  fill: #898F97;
}
.series__modules__item__favorite svg:nth-child(2) {
  opacity: 0;
}
.series__modules__item__favorite:hover svg {
  fill: #EE3D48;
}
@media (max-width: 1280px) {
  .series__slider {
    width: 500px;
  }
  .series__content {
    width: calc(100% - 520px);
  }
}
@media (max-width: 970px) {
  .series__modules__item {
    width: calc(25% - 15px);
  }
  .series__modules__item:nth-child(5n+5) {
    margin-right: 20px;
    margin-top: 20px;
  }
  .series__modules__item:nth-child(4n+4) {
    margin-right: 0;
  }
  .series__wrap {
    flex-direction: column;
  }
  .series__slider {
    width: 100%;
    margin-bottom: 30px;
  }
  .series__content {
    width: 100%;
  }
  .series__products__item {
    width: calc(33.3333333333% - 13.3333333333px);
    margin-right: 20px;
    margin-top: 20px;
  }
  .series__products__item__image {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .series__modules__title {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 20px;
  }
  .series__modules__item {
    width: calc(33.3333333333% - 13.3333333333px);
  }
  .series__modules__item__title {
    font-size: 1.6rem;
  }
  .series__modules__item__size {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .series__modules__item__variations {
    margin-bottom: 10px;
  }
  .series__modules__item__price {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .series__modules__item__button {
    height: 40px;
  }
  .series__modules__item:nth-child(4n+4) {
    margin-right: 20px;
  }
  .series__modules__item:nth-child(3n+3) {
    margin-right: 0;
  }
  .series__modules__item:nth-child(4) {
    margin-top: 20px;
    margin-right: 20px;
  }
  .series__products__item {
    width: calc(50% - 10px);
  }
  .series__products__item__name {
    font-size: 1.6rem;
  }
  .series__products__item:nth-child(3n+3) {
    margin-top: 20px;
    margin-right: 20px;
  }
  .series__products__item:nth-child(2n+2) {
    margin-right: 0;
  }
  .series__title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .series__content__tab__title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .series__content__tab__description {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .series__content__tab__description p {
    margin-bottom: 24px;
  }
}
@media (max-width: 500px) {
  .series__modules__item {
    width: calc(50% - 10px);
  }
  .series__modules__item:nth-child(3n+3) {
    margin-right: 20px;
    margin-top: 20px;
  }
  .series__modules__item:nth-child(2n+2) {
    margin-right: 0;
  }
  .series__products__item {
    width: 100%;
    margin-right: 0 !important;
  }
  .series__products__item:nth-child(2) {
    margin-top: 20px;
  }
}

.select2-search--hide {
  display: none;
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
}
.select2-container--open b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-selection {
  height: 43px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  box-sizing: border-box;
  background: #fff;
  display: block;
  position: relative;
}
.select2-selection__rendered {
  height: 100%;
  font-size: 1.4rem;
  padding-left: 13px;
  padding-right: 20px;
  display: flex;
  align-items: center;
}
.select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
}
.select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-results {
  display: block;
}
.select2-results__option {
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
  transition: all 0.25s ease;
}
.select2-results__option--selected {
  background: #ddd;
}
.select2-results__option:hover {
  background: #EE3D48;
  color: #fff;
}
.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-dropdown {
  position: absolute;
  left: 0;
  z-index: 1051;
  background: #fff;
  display: block;
  border: 1px solid #aaa;
  box-sizing: border-box;
}

.cart {
  margin-bottom: 90px;
}
.cart__title {
  font-size: 3.5rem;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cart__title {
    font-size: 2.5rem;
  }
}
.cart__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.cart__products {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  border: 1px solid #E2E2E2;
  padding: 50px 50px 20px 50px;
  box-sizing: border-box;
  max-width: 820px;
  width: 100%;
}
.cart__product {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-bottom: 52px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E2E2E2;
}
.cart__product:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.cart__product__image {
  width: 80px;
  height: 100px;
  margin-right: 20px;
  flex-shrink: 0;
}
.cart__product__content {
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cart__product__info {
  display: flex;
  flex-direction: column;
}
.cart__product__info__desc {
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: 14px;
}
.cart__product__info__params {
  font-size: 1.5rem;
  line-height: 1.9rem;
  color: #898F97;
}
.cart__product__remove {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 20px;
  right: 0;
  cursor: pointer;
}
.cart__product__remove:hover svg {
  fill: #EE3D48;
}
.cart__product__remove svg {
  fill: #898F97;
  transition: all 0.25s ease;
}
.cart__product__favorite {
  width: 18px;
  height: 17px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 20px;
}
.cart__product__favorite:hover svg {
  fill: #EE3D48;
}
.cart__product__favorite svg {
  transition: all 0.25s ease;
  fill: #898F97;
}
.cart__product__price {
  width: 130px;
  flex-shrink: 0;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cart__product__price i {
  margin-left: 5px;
}
.cart__product__price .current {
  font-size: 2.4rem;
  line-height: 3.1rem;
  font-weight: 500;
}
.cart__product__price .old {
  font-size: 1.2rem;
  position: relative;
}
.cart__product__price .old:before {
  content: "";
  width: 100%;
  height: 2px;
  background: red;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
}
.cart__product__qty {
  width: 124px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #E2E2E2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  box-sizing: border-box;
  margin-left: 50px;
}
.cart__product__qty__input {
  width: 50px;
  height: 20px;
}
.cart__product__qty__input input {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
.cart__product__qty__control {
  flex-shrink: 0;
  font-size: 2.4rem;
  font-weight: 500;
  cursor: pointer;
  color: #000;
  transition: all 0.25s ease;
}
.cart__product__qty__control:hover {
  color: #EE3D48;
}
.cart__sidebar {
  margin-left: 50px;
  border: 1px solid #E2E2E2;
  padding: 30px;
  box-sizing: border-box;
  width: 400px;
  flex-shrink: 0;
}
.cart__sidebar__list, .checkout__sidebar__order__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.cart__sidebar__list__item, .checkout__sidebar__order__list__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 9px;
  font-weight: 400;
}
.cart__sidebar__list__item:last-child, .checkout__sidebar__order__list__item:last-child {
  margin-bottom: 0;
}
.cart__sidebar__list__label, .checkout__sidebar__order__list__label {
  width: 200px;
  font-size: 1.6rem;
  line-height: 2rem;
}
.cart__sidebar__list__value, .checkout__sidebar__order__list__value {
  font-size: 1.6rem;
  line-height: 2rem;
}
.cart__sidebar__total, .checkout__sidebar__order__total {
  display: flex;
  margin-bottom: 24px;
}
.cart__sidebar__total__label, .checkout__sidebar__order__total__label {
  width: 200px;
  font-size: 1.6rem;
  font-weight: 500;
}
.cart__sidebar__total__value, .checkout__sidebar__order__total__value {
  font-size: 2.4rem;
  font-weight: 500;
}
.cart__sidebar__button, .cart__empty__button {
  width: 100%;
  height: 60px;
  background: #EE3D48;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 4px;
}
.cart__sidebar__button:hover, .cart__empty__button:hover {
  background: #000;
}
.cart__sidebar__promo, .checkout__sidebar__promo {
  margin-top: 30px;
  border-top: 1px solid #E2E2E2;
  padding-top: 30px;
  display: flex;
}
.cart__sidebar__promo__input, .checkout__sidebar__promo__input {
  width: 100%;
  font-size: 1.5rem;
  text-indent: 15px;
  border: 1px solid #E2E2E2;
  border-right: 0;
  border-radius: 4px 0 0 4px;
}
.cart__sidebar__promo__button, .checkout__sidebar__promo__button {
  font-size: 1.5rem;
  font-weight: 500;
  height: 43px;
  width: 133px;
  flex-shrink: 0;
  border-radius: 0 4px 4px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EAEAEA;
  cursor: pointer;
  transition: all 0.25s ease;
}
.cart__sidebar__promo__button:hover, .checkout__sidebar__promo__button:hover {
  background: #EE3D48;
  color: #fff;
}
.cart__empty {
  padding-top: 50px;
  padding-bottom: 50px;
}
.cart__empty__button {
  max-width: 340px;
}
@media (max-width: 1280px) {
  .cart__products {
    padding: 20px;
  }
  .cart__product {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 25px;
    padding-top: 20px;
  }
  .cart__product__price {
    margin-left: 0;
  }
  .cart__product__qty {
    margin-left: unset;
  }
  .cart__product__favorite {
    margin-left: 0;
    position: absolute;
    right: 0;
    top: 10px;
  }
  .cart__product__content {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 970px) {
  .cart__sidebar {
    margin-left: 20px;
    padding: 20px;
    width: 360px;
  }
}
@media (max-width: 767px) {
  .cart__wrap {
    flex-direction: column;
  }
  .cart__sidebar {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
  .cart__sidebar__list__item, .checkout__sidebar__order__list__item {
    justify-content: space-between;
  }
  .cart__sidebar__list__label, .checkout__sidebar__order__list__label {
    width: auto;
    padding-right: 10px;
  }
  .cart__sidebar__total, .checkout__sidebar__order__total {
    justify-content: space-between;
  }
  .cart__sidebar__total__label, .checkout__sidebar__order__total__label {
    width: auto;
    padding-right: 10px;
  }
  .cart__sidebar__total__value, .checkout__sidebar__order__total__value {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
}
@media (max-width: 500px) {
  .cart__product__price .current {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .cart__product__image {
    width: 60px;
    height: 80px;
    margin-right: 10px;
  }
  .cart__product__info__desc {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 5px;
  }
  .cart__product__info__params {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }
  .cart__product__qty {
    width: 92px;
    height: 33px;
    padding: 7px 10px;
  }
}

.checkout {
  padding-bottom: 140px;
}
.checkout .suggestions-suggestions {
  border: 1px solid #E0E0E0;
  border-top: none;
  max-height: 160px;
  height: 100vh;
  overflow-y: scroll;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 4px;
  background: #fff;
  z-index: 5;
  display: none;
}
.checkout .suggestions-suggestions .suggestions-promo {
  display: none !important;
}
.checkout .suggestions-suggestion, .checkout .suggestions-hint {
  height: 40px;
  box-sizing: border-box;
  transition: all 0.25s linear;
  width: 100%;
  font-size: 1.4rem;
  padding: 10px 0 10px 15px;
  cursor: pointer;
  color: #000;
}
.checkout .suggestions-suggestion span, .checkout .suggestions-hint span {
  font-size: 1.4rem;
}
.checkout .suggestions-suggestion strong, .checkout .suggestions-hint strong {
  font-weight: 500;
}
.checkout .suggestions-suggestion:hover, .checkout .suggestions-hint:hover {
  background: rgba(255, 0, 0, 0.3);
}
.checkout .woocommerce-NoticeGroup {
  margin-bottom: 20px;
}
.checkout .woocommerce-NoticeGroup li {
  margin-bottom: 7px;
  font-size: 1.4rem;
  color: #EE3D48;
}
.checkout .woocommerce-NoticeGroup li:last-child {
  margin-bottom: 0;
}
.checkout__title {
  font-size: 3.5rem;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .checkout__title {
    font-size: 2.5rem;
  }
}
.checkout__content {
  width: 100%;
}
.checkout__customer {
  max-width: 780px;
  margin-bottom: 20px;
}
.checkout__customer__title, .checkout__payment__title, .checkout__delivery__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.checkout__customer__address, .checkout__customer__name, .checkout__customer__field, .modal__form__field {
  height: 45px;
  border: 1px solid #E5E5E5;
  position: relative;
}
.checkout__customer__address.hovered > span, .checkout__customer__name.hovered > span, .checkout__customer__field.hovered > span, .hovered.modal__form__field > span {
  font-size: 1rem;
  top: 0px;
  left: 18px;
}
.checkout__customer__address input, .checkout__customer__name input, .checkout__customer__field input, .modal__form__field input {
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  text-indent: 18px;
  position: relative;
  z-index: 1;
}
.checkout__customer__address > span, .checkout__customer__name > span, .checkout__customer__field > span, .modal__form__field > span {
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #898F97;
  position: absolute;
  top: calc(50% - 7px);
  left: 18px;
  transition: all 0.25s ease;
}
.checkout__customer__address, .checkout__customer__name, .checkout__customer__info {
  margin-bottom: 16px;
}
.checkout__customer__info {
  display: flex;
  justify-content: space-between;
}
.checkout__customer__field, .modal__form__field {
  width: calc(50% - 8px);
}
.checkout__customer__comment, .modal__form__textarea {
  height: 120px;
  border: 1px solid #E5E5E5;
  position: relative;
}
.checkout__customer__comment.hovered > span, .hovered.modal__form__textarea > span {
  font-size: 1rem;
  top: 8px;
  left: 18px;
}
.checkout__customer__comment textarea, .modal__form__textarea textarea {
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  text-indent: 18px;
  padding-top: 27px;
  box-sizing: border-box;
  resize: none;
  position: relative;
  z-index: 1;
}
.checkout__customer__comment span, .modal__form__textarea span {
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #898F97;
  position: absolute;
  top: 27px;
  left: 18px;
  transition: all 0.25s ease;
}
.checkout__affiliates {
  max-width: 780px;
}
.checkout__affiliates__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.checkout__affiliates__select {
  width: 100%;
  height: 45px;
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
}
.checkout__delivery {
  margin-top: 64px;
}
.checkout__delivery__methods {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.checkout__delivery__method {
  width: 254px;
  height: 131px;
  border: 2px solid #E2E2E2;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 18px;
  display: flex;
  flex-direction: column;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.checkout__delivery__method.active {
  border-color: #EE3D48;
}
.checkout__delivery__method__name {
  font-size: 1.6rem;
}
.checkout__delivery__method__comment {
  font-size: 1.3rem;
  color: #898F97;
  margin-bottom: auto;
}
.checkout__delivery__method__bottom {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}
.checkout__delivery__method__date {
  font-size: 1.3rem;
  color: #898F97;
}
.checkout__delivery__method__price {
  font-size: 1.3rem;
}
.checkout__delivery__method__price i {
  margin-left: 5px;
}
.checkout__payment {
  margin-top: 62px;
}
.checkout__payment__list {
  display: flex;
  flex-direction: column;
}
.checkout__payment__method {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 14px;
  font-weight: 400;
}
.checkout__payment__method:last-child {
  margin-bottom: 0;
}
.checkout__payment__method input:checked ~ span:before {
  opacity: 1;
}
.checkout__payment__method span {
  width: 26px;
  height: 26px;
  border: 1px solid #E2E2E2;
  box-sizing: border-box;
  margin-right: 10px;
  position: relative;
  border-radius: 50%;
}
.checkout__payment__method span:before {
  opacity: 0;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition: all 0.25s ease;
  position: absolute;
  background: #EE3D48;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.checkout__bottom {
  margin-top: 100px;
}
.checkout__subscribe {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.5rem;
}
.checkout__subscribe input:checked ~ span:before {
  opacity: 1;
}
.checkout__subscribe span {
  width: 16px;
  height: 16px;
  border: 1px solid #E2E2E2;
  box-sizing: border-box;
  margin-right: 10px;
  position: relative;
  border-radius: 4px;
  flex-shrink: 0;
}
.checkout__subscribe span:before {
  opacity: 0;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transition: all 0.25s ease;
  position: absolute;
  background: #EE3D48;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.checkout__button, .thanks__button {
  margin-top: 31px;
  font-size: 1.6rem;
  font-weight: 500;
  background: #EE3D48;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  max-width: 340px;
  width: 100%;
  height: 60px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.checkout__button:hover, .thanks__button:hover {
  background: #000;
}
.checkout__confirm {
  margin-top: 31px;
  font-size: 1.3rem;
  color: #898F97;
}
.checkout__confirm a {
  color: #000;
}
.checkout__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.checkout__sidebar {
  margin-left: 50px;
  border: 1px solid #E2E2E2;
  padding: 30px;
  box-sizing: border-box;
  width: 400px;
  flex-shrink: 0;
}
.checkout__sidebar__order__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 47px;
}
.checkout__sidebar__order__title {
  width: 200px;
  font-size: 2.4rem;
  font-weight: 500;
}
.checkout__sidebar__order__change {
  color: #EE3D48;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 970px) {
  .checkout__sidebar {
    margin-left: 20px;
    padding: 20px;
    width: 360px;
  }
}
@media (max-width: 767px) {
  .checkout {
    padding-bottom: 60px;
  }
  .checkout__bottom {
    margin-top: 40px;
  }
  .checkout__wrap {
    flex-direction: column;
  }
  .checkout__sidebar {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
  .checkout__sidebar__list__item {
    justify-content: space-between;
  }
  .checkout__sidebar__list__label {
    width: auto;
    padding-right: 10px;
  }
  .checkout__sidebar__total {
    justify-content: space-between;
  }
  .checkout__sidebar__total__label {
    width: auto;
    padding-right: 10px;
  }
  .checkout__sidebar__total__value {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
}

.thanks {
  padding-top: 70px;
  padding-bottom: 80px;
}
.thanks__title {
  font-size: 3.5rem;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .thanks__title {
    font-size: 2.5rem;
  }
}
.thanks__sub {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 30px;
}
.thanks__sub span {
  font-weight: 500;
  z-index: 1;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
  display: none;
}
.modal__wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
  padding: 20px 0;
  box-sizing: border-box;
}
.modal__form {
  position: relative;
  width: 95%;
  max-width: 630px;
  padding: 50px 50px 45px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  display: none;
  margin-top: auto;
  margin-bottom: auto;
}
.modal__form__close {
  width: 31px;
  height: 31px;
  border: 1px solid #DEDEDE;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 13px;
  right: 13px;
  cursor: pointer;
}
.modal__form__close svg {
  width: 9px;
  height: 9px;
}
.modal__form__title {
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin-bottom: 30px;
}
.modal__form__field {
  box-sizing: border-box;
}
.modal__form__field-long {
  width: 100%;
  margin-bottom: 16px;
}
.modal__form__textarea {
  max-width: unset;
}
.modal__form__line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.modal__form__button {
  font-size: 1.6rem;
  line-height: 1.8rem;
  background: #EE3D48;
  border-radius: 4px;
  padding: 15px 23px;
  color: #fff;
  border: 1px solid #EE3D48;
  box-sizing: border-box;
  transition: all 0.25s ease;
  cursor: pointer;
  margin-top: 30px;
}
.modal__form__button:hover {
  border-color: #EE3D48;
  background: #EE3D48;
}
.modal__form__confirm {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2rem;
  margin-top: 30px;
  color: #898F97;
}
.modal__form__text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4rem;
}
@media (max-width: 500px) {
  .modal__form {
    padding: 40px 20px 20px;
  }
  .modal__form__line {
    flex-direction: column;
  }
  .modal__form__field {
    margin-bottom: 12px;
    width: 100%;
  }
  .modal__form__field:last-child {
    margin-bottom: 0;
  }
}

.novelty__title {
  display: flex;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 40px;
}
.novelty__title img {
  height: 45px;
  padding-top: 4px;
  width: 85px;
}
.novelty__list {
  margin-bottom: 120px;
}
.novelty__list__item {
  margin-bottom: 40px;
  display: block;
}
.novelty__list__item:last-child {
  margin-bottom: 0;
}
.novelty__list__title {
  font-size: 3.4rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.novelty__list__text {
  font-size: 1.8rem;
  line-height: 2.8rem;
  max-width: 840px;
  margin-bottom: 50px;
}

.composition__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 80px;
}
.composition__slider {
  position: relative;
  overflow: hidden;
  width: 700px;
}
.composition__slider__item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.composition__slider__item a {
  display: inline-block;
  cursor: zoom-in;
  position: relative;
  height: 100%;
  width: 100%;
}
.composition__slider__item__zoom {
  opacity: 0;
  transition: all 0.25s ease;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 0px 14px 0px rgba(0, 0, 0, 0.2);
}
.composition__slider__item__zoom svg {
  width: 25%;
  height: 25%;
}
:hover > .composition__slider__item__zoom {
  opacity: 1;
}
.composition__slider__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.composition__slider__controls__item {
  position: relative;
  z-index: 5;
  background: rgba(30, 30, 30, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.composition__slider__controls__item img {
  height: 70%;
}
.composition__slider__controls__item:hover {
  background: rgba(0, 0, 0, 0.5);
}
.composition__slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 25px;
  width: 100%;
}
.composition__slider__dots__item {
  position: relative;
  z-index: 5;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  margin-right: 9px;
}
.composition__slider__dots__item:last-child {
  margin-right: 0;
}
.composition__slider__dots__item.active {
  background: transparent;
}
.composition__slider__thumbnails {
  position: absolute;
  bottom: 20px;
  padding-right: 40px;
  padding-left: 40px;
  width: 100%;
  box-sizing: border-box;
}
.composition__slider__thumbnails__inner {
  overflow: hidden;
}
.composition__slider__thumbnails__item {
  background: rgba(0, 0, 0, 0.7);
  height: 50px;
  box-sizing: border-box;
  padding: 0 15px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.7rem;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 193px;
}
.composition__slider__thumbnails__item.swiper-slide-thumb-active {
  background: #fff;
  color: #000;
}
.composition__wrap {
  display: flex;
  justify-content: space-between;
}
.composition__body {
  width: calc(60% - 10px);
}
.composition__sidebar {
  width: calc(40% - 10px);
  position: relative;
}
.composition__cart {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 145px;
  padding: 40px;
  box-sizing: border-box;
  border: 1px solid rgba(17, 17, 17, 0.1);
  margin-left: auto;
}
.composition__cart__title {
  font-size: 2.5rem;
  line-height: 3.2rem;
  margin-bottom: 25px;
}
.composition__cart__price {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.composition__cart__price ins {
  text-decoration: unset;
  color: red;
}
.composition__cart__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #001111;
  width: 100%;
  height: 60px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.composition__cart__button .icon {
  width: 16px;
  height: 13px;
  margin-right: 13px;
  position: relative;
}
.composition__cart__button .icon svg {
  fill: #fff;
  position: absolute;
  top: 0;
}
.composition__cart__button .text {
  font-size: 1.4rem;
  color: #fff;
}
.composition__cart__button:hover {
  background: #EE3D48;
}
.composition__cart__button:disabled {
  background: gray;
  filter: grayscale(1);
  cursor: not-allowed;
}
.composition__content {
  width: calc(100% - 720px);
  margin-left: auto;
}
.composition__content__menu {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  margin-bottom: 20px;
}
.composition__content__menu__item {
  margin-right: 60px;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}
.composition__content__menu__item:hover {
  color: #EE3D48;
}
.composition__content__menu__item.active:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #111;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.composition__content__menu__item:last-child {
  margin-right: 0;
}
.composition__content__tab {
  display: none;
}
.composition__content__tab.active {
  display: block;
}
.composition__description__title, .composition__colors__title, .composition__materials__title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.composition__description__text, .composition__colors__text, .composition__materials__text {
  font-size: 1.8rem;
  line-height: 2.8rem;
  max-width: 620px;
}
.composition__modules {
  margin-bottom: 120px;
}
.composition__modules__title {
  font-size: 4rem;
  margin-bottom: 40px;
}
.composition__modules__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.composition__modules__item {
  width: calc(33.3333333333% - 13.3333333333px);
  margin-right: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
}
.composition__modules__item:nth-child(-n+3) {
  margin-top: 0;
}
.composition__modules__item:nth-child(3n+3) {
  margin-right: 0;
}
.composition__modules__item__image {
  margin-bottom: 20px;
  position: relative;
}
.composition__modules__item__image:hover img:nth-child(2) {
  opacity: 1;
}
.composition__modules__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: none;
}
.composition__modules__item__image img:nth-child(1) {
  display: block;
}
.composition__modules__item__image img:nth-child(2) {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.25s ease;
  opacity: 0;
}
.composition__modules__item__title {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 4px;
}
.composition__modules__item__size {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 12px;
}
.composition__modules__item__variations {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.composition__modules__item__price {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.composition__modules__item__price ins {
  color: red;
  text-decoration: unset;
}
.composition__modules__item__color {
  width: 100%;
  height: 45px;
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
}
.composition__modules__item__color .single {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.4rem;
  padding-left: 13px;
  padding-right: 20px;
  display: flex;
  align-items: center;
}
.composition__modules__item__qty {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #E5E5E5;
  width: 100%;
  height: 45px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.composition__modules__item__qty__input {
  width: calc(100% - 23px);
}
.composition__modules__item__qty__input input {
  height: 100%;
  width: 100%;
  font-size: 1.4rem;
  text-indent: 13px;
}
.composition__modules__item__qty__buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}
.composition__modules__item__qty__buttons button {
  height: 50%;
  width: 23px;
  background: #E5E5E5;
  transition: all 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.composition__modules__item__qty__buttons button svg {
  width: 6px;
  height: 4px;
  fill: #111111;
  stroke: #111111;
}
.composition__modules__item__qty__buttons button:hover {
  background: #C7C7C7;
}
@media (max-width: 1280px) {
  .composition__slider {
    width: 500px;
  }
  .composition__content {
    width: calc(100% - 520px);
  }
}
@media (max-width: 970px) {
  .composition__wrapper {
    flex-direction: column;
  }
  .composition__slider {
    width: 100%;
    margin-bottom: 30px;
  }
  .composition__content {
    width: 100%;
  }
  .composition__wrap {
    flex-direction: column;
    padding-bottom: 40px;
  }
  .composition__modules {
    margin-bottom: 0;
  }
  .composition__body {
    margin-bottom: 30px;
    width: 100%;
  }
  .composition__sidebar {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .composition__modules__title {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 20px;
  }
  .composition__modules__item__title {
    font-size: 1.6rem;
  }
  .composition__modules__item__size {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .composition__modules__item__variations {
    margin-bottom: 10px;
  }
  .composition__modules__item__price {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .composition__slider__thumbnails {
    padding-left: 20px;
    padding-right: 20px;
  }
  .composition__slider__controls {
    padding: 0 5px;
  }
  .composition__description__title {
    font-size: 2.5rem;
  }
  .composition__description__text {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
  .composition__modules__item {
    width: calc(50% - 10px);
  }
  .composition__modules__item:nth-child(3n+3) {
    margin-right: 20px;
    margin-top: 20px;
  }
  .composition__modules__item:nth-child(2n+2) {
    margin-right: 0;
  }
  .composition__cart {
    padding: 20px;
  }
}

.fancybox__caption {
  font-size: 1.6rem;
}

.shops {
  margin-bottom: 80px;
}
.shops__title {
  font-size: 3.5rem;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .shops__title {
    font-size: 2.5rem;
  }
}
.shops__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #E2E2E2;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.shops__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.shops__item__map {
  width: calc(50% - 20px);
  height: 323px;
}
.shops__item__content {
  width: calc(50% - 20px);
  border-radius: 4px;
  border: 1px solid #E2E2E2;
  padding: 33px 35px;
  box-sizing: border-box;
}
.shops__item__title {
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin-bottom: 30px;
}
.shops__item__list {
  margin-bottom: 40px;
}
.shops__item__list__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.shops__item__list__item:last-child {
  margin-bottom: 0;
}
.shops__item__list__label {
  color: #898f97;
  width: 120px;
  padding-right: 10px;
  flex-shrink: 0;
}
.shops__item__list__value {
  width: calc(100% - 130px);
}
.shops__item__list__label, .shops__item__list__value {
  font-size: 1.5rem;
  line-height: 2rem;
}
.shops__item__abuse {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #EE3D48;
}
.shops__country {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  overflow: auto;
}
.shops__country__item {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 24px;
  font-weight: 500;
  color: #111111;
  font-size: 1.8rem;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.shops__country__item:last-child {
  margin-right: 0;
}
.shops__country__item:hover, .shops__country__item.active {
  background: #EE3D48;
  border-color: #EE3D48;
  color: #fff;
}
.shops__cities {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.shops__cities__column {
  width: calc(33.3333333333% - 20px);
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}
.shops__cities__column:last-child {
  margin-right: 0;
}
.shops__cities__item {
  font-size: 1.8rem;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}
.shops__cities__item:hover {
  color: #EE3D48;
}
@media (max-width: 970px) {
  .shops__item {
    flex-direction: column;
  }
  .shops__item__map, .shops__item__content {
    width: 100%;
  }
  .shops__item__map {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .shops__cities {
    flex-direction: column;
  }
  .shops__cities__column {
    width: 100%;
    margin-right: 0;
  }
  .shops__item__map {
    height: 250px;
  }
  .shops__item__title {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media (max-width: 500px) {
  .shops__item__list__item {
    flex-direction: column;
  }
  .shops__item__list__label {
    width: 100%;
    margin-bottom: 12px;
    padding-right: 0;
  }
  .shops__item__list__value {
    width: 100%;
  }
}

.contacts {
  margin-bottom: 80px;
}
.contacts__title {
  font-size: 3.5rem;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contacts__title {
    font-size: 2.5rem;
  }
}
.contacts__content {
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin-bottom: 40px;
}
.contacts__content p {
  margin-bottom: 15px;
}
.contacts__content p:last-child {
  margin-bottom: 0;
}
.contacts__content p a {
  transition: all 0.25s ease;
}
.contacts__content p a:hover {
  color: #EE3D48;
}
.contacts__map {
  height: 450px;
  width: 100%;
}

.articles {
  margin-bottom: 80px;
}
.articles__title {
  font-size: 3.5rem;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .articles__title {
    font-size: 2.5rem;
  }
}
.articles__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.articles__item {
  width: calc(25% - 30px);
  margin-right: 40px;
  margin-top: 40px;
}
.articles__item:nth-child(-n+4) {
  margin-top: 0;
}
.articles__item:nth-child(4n+4) {
  margin-right: 0;
}
.articles__item__image {
  margin-bottom: 30px;
}
.articles__item__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.8rem;
  margin-bottom: 14px;
  transition: all 0.25s ease;
}
:hover > .articles__item__title {
  color: #EE3D48;
}
.articles__item__description {
  font-size: 1.5rem;
  line-height: 2.3rem;
  color: #666666;
}
@media (max-width: 970px) {
  .articles__item__title {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 5px;
  }
  .articles__item__description {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
}
@media (max-width: 767px) {
  .articles {
    margin-top: 40px;
  }
  .articles__title {
    margin-bottom: 25px;
  }
  .articles__item {
    width: calc(50% - 7.5px);
    margin-right: 15px;
    margin-top: 20px;
  }
  .articles__item__image {
    margin-bottom: 10px;
  }
  .articles__item:nth-child(-n+2) {
    margin-top: 0;
  }
  .articles__item:nth-child(2n+2) {
    margin-right: 0;
  }
  .articles__item:nth-child(3), .articles__item:nth-child(4) {
    margin-top: 15px;
  }
}

.article {
  margin-bottom: 80px;
}
.article__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.article__title {
  font-size: 3.5rem;
}
@media (max-width: 767px) {
  .article__title {
    font-size: 2.5rem;
  }
}
.article__image {
  border-radius: 4px;
  overflow: hidden;
  width: 489px;
  padding-left: 25px;
  flex-shrink: 0;
}
.article__text ol {
  counter-reset: item;
}
.article__text ol > li {
  display: block;
}
.article__text ol > li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
}
.article__text ul, .article__text ol, .article__text h1, .article__text h2, .article__text h3, .article__text h4, .article__text h5, .article__text h6, .article__text p {
  padding-bottom: 20px;
}
.article__text ul, .article__text ol {
  padding-left: 30px;
}
.article__text ul {
  list-style-type: disc;
}
.article__text ul li {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.article__text ol {
  list-style-type: decimal;
}
.article__text ol li {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.article__text h1 {
  font-size: 3rem;
}
.article__text h2 {
  font-size: 2.8rem;
}
.article__text h3 {
  font-size: 2.6rem;
}
.article__text h4 {
  font-size: 2.4rem;
}
.article__text h5 {
  font-size: 2.2rem;
}
.article__text h6 {
  font-size: 2rem;
}
.article__text strong {
  font-weight: 500;
}
.article__text em {
  font-style: italic;
}
.article__text p {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.article__text p:last-child {
  padding-bottom: 0;
}
.article__products {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.article__products__item {
  width: calc(33.3333333333% - 26.6666666667px);
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  margin-right: 40px;
}
.article__products__item:nth-child(3n+3) {
  margin-right: 0;
}
.article__products__item:nth-child(-n+3) {
  margin-top: 0;
}
.article__products__item__image {
  height: 280px;
  margin-bottom: 14px;
  overflow: hidden;
}
.article__products__item__image img {
  transition: all 0.25s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__products__item__name {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.article__products__item__price {
  font-size: 1.6rem;
}
.article__products__item__price ins {
  text-decoration: none;
}
.article__products__item__price ins .woocommerce-Price-amount {
  color: #EE3D48;
}
@media (max-width: 1280px) {
  .article__image {
    margin-left: 40px;
  }
}
@media (max-width: 970px) {
  .article__image {
    width: 293.4px;
    height: 209.4px;
  }
  .article__products__item {
    width: calc(33.3333333333% - 13.3333333333px);
    margin-right: 20px;
    margin-top: 20px;
  }
  .article__products__item__image {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .article__wrap {
    flex-direction: column-reverse;
  }
  .article__image {
    margin-left: 0;
    width: 100%;
    margin-bottom: 25px;
  }
  .article__image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .article__text ul li {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .article__text ol li {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .article__text ul, .article__text ol, .article__text h1, .article__text h2, .article__text h3, .article__text h4, .article__text h5, .article__text h6, .article__text p {
    padding-bottom: 15px;
  }
  .article__text h1 {
    font-size: 2.5rem;
  }
  .article__text h2 {
    font-size: 2.4rem;
  }
  .article__text h3 {
    font-size: 2.3rem;
  }
  .article__text h4 {
    font-size: 2.2rem;
  }
  .article__text h5 {
    font-size: 2.1rem;
  }
  .article__text h6 {
    font-size: 2rem;
  }
  .article__text p {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .article__products__item {
    width: calc(50% - 10px);
  }
  .article__products__item__name {
    font-size: 1.6rem;
  }
  .article__products__item:nth-child(3n+3) {
    margin-top: 20px;
    margin-right: 20px;
  }
  .article__products__item:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .article__products__item {
    width: 100%;
    margin-right: 0 !important;
  }
  .article__products__item:nth-child(2) {
    margin-top: 20px;
  }
}

.pages {
  padding-bottom: 80px;
}
.pages__sidebar {
  width: 285px;
  margin-right: 100px;
  flex-shrink: 0;
}
.pages__sidebar ul {
  display: flex;
  flex-direction: column;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
}
.pages__sidebar ul li {
  height: 50px;
  width: 100%;
  border-bottom: 1px solid #E2E2E2;
  padding-left: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.5rem;
  color: #898F97;
  box-sizing: border-box;
}
.pages__sidebar ul li a {
  transition: all 0.25s ease;
}
.pages__sidebar ul li a:hover {
  color: #EE3D48;
}
.pages__sidebar ul li.current_page_item {
  background: #EAEAEA;
  border-bottom: 0;
  color: #000;
}
.pages__sidebar ul li:last-child {
  border-bottom: 0;
}
.pages__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.pages__typical__title {
  font-size: 3.5rem;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .pages__typical__title {
    font-size: 2.5rem;
  }
}
.pages__typical__content a {
  text-decoration: underline;
  transition: all 0.25s ease;
}
.pages__typical__content a:hover {
  color: #EE3D48;
}
.pages__typical__content ol {
  counter-reset: item;
}
.pages__typical__content ol > li {
  display: block;
}
.pages__typical__content ol > li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
}
.pages__typical__content ul, .pages__typical__content ol, .pages__typical__content h1, .pages__typical__content h2, .pages__typical__content h3, .pages__typical__content h4, .pages__typical__content h5, .pages__typical__content h6, .pages__typical__content p {
  padding-bottom: 20px;
}
.pages__typical__content ul, .pages__typical__content ol {
  padding-left: 30px;
}
.pages__typical__content ul {
  list-style-type: disc;
}
.pages__typical__content ul li {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.pages__typical__content ol {
  list-style-type: decimal;
}
.pages__typical__content ol li {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.pages__typical__content h1 {
  font-size: 3rem;
}
.pages__typical__content h2 {
  font-size: 2.8rem;
}
.pages__typical__content h3 {
  font-size: 2.6rem;
}
.pages__typical__content h4 {
  font-size: 2.4rem;
}
.pages__typical__content h5 {
  font-size: 2.2rem;
}
.pages__typical__content h6 {
  font-size: 2rem;
}
.pages__typical__content strong {
  font-weight: 500;
}
.pages__typical__content em {
  font-style: italic;
}
.pages__typical__content p {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.pages__typical__content p:last-child {
  padding-bottom: 0;
}
.pages__bonus {
  margin-top: 70px;
}
.pages__bonus__title {
  font-size: 2.5rem;
  font-family: "SBSansDisplay";
  margin-bottom: 30px;
}
.pages__bonus__button {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  background: #EE3D48;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  max-width: 340px;
  width: 100%;
  height: 60px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pages__bonus__button:hover {
  background: #000;
}
.pages__bonus__confirm {
  margin-top: 31px;
  font-size: 1.3rem;
  color: #898F97;
}
.pages__bonus__confirm a {
  color: #000;
}
.pages__bonus__line {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  max-width: 493px;
}
.pages__bonus__field {
  height: 60px;
  max-width: 493px;
  border-radius: 4px;
  border: 1px solid #E2E2E2;
  position: relative;
}
.pages__bonus__field-short {
  width: calc(50% - 8px);
}
.pages__bonus__field input {
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  text-indent: 18px;
}
.pages__bonus__field > span {
  font-size: 1rem;
  color: #898F97;
  position: absolute;
  top: 12px;
  left: 18px;
}
.pages__vacancy__item {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.pages__vacancy__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.pages__vacancy__title {
  font-size: 2.5rem;
  font-family: "SBSansDisplay";
  margin-bottom: 20px;
}
.pages__vacancy__desc {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 30px;
}
.pages__vacancy__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.pages__vacancy__money, .pages__vacancy__time {
  font-size: 1.5rem;
  color: #898F97;
  margin-right: 40px;
}
.pages__vacancy__phone {
  font-size: 1.5rem;
}
.pages__vacancy__phone a {
  transition: all 0.25s ease;
}
.pages__vacancy__phone a:hover {
  color: #EE3D48;
}
@media (max-width: 970px) {
  .pages__sidebar {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .pages__wrap {
    flex-direction: column-reverse;
  }
  .pages__sidebar {
    margin-right: 0;
    margin-top: 30px;
  }
  .pages__typical__content ul li {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .pages__typical__content ol li {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .pages__typical__content ul, .pages__typical__content ol, .pages__typical__content h1, .pages__typical__content h2, .pages__typical__content h3, .pages__typical__content h4, .pages__typical__content h5, .pages__typical__content h6, .pages__typical__content p {
    padding-bottom: 15px;
  }
  .pages__typical__content h1 {
    font-size: 2.5rem;
  }
  .pages__typical__content h2 {
    font-size: 2.4rem;
  }
  .pages__typical__content h3 {
    font-size: 2.3rem;
  }
  .pages__typical__content h4 {
    font-size: 2.2rem;
  }
  .pages__typical__content h5 {
    font-size: 2.1rem;
  }
  .pages__typical__content h6 {
    font-size: 2rem;
  }
  .pages__typical__content p {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .pages__bonus__title, .pages__vacancy__title {
    font-size: 2rem;
  }
  .pages__vacancy__desc {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .pages__vacancy__bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .pages__vacancy__money, .pages__vacancy__time {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 500px) {
  .pages__bonus__field-short {
    width: 100%;
    margin-bottom: 16px;
  }
  .pages__bonus__field-short:last-child {
    margin-bottom: 0;
  }
  .pages__bonus__line {
    flex-direction: column;
  }
}







.bg-color {background:#F7F6F2;padding: 1px 0;margin-top: -103px;}

@media (max-width: 767px) {
  .bg-color {
    margin-top: -35px;
  }
}
@media (max-width: 400px) {
   .bg-color {
    margin-top: -51px;
  }
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
    }
}

@media (max-width: 1280px) {
    .container {
        padding: 0!important;
    }
}

#slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    #slider-wrapper {
        max-width: 100%;
        margin: 0;
    }
}

#slider {
    width: 100%;
    overflow: hidden;
}

.owl-carousel.s1 {
    width: 100%;
}

.owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f6f2;
}

.owl-carousel .item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}


.owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 10px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.owl-dot.active {
    background: white;
}


#slider .owl-nav .owl-prev,
#slider .owl-nav .owl-next {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
}

#slider .owl-nav .owl-prev {
    left: 10px;
}

#slider .owl-nav .owl-next {
    right: 10px;
}

.owl-controls{display: flex;margin-top: 30px;}
.owl-controls .owl-next, .owl-controls .owl-dots{margin-left: 30px;}
.owl-dot span {
    width: 7px;
    height: 7px;
    margin: 0px 5px;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
    border: 1px solid #fff;
}

.owl-dot.active span, .owl-dots .owl-dot:hover span {
    background: #fff;
    width: 9px;
    height: 10px;
}

.owl-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    z-index: 5;
    align-items: flex-end;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    transition: all 0.3s ease, transform 0.3s ease;
    transform: scale(1);
}

.owl-dot:hover {
    transform: scale(1.1); 
}

.owl-dot.active {
    width: 14px;
    height: 14px;
    background-color: white;
    border-color: white;
    transform: scale(1.2); 
}
#f-blocks {background: #fff; color: #333!important;margin: 35px auto 100px;}

@media (max-width: 921px) {
    #slider .owl-nav svg {
        overflow: hidden;
        vertical-align: middle;
        width: 11px;
    }
    .owl-dots {gap: 0; bottom: 7.2px;}
    .owl-dot span {
        width: 4px;
        height: 4px;
        border: 1px solid #fff;
    }
    .owl-dot.active span, .owl-dots .owl-dot:hover span {
        width: 5px;
        height: 5px;
    }	
	.owl-carousel .item img {
    	margin-top: 75px;
	}
	#f-blocks {margin: 25px auto 100px;}
	
	#slider .owl-nav .owl-prev,
	#slider .owl-nav .owl-next {
    top: 62%;
	}
}
@media (min-width: 991px) {
	.owl-carousel .item img {
    	margin-top: 80px;
	}
}

.contain {
    padding: 0 50px;
}

.feature-section {
    padding: 40px 5px;
}

.feature-inner {
    display: flex;
    gap: 50px;
    align-items: stretch; /* Это важно */
}

.feature-image {
    flex: 1 1 50%;
    padding-right: 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Чтобы не искажалось, а обрезалось */
    display: block;
}

.feature-content {
    flex: 1 1 80%;
    padding-left: 0;
	display: grid;
    align-content: space-between;
    justify-items: start;
}

.feature-title {
    font-size: 32px;
    padding: 0px !important;
}

.feature-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
	margin-bottom: 15px;
}

.feature-button {
    display: inline-block;
	font-size: 16px;
    background: #333;
    color: #fff;
    padding: 17px 27px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
    border: 1px solid;
}

.feature-button:hover {
    color: #333;
    background: #fff;
    text-decoration: none;
}

@media (max-width: 991px) {
    .feature-title {
        font-size: 24px;
    }

    .feature-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .feature-content {
        order: 2;
    }

    .feature-image {
        order: 1;
        padding: 0 15px;
    }

    .feature-text {
        font-size: 14px;
        max-height: 185px;
        overflow: hidden;
        text-overflow: ellipsis;
        position: relative;
		margin-bottom: 25px;
    }

    .feature-content.grid.col-lg-7 {
        text-align: center;
        padding: 0 15px;
		justify-items: center;
    }

    .feature-section {
        padding: 25px 0;
    }

    .feature-section:first-of-type {
        padding-top: 30px;
    }

    .feature-section:last-of-type {
        padding-bottom: 30px;
    }

    .feature-section .contain {
        padding: 0;
    }

     .feature-text {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}

/* по умолчанию десктопный заголовок видим, моб. — скрыт */
.feature-title.mobile-only {
    display: none;
}

.feature-title.desktop-only {
	font-weight:600;
	margin-bottom: 20px;
    display: block;
}

/* на мобилке меняем местами */
@media (max-width: 991px) {
    .feature-title.mobile-only {
        display: block;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .feature-title.desktop-only {
        display: none;
    }
	
	.feature-button {
		padding: 14px 27px;
	}
}
