@charset "UTF-8";
/* -------------------------------------
	Font face
	------------------------------------- */
@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Regular.woff2") format("woff2"), url("../fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Bold.woff2") format("woff2"), url("../fonts/ProximaNova-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Semibold.woff2") format("woff2"), url("../fonts/ProximaNova-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ProximaNova";
  src: url("../fonts/ProximaNova-Light.woff2") format("woff2"), url("../fonts/ProximaNova-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arvo";
  src: url("../fonts/Arvo.woff2") format("woff2"), url("../fonts/Arvo.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------
	Libs
	------------------------------------- */
/* ----- swiper slider ----- */
/**
 * Swiper 6.3.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 20, 2020
 */
:root {
  --swiper-theme-color:#007aff;
  --color-violet: #ad129c;
}

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

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

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

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

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

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

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

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

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

/* Auto Height */
.swiper-container-autoheight {
  height: auto;
}

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

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

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

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

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

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

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

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

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

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

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

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

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

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

:root {
  --swiper-navigation-size:44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

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

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

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

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

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

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

.swiper-button-prev.swiper-button-white, .swiper-button-next.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-prev.swiper-button-black, .swiper-button-next.swiper-button-black {
  --swiper-navigation-color:#000000;
}

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

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

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

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

/* Common Styles */
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

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

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
@media(max-width:768px){
	.swiper-pagination-bullet {
	  width: 5px;
	  height: 5px;
	}
}

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

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

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

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

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

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

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

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

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

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

.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

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

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

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

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

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

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

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

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

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

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

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

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

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

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

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

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

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

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

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

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

.swiper-container-cube {
  overflow: visible;
}

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

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

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

.swiper-container-cube .swiper-slide-active {
  pointer-events: auto;
  pointer-events: auto;
  visibility: visible;
}

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

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

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

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

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

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

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

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

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

/* ----- jquery modal ----- */
.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

/* -------------------------------------
	Reset
	------------------------------------- */
article, aside, dialog, figcaption, figure, footer, header, main, nav, section, details, menu {
  display: block;
}

@-ms-viewport {
  width: device-width;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  margin: 0;
  position: relative;
  font: 16px/1.3 "ProximaNova", sans-serif, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: left;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title-1, .title-2 {
  font-family: "Arvo", "ProximaNova", sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b, strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

a:hover {
  color: inherit;
}

a:focus {
  outline: none;
}

a:hover, a:focus {
  text-decoration: none;
}

a:active, a:hover {
  outline-width: 0;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

figure {
  margin: 0 0 1rem;
}

img {
  font-size: 10px;
  text-transform: uppercase;
  color: #f16522;
  vertical-align: middle;
  border-style: none;
}

img::-moz-selection {
  background: none;
}

img::selection {
  background: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #000;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

a, area, button, [role="button"], input, label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

button:focus {
  outline: none;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
}

input[type="radio"], input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="radio"]:disabled, input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  -webkit-appearance: listbox;
}

input[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type="checkbox"], [type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

[role="button"] {
  cursor: pointer;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

.blocker {
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  padding: 16px;
}

.ui-datepicker {
  z-index: 102 !important;
}

.ui-datepicker.ui-widget-content {
  width: 232px;
  border: none;
  padding: 17px 17px 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.17);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.17);
  color: #000;
}

.ui-datepicker.ui-widget-content table {
  margin: 0;
  font-size: 12px;
}

.ui-datepicker.ui-widget-content table th {
  font-weight: 400;
}

.ui-datepicker.ui-widget-content .ui-widget-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  position: static;
}

.ui-datepicker.ui-widget-content .ui-widget-header select {
  outline: none;
  border: none;
}

.ui-datepicker.ui-widget-content .ui-datepicker-title {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  padding-bottom: 3px;
  font-weight: bold;
  text-align: left;
}

.ui-datepicker.ui-widget-content .ui-state-default {
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  border: none;
  background: transparent;
  text-align: center;
  padding: 4px 0 3px;
  color: #000;
}

.ui-datepicker.ui-widget-content .ui-state-default.ui-state-active, .ui-datepicker.ui-widget-content .ui-state-default.ui-state-hover {
  background-color: #f16522;
  color: #fff;
}

.ui-datepicker.ui-widget-content .ui-datepicker-prev, .ui-datepicker.ui-widget-content .ui-datepicker-next {
  background: none !important;
  border: none !important;
  top: auto;
  left: auto;
  right: auto;
  position: relative;
  cursor: pointer;
}

.ui-datepicker.ui-widget-content .ui-datepicker-prev span, .ui-datepicker.ui-widget-content .ui-datepicker-next span {
  display: none;
}

.ui-datepicker.ui-widget-content .ui-datepicker-prev::before, .ui-datepicker.ui-widget-content .ui-datepicker-next::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border: none;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.ui-datepicker.ui-widget-content .ui-datepicker-prev::before {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.ui-datepicker.ui-widget-content .ui-datepicker-next {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-align: right;
}

.ui-datepicker.ui-widget-content .ui-datepicker-next::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* -------------------------------------
	Common styles
	------------------------------------- */
.main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .main-wrapper {
    display: block;
  }
}

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

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

@media (min-width: 1200px) {
  .container {
    max-width: 1316px;
  }
}

.flex, .flex-center, .f-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.f-row {
  margin: 0 -15px;
}

.f-col {
  width: 50%;
  margin-bottom: 30px;
  padding: 0 15px;
}

.img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 1199px) {
  .hide-xl {
    display: none !important;
  }
/*   .wholesale-builder .hide-xl {
        display: block!important;;
  } */
}

@media screen and (min-width: 1200px) {
  .show-xl {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-md {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .show-md {
    display: none !important;
  }
}

/* ---------- Titles & text ---------- */
h1, .title-1 {
  margin-top: .5em;
  margin-bottom: .8em;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.04em;
}

@media screen and (max-width: 1199px) {
  h1, .title-1 {
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  h1, .title-1 {
    font-size: 34px;
  }
}

h2, .title-2 {
  margin-bottom: 1.2em;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -.016em;
}

@media screen and (max-width: 767px) {
  h2, .title-2 {
    font-size: 30px;
  }
}

h3, .title-3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.016em;
}

@media screen and (max-width: 1199px) {
  h3, .title-3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  h3, .title-3 {
    font-size: 20px;
  }
}

.txt-1 {
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -.025em;
}

@media screen and (max-width: 1199px) {
  .txt-1 {
    font-size: 24px;
    line-height: 1.25;
  }
}

@media screen and (max-width: 767px) {
  .txt-1 {
    font-size: 20px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 575px) {
  .txt-1 {
    font-size: 18px;
    line-height: 1.35;
  }
}

.txt-2 {
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 1199px) {
  .txt-2 {
    font-size: 20px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  .txt-2 {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 575px) {
  .txt-2 {
    font-size: 14px;
    line-height: 1.6;
  }
}

.accent {
  display: inline-block;
  white-space: nowrap;
  font-size: 26px;
  font-family: "Arvo", "ProximaNova", sans-serif;
  padding: 6px 16px;
  background: #f16522;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .accent {
    font-size: 22px;
  }
}

.badge {
  display: inline-block;
  padding: 0 1em;
  color: #fff;
}

.badge-sub {
  display: inline;
  padding: .5em 0;
  line-height: 1.6;
  background-color: #f16522;
  -webkit-box-shadow: 0.8em 0 0 0 #f16522, -0.8em 0 0 0 #f16522;
          box-shadow: 0.8em 0 0 0 #f16522, -0.8em 0 0 0 #f16522;
}

.nowrap {
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.fw-bold {
  font-weight: 700;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.link {
  font-size: 15px;
  font-weight: 700;
  color: #f16522;
}

.link:hover {
  color: #f16522;
  text-decoration: underline;
}

@media screen and (max-width: 1199px) {
  .link {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .link {
    font-size: 15px;
  }
}

.subcolor {
  color: rgba(0, 0, 0, 0.7);
}

/* ----- Кнопки ----- */
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 2px solid #f16522;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.button--bg {
  background: #f16522;
  color: #fff;
}

.button--bg:hover {
  color: #fff;
  -webkit-box-shadow: 0 2px 9px rgba(241, 101, 34, 0.6);
          box-shadow: 0 2px 9px rgba(241, 101, 34, 0.6);
}

.button--bd {
  color: #f16522;
}

.button--bd:hover {
  background: #f16522;
  color: #fff;
}

.button--violet {
  color: var(--color-violet);
  border-color: var(--color-violet);
}

.button--violet:hover {
  background: var(--color-violet);
  color: #fff;
}

.button--white {
  color: #fff;
  border-color: #fff;
}

.button--white:hover {
  background: #fff;
  color: #000;
}

.button--sm {
  height: 2.2em;
  padding: .67em 1em;
}

.button--lg {
  height: 3.4em;
  padding: .67em 1.8em;
}

@media screen and (max-width: 1199px) {
  .button {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .button {
    font-size: 15px;
  }
}

.more-btn {
  margin-top: 35px;
  text-align: center;
}

.section {
  margin: 35px 0;
}

@media screen and (max-width: 767px) {
  .section {
    margin: 25px 0;
  }
}

@media screen and (max-width: 767px) {
  .page .section:first-child {
    margin-top: 30px;
  }
}

.section--nobg {
  background: none !important;
  padding: 0 !important;
}

.socials {
  font-size: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.socials li {
  margin-left: 1.6em;
}

.socials__link .img {
  max-height: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.socials__link:hover .img {
  -webkit-filter: brightness(1.5);
          filter: brightness(1.5);
}

.socials__vk {
  width: 2.4em;
  height: 1.5em;
}

.socials__insta {
  width: 1.7em;
  height: 1.7em;
}

.socials__fb {
  width: 1.1em;
  height: 1.8em;
}

.socials__youtube {
  width: 2.1em;
  height: 1.7em;
}

.socials__whatsapp {
  width: 2em;
  height: 2em;
}

.socials__telegram {
  width: 2.3em;
  height: 2em;
}

/* Элементы навигации слайдера */
.slider-arrow {
  font-size: 10px;
  width: 6em;
  height: 6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  margin-top: -3em;
  z-index: 1;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
          box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
  outline: none;
  -webkit-transition: background .15s linear;
  -o-transition: background .15s linear;
  transition: background .15s linear;
}

.slider-arrow::before {
  content: '';
  display: block;
  width: .9em;
  height: 1.6em;
  position: absolute;
  background: url("../img/ic-arrow.svg") no-repeat 50% 50%/100%;
}

.slider-arrow:hover {
  background: #f16522;
}

.slider-arrow:hover::before {
  background-image: url("../img/ic-arrow-white.svg");
}

.slider-arrow.swiper-button-disabled {
  opacity: 0.5;
  background: #fff;
  cursor: default;
}

.slider-arrow.swiper-button-disabled::before {
  background-image: url("../img/ic-arrow.svg");
}

.slider-prev {
  left: 0;
  margin-left: -9em;
}

.slider-prev::before {
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

@media screen and (max-width: 1500px) {
  .slider-prev {
    margin-left: -4vw;
  }
}

.slider-next {
  right: 0;
  margin-right: -9em;
}

@media screen and (max-width: 1500px) {
  .slider-next {
    margin-right: -4vw;
  }
}

.slider-dots {
  margin: 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider-dots .swiper-pagination-bullet {
  margin: 0 5px;
  -webkit-transition: all .15s linear;
  -o-transition: all .15s linear;
  transition: all .15s linear;
}

@media(max-width:768px){
	.slider-dots .swiper-pagination-bullet {
	  margin: 0 3px;
	}
}

.slider-dots .swiper-pagination-bullet-active {
  background: #f16522 !important;
}

.slider-dots--white .swiper-pagination-bullet {
  /*background: #fff;*/
}

.p-hero {
  padding: 50px 0 80px;
  background: #f7f7f7;
}

.p-hero__title {
  margin-bottom: 1.2em;
}

.p-hero__row {
  margin: 0 -25px;
}

.p-hero__col {
  width: 50%;
  padding: 0 25px;
}

@media screen and (max-width: 1199px) {
  .p-hero {
    padding: 50px 0 60px;
  }
  .p-hero__row {
    display: block;
    margin: 0;
  }
  .p-hero__col {
    width: 100%;
    padding: 0;
  }
}

.js-tab {
  cursor: pointer;
}

.js-tab-item:not(:first-child) {
  display: none;
}

.pagination {
  margin: 30px 0 0;
  font-size: 18px;
  padding-bottom: 20px;
}

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

.pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  width: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.pagination__item:hover {
  color: #f16522;
}

.pagination__item.current {
  color: #f16522;
}

.pagination__item.current:hover {
  color: #f16522;
}

.pagination__item.prev, .pagination__item.next {
  font-size: .55555em;
  width: 6em;
  height: 6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
          box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
  -webkit-transition: background .15s linear;
  -o-transition: background .15s linear;
  transition: background .15s linear;
}

.pagination__item.prev::before, .pagination__item.next::before {
  content: '';
  display: block;
  width: .9em;
  height: 1.6em;
  position: absolute;
  background: url("../img/ic-arrow.svg") no-repeat 50% 50%/100%;
}

.pagination__item.prev:hover, .pagination__item.next:hover {
  background: #f16522;
}

.pagination__item.prev:hover::before, .pagination__item.next:hover::before {
  background-image: url("../img/ic-arrow-white.svg");
}

.pagination__item.prev {
  margin-right: 1vw;
}

.pagination__item.prev::before {
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

.pagination__item.next {
  margin-left: 1vw;
}

@media screen and (max-width: 1199px) {
  .pagination .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 575px) {
  .pagination {
    font-size: 14px;
  }
}

.no-scroll {
  overflow: hidden;
}

/* ----- Forms ----- */
*::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
*::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
*:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
*::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
*::placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

body input:focus:required:invalid, body textarea:focus:required:invalid,
body input:required:valid, body textarea:required:valid {
  color: #000;
}

.input {
  display: block;
  width: 100%;
  min-width: 1px;
  height: 60px;
  padding: 15px;
  background-color: #f7f7f7;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.06);
          box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 3px;
  color: #000;
  font-size: 15px;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.input:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder {
  opacity: 0;
}

label {
  cursor: pointer;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -6px;
}

@media screen and (max-width: 575px) {
  .form-row {
    display: block;
    margin: 0;
  }
}

.form-col {
  width: 50%;
  padding: 0 6px;
}

@media screen and (max-width: 575px) {
  .form-col {
    width: 100%;
    padding: 0;
  }
}

.form-section {
  margin-bottom: 24px;
}

.form-item {
  margin-bottom: 12px;
}

.form-label {
  margin-bottom: 10px;
  font-size: 15px;
  color: #737373;
}

.checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
	font-size: 12px;
}
.checkbox a{
	color: var(--orange-color);
	text-decoration: underline;
}


.checkbox__wrap {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2em;
  width: 1em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1em;
          flex: 0 0 1em;
  height: 1em;
  margin-right: .9em;
  border-radius: 3px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.checkbox__wrap::before {
  content: '';
  display: block;
  width: .5em;
  height: .5em;
  background: #f16522;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  border-radius: 3px;
  -webkit-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  transition: .2s ease-out;
}

.checkbox__text {
  display: inline-block;
  font-size: 1.4em;
  color: #000;
}

.checkbox__text a {
  color: inherit;
  text-decoration: underline;
}

.checkbox__quantity {
  display: inline-block;
  margin-left: .25em;
  color: #737373;
}

.checkbox input {
  display: none;
}

.checkbox input:checked + .checkbox__wrap::before {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.deactivate {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: .5;
  cursor: default;
}

.deactivate::before {
  display: none;
}

.radiotabs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  text-align: center;
}

.radiotabs label {
  position: relative;
}

.radiotabs label::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 2px solid #f16522;
  opacity: 0;
  -webkit-transition: opacity .1s linear;
  -o-transition: opacity .1s linear;
  transition: opacity .1s linear;
}

.radiotabs input {
  display: none;
  position: absolute;
}

.radiotabs input:checked + label::before {
  opacity: 1;
}

.attach {
  font-size: 15px;
  color: #000;
}

.attach-msg {
  margin-top: 3px;
  padding-left: 30px;
}

.attachment {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

.attachment::after {
  content: ' ';
  display: table;
  clear: both;
}

.attachment::before {
  width: 19px;
  height: 20px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAUCAYAAABvVQZ0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg4MjQ4NkIzODlEMDExRTc4Njg5OTY1ODUyQTkzM0IwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjg4MjQ4NkI0ODlEMDExRTc4Njg5OTY1ODUyQTkzM0IwIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ODgyNDg2QjE4OUQwMTFFNzg2ODk5NjU4NTJBOTMzQjAiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODgyNDg2QjI4OUQwMTFFNzg2ODk5NjU4NTJBOTMzQjAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7haJkmAAABjElEQVR42qSUSyhEURzGr4wwBiVFSmmWJOyRRx5JUrNQ9vY2ioUspKQkJRtsNFlYWCGvjCGPpS2xQDaK5DkG8f3rO3W6nTud6Z761b2n+/3u/zwdJ702Bh5AkeOzjYM/cAiy/IgmKIqDPD+iSYpimqgYNIBqkGErmqJoHwRBLlgAP+wXLilO2ab58R4lQVYnfadgkFU/gw9Q6SWaYWiXIhneAfuiIFP7tgYkwYpJNMvQNsgBIa6gSaSa/PTW3TnH0JYmOnKJwmAJlGo5qfpOF80ztAmyQT44NohuuAB1zDWCX7CqRKMMbVBUAE5SiPqYqwcv4EvJyzmB5xQVgjMLkVT0ymxEVTXEYIQbMG4hagJvFPXqc7XMcBmo1ebNS9QK3jm0HvcKRimoAFV83gEtBlEbN6iIuk37aoSCAb6vaUflWxN1gE+QAF1euz3Mv99z7wRAPxjmQXYYTlDWaXugr1mBuglClCY5vHab20Eme1Eb3hO44tzI+yNoTvfukiGsMyzVXLDqEpvwvwADAGSwgOsB0dwvAAAAAElFTkSuQmCC);
  content: '';
  position: absolute;
  left: 0;
  display: inline-block;
}

.attachment input {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.attachment span {
  float: right;
  font-size: 14px;
  color: #a3a3a3;
  line-height: 22px;
}

.datepicker-icon {
  position: relative;
}

.datepicker-icon::after {
  content: '';
  display: block;
  width: 19px;
  height: 21px;
  position: absolute;
  z-index: 0;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  background: url("../img/date.svg") no-repeat 50% 50%/100%;
}

.datepicker-icon .input {
  cursor: pointer;
}

.form-wholesale {
  display: none;
}

.calc-form.modal {
  overflow: hidden;
  max-width: 780px;
}

.calc-form__row {
  margin: 0 -3px 25px;
  padding: 15px 0;
  position: relative;
}

.calc-form__row::after {
  content: '';
  display: block;
  width: 100vw;
  height: 1px;
  position: absolute;
  z-index: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: #000;
  opacity: 0.1;
}

@media screen and (max-width: 767px) {
  .calc-form__row {
    display: block;
    padding-top: 10px;
    margin-left: 0;
    margin-right: 0;
  }
}

.calc-form__col {
  margin-bottom: 22px;
  padding: 0 3px;
}

@media screen and (max-width: 767px) {
  .calc-form__col {
    margin-bottom: 15px;
    padding: 0;
  }
}

.calc-form .col-1-3 {
  width: 33.33333%;
}

@media screen and (max-width: 767px) {
  .calc-form .col-1-3 {
    width: 100%;
  }
}

.calc-form .col-1 {
  width: 100%;
}

.calc-form__item {
  height: 100%;
  padding: 15px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
}

@media screen and (max-width: 767px) {
  .calc-form__item {
    height: auto;
    text-align: center;
  }
}

.calc-form__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.calc-form__title span {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .calc-form__title {
    text-align: center;
  }
}

.calc-form__txt {
  margin-bottom: 1.4em;
  font-size: 15px;
  text-align: center;
  color: #737373;
}

@media screen and (max-width: 767px) {
  .calc-form__txt br {
    display: none;
  }
}

/* -------------------------------------
	Sections
	------------------------------------- */
/* ----- header ----- */
.main-wrapper {
	padding-top: 107px;
}
@media screen and (max-width: 1199px) {
	.main-wrapper {
		padding-top: 91px;
	}
}
@media screen and (max-width: 767px) {
	.main-wrapper {
		padding-top: 65px;
	}

	.page-template-constructor .main-wrapper{
		padding-top: 20px;
	}
}
.header {
	padding: 30px 0 10px 0;
	border-bottom: 1px solid #efeff0;
	background: #fff;
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	width: 100%;
	transition: all .15s linear;
}
.header.is-fixed {
	padding-top: 20px;
	padding-bottom: 10px;
	box-shadow: 0 2px 12px rgb(0, 0, 0, .14);
}
.is-fixed .f-menu__btn {
	top: -3px;
}
@media screen and (max-width: 1199px) {
	.is-fixed .f-menu__btn {
		top: -15px;
	}

	.header.is-fixed {
		padding-bottom: 8px;
	}
	.header.is-fixed .header__low {
	  padding-top: 8px;
	}


}


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

.header .logo {
  margin-right: 3.4%;
}

.header__block {
  margin-right: 3.8%;
  padding-top: 6px;
  margin-left: auto;
}

.header__block .location {
  margin-bottom: 3px;
}

.header .socials {
  margin-left: 0;
}

@media screen and (max-width: 1300px) {
  .header .logo {
    margin-right: 2%;
  }
  .header__block {
    margin-right: 2%;
  }
  .header .socials {
    margin-left: 0;
  }
}

@media screen and (max-width: 1199px) {
  .header .logo {
    margin-right: auto;
  }
  .header__block {
    margin-right: 0;
    padding-top: 0;
    text-align: right;
  }
  .header .tel-link {
    position: relative;
    top: .1em;
  }
}

@media screen and (max-width: 991px) {
  .header {
    padding-right: 20px;
  }
}

.home .header {
  border-bottom: none;
}

.logo {
  max-width: 155px;
}

@media screen and (max-width: 575px) {
  .logo {
    max-width: 100px;
  }
}

@media screen and (max-width: 375px) {
  .logo {
    max-width: 90px;
  }
}

/* location start */
.location {
  font-size: 13px;
  display: flex;
}
.location:before{
	content: '';
	display: inline-block;
	height: 18px;
	width: 18px;
	margin-right: 1em;
	background: url(../img/location.svg) center center no-repeat;
	background-size: contain; 
}

.location_mobile:before{
	content: none;
}
.location_mobile .location__toggle{
	border: none;
	position: relative;
	font-size: 13px;
	color: #888;
	top: 5px;
}
.location_mobile .location__toggle:before{
	content: '';
	display: inline-block;
	height: 30px;
	width: 30px;
	margin-right: 1em;
	background: url(../img/location.svg) center center no-repeat;
	background-size: contain;
	position: absolute;
	left: -40px;
	top: 5px;
}
.location_mobile .location__hidden {
	left: -17px;
	top: 50px;
	transform: translate(-50%);
}
.location_mobile .location__hidden:before {
	left: calc(50% - 8px);
}
.location_mobile .button {
	margin-top: 0;
}
.menu .location:before{
	height: 23px;
	width: 23px;
}

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

.location__city {
  position: relative;
  z-index: 1;
}

.location__toggle {
  cursor: pointer;
  display: inline-block;
  padding-bottom: 1px;
  border-bottom: 1px dashed currentColor;
  -webkit-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
}

.location__toggle:hover {
  border-color: transparent;
}

.location__hidden {
  display: none;
  padding: 13px 15px;
  position: absolute;
  left: -30px;
  top: 100%;
  margin-top: 10px;
  /*-webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);*/
  white-space: nowrap;
  background: #fff;
  text-align: left;
  -webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
          box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
  -webkit-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
}

.location__hidden::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 30px;
  margin-left: -7px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.location__hidden::before {
  background: #fff;
  top: -5px;
  z-index: 0;
}

.location__link {
  display: block;
  padding: 3px 0;
  color: #000;
}

.location__link:hover {
  color: #f16522;
}

.location.is-visible .location__toggle {
  border-color: transparent;
}

.location.is-visible .location__hidden.location__hidden_list {
  display: block;
}

.location.is-visible-dialog .location__hidden.location__hidden_dialog {
  display: block;
}

.location-dialog a.location-dialog__select{
	border: none;
	color: var(--orange-color);
}

.location-dialog__header{
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}
span.location-dialog__close{
	font-size: 30px;
	color: #000;
	cursor: pointer;
	line-height: 20px;
}




/* location end */
.tel-link {
  display: inline-block;
  font-weight: 700;
  letter-spacing: -.025em;
}

@media screen and (max-width: 1199px) {
  .tel-link {
    font-size: 22px;
  }
}

@media screen and (max-width: 575px) {
  .tel-link {
    font-size: 18px;
  }
}

@media screen and (max-width: 370px) {
  .tel-link {
    font-size: 16px;
  }
}

.menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  font-weight: 600;
  font-size: 15px;
}

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

.menu__list > li {
	position: relative;
	padding-right: 14px;
	margin-right: 2.8%;
}

.menu__list > li.menu-item-has-children {
	padding-right: 14px;
}

.menu__list > li:last-child {
	margin-right: 0;
}


@media screen and (min-width: 1200px) {
  .menu__list > li:hover .menu-arrow {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .menu__list > li:hover .submenu {
    display: block;
  }
}

@media screen and (max-width: 1300px) {
  .menu__list > li {
    margin-right: 2.1%;
  }
}

.menu__list a {
  display: block;
}

.menu__list a:hover {
  color: #f16522;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 21px;
  margin-right: 5%;
  position: relative;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform .35s linear;
  transition: -webkit-transform .35s linear;
  -o-transition: transform .35s linear;
  transition: transform .35s linear;
  transition: transform .35s linear, -webkit-transform .35s linear;
  will-change: transform;
}

@media screen and (max-width: 1199px) {
  .menu-toggle {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  .menu-toggle {
    width: 28px;
  }
}

.menu-ic {
  width: 100%;
  height: 2px;
  margin-top: -1px;
  border-radius: 15px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  -webkit-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
}

.menu-ic::before, .menu-ic::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  border-radius: 15px;
  background-color: #000;
  -webkit-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
}

.menu-ic::before {
  top: -9px;
}

.menu-ic::after {
  top: 9px;
}

.menu-arrow {
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  right: -4px;
  top: .2em;
  background: url("../img/ic-arrow.svg") no-repeat 50% 50%/0.26em 0.5em;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.menu-arrow.--active {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media screen and (max-width: 1199px) {
  .menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
    max-width: 500px;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 5em;
    padding-bottom: 50px;
    background: #fff;
    -webkit-box-shadow: 0 0 29px rgba(0, 0, 0, 0.17);
            box-shadow: 0 0 29px rgba(0, 0, 0, 0.17);
    font-size: 22px;
    will-change: transform;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .menu__list {
    display: block;
  }
  .menu__list > li {
    margin: 0;
    padding: 0 0 0 20px;
  }
  .menu__list > li > a {
    padding: .5em 0;
  }
  .menu-arrow {
    font-size: 28px;
    right: 15px;
    top: .3em;
  }
  .menu .header-btn {
    margin: 1em 0 1em 16px;
  }
  .menu .socials {
    font-size: .8em;
    margin-top: 20px;
    padding-left: 16px;
  }
  .menu .socials li {
    margin: 0 2em 0 0;
  }
}

@media screen and (max-width: 575px) {
  .menu {
    font-size: 18px;
  }
}

.menu-expanded {
  overflow: hidden;
}

.menu-expanded .menu {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.menu-expanded .menu-toggle {
  z-index: 100;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.menu-expanded .menu-ic {
  background: transparent;
}

.menu-expanded .menu-ic::before, .menu-expanded .menu-ic::after {
  top: 0;
}

.menu-expanded .menu-ic::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-expanded .menu-ic::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.submenu {
  display: none;
  padding: 13px 15px;
  background: #fff;
}

@media screen and (min-width: 1200px) {
  .submenu {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    -webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
            box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
    -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
            transform: translateY(5px);
  }
  .submenu::before {
    content: '';
    display: block;
    width: 100%;
    height: 15px;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 100%;
  }
}

.submenu li:not(:last-child) {
  margin-bottom: .5em;
}

@media screen and (max-width: 1199px) {
  .submenu a {
    padding: 0.25em 0;
  }
}

.f-menu {
  width: 100%;
  max-width: 420px;
  position: fixed;
  z-index: 11;
  top: 30px;
  right: 0;
  will-change: transform;
  -webkit-transform-origin: 100% 50%;
      -ms-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  -o-transition: transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.f-menu.is-visible {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.f-menu__btn {
  position: absolute;
  right: 100%;
  top: 8px;
  font-size: 10px;
  width: 2.9em;
  height: 3.1em;
  background: url("../img/ic-flag.png") no-repeat 100% 50%/100%;
  cursor: pointer;
	transition: all .15s linear;
	display: none;
}

.f-menu__hidden {
  padding: 34px 50px 26px;
  background: #fff;
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
}

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

.f-menu__list li {
  width: 80px;
}

.f-menu__link {
  display: block;
}

.f-menu__link:hover {
  color: #f16522;
}

.f-menu__ic {
  font-size: 10px;
  width: 5.7em;
  height: 5.5em;
  margin-bottom: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.f-menu__ic .img {
  max-height: 90%;
}

.f-menu__txt {
  font-size: 15px;
  font-weight: 600;
}

@media screen and (max-width: 1199px) {
  .f-menu__btn {
    top: 4px;
  }
}

@media screen and (max-width: 575px) {
  .f-menu {
    max-width: calc(100% - 15px);
  }
  .f-menu__btn {
    top: 0;
  }
  .f-menu__hidden {
    padding-left: 30px;
    padding-right: 30px;
  }
  .f-menu__ic {
    font-size: 8px;
  }
  .f-menu__txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .f-menu.is-visible .f-menu__btn {
    right: auto;
    left: 0;
    -webkit-transform: scale(-1);
        -ms-transform: scale(-1);
            transform: scale(-1);
  }
}

/* ----- footer ----- */
.footer {
  padding: 90px 0;
  background: #141414;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .footer {
    padding: 70px 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 0;
  }
}

@media screen and (max-width: 575px) {
  .footer {
    padding: 35px 0;
  }
}

.footer__col {
  width: 18%;
  position: relative;
}
.footer__col.footer__col_form {
  width: 28%;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .footer__col {
    width: 33%;
    margin-bottom: 40px;
  }
  .footer__col.footer__col_form {
  	width: 66%;
  }
  .footer__logo{
  	top: 70%;
  }
}

.footer__title {
  margin-bottom: 1em;
  font-weight: 700;
}

.footer__list {
  font-weight: 300;
}

.footer__list li:not(:last-child) {
  margin-bottom: 0.8em;
}

@media screen and (max-width: 1199px) {
  .footer__list li:not(:last-child) {
    margin-bottom: 0.5em;
  }
}

.footer__link {
  opacity: 0.3;
}

.footer__link:hover {
  opacity: 0.6;
}

.footer__mes {
  margin-bottom: 1.8em;
  font-weight: 600;
  white-space: nowrap;
}
.footer__mes br{
	display: none;
}



@media screen and (max-width: 385px) {
  .footer .txt-1 {
    font-size: 16px;
  }
}

.footer__logo {
  position: absolute;
  top: 45px;
  right: 15px;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    position: static;
  }

  .footer__col {
    width: 50%;
    margin-bottom: 40px;
  }
  .footer__col.footer__col_form {
  	width: 100%;
  }
  .footer__logo{
  
  }
  .footer__mes{
  	white-space: normal;
  }

}

.footer .copy {
  margin-bottom: 0.8em;
  opacity: 0.5;
}

.footer .socials {
  margin-bottom: 43px;
}

.footer .socials li {
  margin: 0 1.6em 0 0;
}

.footer .socials li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1199px) {
  .footer .socials {
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  .footer .socials {
    font-size: 14.4px;
  }
}

@media screen and (max-width: 385px) {
  .footer .socials {
    font-size: 12px;
  }
}

.footer__tag {
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  font-size: 225px;
  font-family: "Arvo", "ProximaNova", sans-serif;
  line-height: .6;
  text-align: center;
  letter-spacing: -.018em;
  color: #141414;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
}

.footer__tag::-moz-selection {
  background: none;
}

.footer__tag::selection {
  background: none;
}

@media screen and (max-width: 1199px) {
  .footer__tag {
    font-size: 16vw;
  }
}

.footer__bottom {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -20px;
}

.footer__bottom-col {
  width: 50%;
  margin-left: auto;
}

.designer {
  font-weight: 300;
  -webkit-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
  opacity: 0.3;
}

.designer:hover {
  opacity: 0.6;
}

.designer:hover a {
  color: #f16522;
}

.hero-print {
  overflow: hidden;
}

.hero-print__container_5 {
	max-width: 1790px;
	overflow: hidden;
}

.hero-print__screen {
  padding: 30px 0 0;
  font-size: 10px;
  overflow: visible;
}

@media screen and (max-width: 1199px) {
  .hero-print__screen {
    text-align: center;
    font-size: 9px;
  }
}

@media screen and (max-width: 767px) {
  .hero-print__screen {
    font-size: 8px;
  }
}

.hero-print .swiper-wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 1200px) {
  .hero-print .swiper-slide {
    width: 33.33333%;
    width: auto;
  }
}

@media screen and (max-width: 1199px) {
  .hero-print .swiper-slide {
    width: 45em;
  }
}

.hero-print__img {
  position: relative;
  height: 50em;
}

.hero-print__img .img {
  font-size: 1em;
  max-width: 50.3em;
  max-height: 56em;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .hero-print__img .img {
    max-height: 50em;
  }
}

.hero-print__item {
  max-width: 30em;
  margin: 0 auto;
}

.hero-print__item .img[src*="print-1"] {
  left: 74%;
  left: 50%;
	max-width: 130%;
}

.hero-print__item .img[src*="print-2"] {
  left: 47%;
  left: 50%;
}

.hero-print__item .img[src*="print-3"] {
  left: 34%;
  left: 50%;
}

.hero-print__item .img[src*="bg444"] {
  left: 42%;
  left: 50%;
}

.hero-print__item .img[src*="method-5-man"] {
	max-width: 75%;
}


.hero-print__title {
  min-width: 11.8em;
  margin-bottom: 1em;
  font-size: 2.6em;
  text-align: center;
}

.hero-print__subtitle {
  margin-bottom: .6em;
  font-weight: 700;
}


.hero-print__img .img,
.hero-print__item {
	max-width: 100%;
}
.hero-print .swiper-slide{
	/*width: 25%;*/
}


@media screen and (max-width: 1199px) {
  .hero-print__subtitle {
    font-size: 24px;
  }
	.hero-print__item .img[src*="bg444"] {
		height: 102%;
	}

	.hero-print__item .img[src*="method-5-man"] {
		height: 50em;
	}

}

.hero-print__txt {
  max-width: 16em;
  opacity: 0.7;
}

@media screen and (max-width: 1199px) {
  .hero-print__txt {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-print__txt br {
    display: none;
  }
}

.print-popup {
  position: relative;
}

.print-popup__hidden {
  font-size: 1em;
  width: 39.2em;
  padding: 3em 4em;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f7f7f7;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.14);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.14);
  display: none;
}

.print-popup__hidden::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  z-index: 0;
  left: 50%;
  margin-left: -10px;
  bottom: -4px;
  background: #f7f7f7;
}

.print-popup:hover .print-popup__hidden {
  display: block;
}

@media screen and (max-width: 767px) {
  .print-popup__hidden {
    padding: 2em 1.5em;
  }
}

.cloth {
  padding: 60px 0;
  background: #f7f7f7;
}
.cloth_white {
  background: none;
}
.cloth_white .swiper-wrapper{
	padding-top: 30px;
}
.cloth_white h2{
	margin-bottom: 0;
}
.cloth_white .swiper-container{

}
.cloth_white .container{
	
}


@media screen and (max-width: 767px) {
  .cloth {
    padding: 40px 0;
  }

	.location__link {
		padding: 0.6em 0;
	}

}

.cloth__slider-wrap {
  position: relative;
}

.cloth__slider-wrap .slider-arrow {
  margin-top: -6em;
}

.cloth__slider .swiper-slide:last-child .cloth-hidden {
  left: auto;
  right: 0;
}

@media screen and (max-width: 1199px) {
  .cloth__item {
    text-align: center;
  }
}

.cloth__img {
  margin-bottom: 35px;
  background: #b2b1ac;
	display: block;
	height: 449px;
}

.cloth__img .img {
  /*height: 45.1em;*/
  height: auto;
  border-radius: 2px;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1199px) {
  .cloth__img .img {
    margin: 0 auto;
    font-size: 9px;
  }
}

@media screen and (max-width: 575px) {
  .cloth__img .img {
    font-size: 8px;
  }

	.cloth_white .swiper-wrapper {
	  padding-bottom: 0;
	}

}

.cloth__title {
  font-weight: 700;
  margin-bottom: .5em;
}

.cloth__txt {
/*  white-space: pre;*/
}

.cloth-pricing {
  position: relative;
  margin-bottom: .5em;
}

@media screen and (min-width: 1200px) {
  .cloth-pricing__txt {
    display: inline-block;
    color: #f16522;
    border-bottom: 1px dashed #f16522;
    -webkit-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out;
	padding-bottom: .5em;
  }
}

.cloth-pricing:hover .cloth-pricing__txt {
  border-color: transparent;
}

.cloth-pricing:hover .cloth-hidden {
  display: block;
}

.cloth-hidden {
  display: none;
  width: 558px;
  padding: 40px 35px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  right: 0;
  border-radius: 4px;
  background-color: #f7f7f7;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.07);
}


.cloth-hidden::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  z-index: 0;
  right: 270px;
  bottom: -4px;
  background: #f7f7f7;
}

.swiper-slide-active .cloth-hidden {
	right: auto;
	left: 0;
}

.swiper-slide-active .cloth-hidden::after {
	right: auto;
	left: 20px;
}

.cloth-hidden__title {
  margin-bottom: 15px;
  font-weight: 700;
}

.cloth-hidden__table table {
  width: 100%;
}

.cloth-hidden__table th, .cloth-hidden__table td {
  padding: 5px 0;
}

.cloth-hidden--text {
  width: 300px;
}

@media screen and (max-width: 1199px) {
  .cloth-hidden {
    display: block;
    width: auto;
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 0;
  }
  .cloth-hidden::after {
    display: none;
  }
  .cloth-hidden__title {
    margin-top: 25px;
    margin-bottom: 5px;
  }
  .cloth-hidden__table table, .cloth-hidden__table tr, .cloth-hidden__table th, .cloth-hidden__table td {
    display: block;
  }
  .cloth-hidden__table tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cloth-hidden__table tr {
    width: 50%;
  }
}

.contacts {
  margin-top: 50px;
  padding: 70px 0 30px;
  background: #f7f7f7;
}

@media screen and (max-width: 575px) {
  .contacts {
    padding: 50px 0 20px;
  }
}

.contacts__row, .contacts__subrow {
  margin: 0 -15px;
}

.contacts__row {
  margin-bottom: -30px;
}

@media screen and (max-width: 1199px) {
  .contacts__row {
    display: block;
    margin: 0;
  }
}

.contacts__col, .contacts__subcol {
  width: 50%;
  margin-bottom: 30px;
  padding: 0 15px;
}

@media screen and (max-width: 1199px) {
  .contacts__col {
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 575px) {
  .contacts__subcol {
    margin-bottom: 0;
  }
}

.contacts__city {
  margin-bottom: .8em;
}

@media screen and (max-width: 1199px) {
  .contacts__city {
    text-align: center;
  }
}

.contacts__title {
  font-weight: 700;
}

.contacts .tel-link {
  margin-bottom: 1em;
}

.contacts__subtxt {
  opacity: 0.7;
}

@media screen and (max-width: 575px) {
  .contacts__subtxt br {
    display: none;
  }
}

.testimonials__slider {
  padding-top: 25px;
}

@media screen and (min-width: 1200px) {
  .testimonials__slider .swiper-wrapper {
    width: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 70px -15px -30px;
  }
}

@media screen and (min-width: 1200px) {
  .testimonials__slider .swiper-slide {
    width: 33.33333%;
    height: auto;
    margin-bottom: 30px;
    padding: 0 15px;
  }
}

@media screen and (min-width: 1200px) {
  .testimonials-dots {
    display: none;
    margin-top: 20px;
  }
}

.testimonial {
  height: 100%;
  padding: 95px 56px 56px;
  position: relative;
  background: #f7f7f7;
  border-radius: 4px;
}

.testimonial::after {
  content: '';
  display: block;
  font-size: 10px;
  width: 3.9em;
  height: 2.7em;
  position: absolute;
  right: 3em;
  top: 2.8em;
  background: url("../img/ic-quotes.svg") no-repeat 50% 50%/100%;
  opacity: 0.1;
}

.testimonial__img {
  font-size: 10px;
  width: 8em;
  height: 8em;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -2.1em;
}

.testimonial__txt {
  font-weight: 700;
}

.testimonial__author {
  opacity: 0.7;
}

@media screen and (max-width: 1199px) {
  .testimonial {
    padding: 80px 30px 30px;
  }
}

@media screen and (max-width: 575px) {
  .testimonial {
    padding-top: 75px;
  }
  .testimonial__img {
    font-size: 9px;
  }
}

@media screen and (max-width: 575px) {
  .partners {
    overflow: hidden;
  }
}

.partners__slider-wrap {
  position: relative;
}

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

@media screen and (max-width: 575px) {
  .partners__slider {
    overflow: visible;
  }
}

@media screen and (max-width: 991px) {
  .tabs {
    overflow: hidden;
  }
}

.tabs-nav {
  margin-bottom: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabs-nav li {
  margin: 0 10px 10px;
}

.tabs-nav__item {
  padding: .5em 1em;
  font-size: 18px;
  font-weight: 700;
  color: #f16522;
  background: #f7f7f7;
}

.tabs-nav__item.button {
  border: none;
  overflow: visible;
}

.tabs-nav__item span {
  -webkit-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
  border-bottom: 1px dashed #f16522;
}

.tabs-nav__item::after {
  content: '';
  font-size: 1em;
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  z-index: -1;
  left: calc(50% - .5em);
  bottom: -.3em;
  border-radius: 2px;
  background: #f16522;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .15s 0s ease-out;
  -o-transition: all .15s 0s ease-out;
  transition: all .15s 0s ease-out;
}

.tabs-nav__item:hover span {
  border-bottom-color: transparent;
}

.tabs-nav__item.is-active {
  background: #f16522;
  color: #fff;
  position: relative;
}

.tabs-nav__item.is-active::after {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: .05s;
       -o-transition-delay: .05s;
          transition-delay: .05s;
}

@media screen and (max-width: 767px) {
  .tabs-nav li {
    margin: 0 10px 10px;
  }
  .tabs-nav__item {
    width: 100%;
    padding: .7em 1em;
  }
}

.tabs-nav--white .tabs-nav__item:not(.is-active) {
  background: #fff;
}

.tabs-slider-wrap {
  position: relative;
}

.tabs-slider__img {
  font-size: 10px;
  height: 56.9em;
  border-radius: 4px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .tabs-slider {
    overflow: visible;
  }
  .tabs-slider .swiper-slide {
    max-width: 80%;
  }
  .tabs-slider__img {
    font-size: 1.4vw;
    max-height: none;
    height:100%;
  }
  .tabs-slider .double-img .img{
    max-height: 180px;
  }
}

.discounts__slider-wrap {
  position: relative;
}

@media screen and (max-width: 767px) {
  .discounts__slider .hero-block {
    padding-bottom: 60px;
    background-position-x: 10%;
  }
}

.discounts-dots {
  position: absolute;
  width: 100%;
  z-index: 2;
  bottom: -30px;
}

@media screen and (max-width: 1199px) {
  .pricing {
    background: #f7f7f7;
  }
}

.pricing__bg {
  padding: 60px 0;
  background: #f7f7f7;
  border-radius: 4px;
}

@media screen and (max-width: 1199px) {
  .pricing__bg {
    background: none;
    border-radius: 0;
  }
}

@media screen and (max-width: 767px) {
  .pricing__bg {
    padding: 40px 0;
  }
}

.pricing__inner {
  max-width: 986px;
  margin: 0 auto;
}

.pricing-table {
  font-size: 14px;
  text-align: center;
  padding-bottom: 15px;
}

.pricing-table table {
  width: 100%;
}

.pricing-table thead th {
  font-weight: 400;
}

.pricing-table thead td, .pricing-table thead th {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.pricing-table thead td:first-child, .pricing-table thead th:first-child {
  text-align: left;
}

.pricing-table tbody tr:first-child th, .pricing-table tbody tr:first-child td {
  padding-top: 22px;
}

.pricing-table tbody th, .pricing-table tbody td {
  padding: 5px 0;
  vertical-align: top;
}

.pricing-table .pricing-table__divider th, .pricing-table .pricing-table__divider td {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-table .pricing-table__divider + tr th, .pricing-table .pricing-table__divider + tr td {
  padding-top: 22px;
}

.pricing-format {
  width: 300px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.pricing-format__hint {
  font-size: 10px;
  width: 17.1em;
  height: 17.1em;
  padding: 3.5em;
  background: #f7f7f7;
  border-radius: 4px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-25%, -100%);
      -ms-transform: translate(-25%, -100%);
          transform: translate(-25%, -100%);
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  display: none;
}

.pricing-format__hint::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  z-index: 0;
  left: 50%;
  margin-left: -10px;
  bottom: -4px;
  background: #f7f7f7;
}

.pricing-format__hint .img {
  max-height: 100%;
}

.pricing-format:hover .pricing-format__hint {
  display: block;
}

@media screen and (max-width: 1199px) {
  .pricing-format__hint {
    font-size: 9px;
  }
}

@media screen and (max-width: 767px) {
  .pricing-format {
    width: 200px;
  }
  .pricing-format__hint {
    font-size: 8px;
  }
}

@media screen and (max-width: 575px) {
  .pricing-format {
    width: auto;
  }
  .pricing-format__hint {
    font-size: 7px;
  }
}

/* -------------------------------------
	Main page
	------------------------------------- */
.hero__row {
  margin: 0 -15px -30px;
}

@media screen and (max-width: 991px) {
  .hero__row {
    display: block;
    margin: 0;
  }
}

.hero__col {
  margin-bottom: 30px;
  padding: 0 15px;
}

.hero__col-1-2 {
  width: 50%;
}

.hero__col-3-4 {
  width: 75%;
}

.hero__col-1-4 {
  width: 25%;
}

@media screen and (max-width: 991px) {
  .hero__col {
    width: 100%;
    padding: 0;
  }
}

.hero-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  -webkit-transition: -webkit-box-shadow .2s linear;
  transition: -webkit-box-shadow .2s linear;
  -o-transition: box-shadow .2s linear;
  transition: box-shadow .2s linear;
  transition: box-shadow .2s linear, -webkit-box-shadow .2s linear;
}

.hero-block:hover {
  -webkit-box-shadow: 0 0 15px rgba(241, 101, 34, 0.12);
          box-shadow: 0 0 15px rgba(241, 101, 34, 0.12);
}

@media screen and (max-width: 991px) {
  .hero-block {
    height: auto;
  }
}

.hero-block .title-3 {
  font-family: "Arvo", "ProximaNova", sans-serif;
}

.hero-block__txt {
  max-width: 220px;
  margin-top: auto;
  font-weight: 700;
}

.hero-block-1, .hero-block-2 {
  min-height: 490px;
  padding: 95px 20px 50px;
}

@media screen and (max-width: 1199px) {
  .hero-block-1, .hero-block-2 {
    padding: 50px;
    min-height: 400px;
  }
}

@media screen and (max-width: 991px) {
  .hero-block-1, .hero-block-2 {
    min-height: 50vw;
  }
}

@media screen and (max-width: 767px) {
  .hero-block-1, .hero-block-2 {
    padding: 30px;
  }
}

@media screen and (max-width: 575px) {
  .hero-block-1, .hero-block-2 {
    min-height: 280px;
  }
}

.hero-block-1, .hero-block-3 {
  color: black;
}

.hero-block-1:hover, .hero-block-3:hover {
  color: black;
}
@media(max-width:500px){
	.hero-block__txt{
		margin-top: 0;
		font-size: 11px;
    	line-height: 1.2;
    	max-width: 150px;
	}
	.hero-block-1, .hero-block-2 {
        padding: 30px 15px;
    }
	h1, .title-1 {
        font-size: 21px;
    }
}

.hero-block-3 {
  padding: 50px 65px 70px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-block-3__title {
  margin-bottom: .5em;
}

@media screen and (min-width: 992px) {
  .hero-block-3__title {
    margin-bottom: .2em;
    font-size: 50px;
  }
}

@media screen and (min-width: 1200px) {
  .hero-block-3__title {
    font-size: 68px;
  }
}

.hero-block-3__txt {
  max-width: none;
}

@media screen and (max-width: 767px) {
  .hero-block-3 {
    padding: 40px;
  }
}

.hero-block-4 {
  padding: 40px;
  background: #efeff0;
  position: relative;
  width: 100%;
  padding: 0;
  padding-bottom: 100%;
}

.hero-block-4__title {
  margin-bottom: .8em;

	position: absolute;
	z-index: 1;
	top: 40px;
	left: 50%;
	transform: translate(-50%);
	color: #fff;
	width: 80%;
	text-align: center;
}

.hero-block-4 .img {
  /*max-width: 140px;
  max-height: 107px;
*/

	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

}

@media screen and (max-width: 1199px) {
  .hero-block-4 {
    padding: 30px;
  }
}

@media screen and (max-width: 991px) {
  .hero-block-4 {
    display: none;
  }
}

/* -------------------------------------
	Silk
	------------------------------------- */
.s-hero__col-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.s-hero__item:not(:last-child) {
  margin-bottom: 40px;
}

.s-hero__item .title-2 {
  margin-bottom: 0.2em;
}

.s-hero__ic {
  font-size: 10px;
  width: 6em;
  height: 6em;
  border-radius: 50%;
  margin-right: 5.5em;
  border: 2px solid #f16522;
}

.s-hero__ic--disabled {
  border-color: #c2c2c2;
}

.s-hero__ic .img {
  font-size: 1em;
  max-width: 2.5em;
  max-height: 2.5em;
}

.s-hero__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
}

.s-hero .txt-2 {
  opacity: 0.7;
}

.s-hero__frame {
  font-size: 11px;
  width: 56em;
  height: 31.5em;
  overflow: hidden;
}

.s-hero__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1199px) {
  .s-hero__frame {
    margin: 0 auto 50px;
  }
}

@media screen and (max-width: 767px) {
  .s-hero__ic {
    margin-right: 3em;
  }
  .s-hero__frame {
    font-size: 1.62vw;
  }
}

@media screen and (max-width: 575px) {
  .s-hero__ic {
    font-size: 8px;
  }
}

@media screen and (max-width: 1199px) {
  .silk-block__row {
    display: block;
    margin: 0;
  }
}

@media screen and (max-width: 1199px) {
  .silk-block__col {
    width: 100%;
    padding: 0;
  }
}

.silk-block .title-3 {
  font-family: "Arvo", "ProximaNova", sans-serif;
}

@media screen and (max-width: 1199px) {
  .block-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.block-link {
  display: block;
  height: 100%;
  padding: 40px 34px 38px;
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  background: #fff;
}

.block-link__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 77px;
  margin-bottom: 25px;
}

.block-link__img .img {
  max-height: 100%;
}

@media screen and (max-width: 767px) {
  .block-link {
    padding: 30px;
  }
}

@media screen and (max-width: 575px) {
  .block-link {
    padding: 20px;
  }
  .block-link br {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .block-link {
    padding: 15px;
  }
  .block-link__img {
    height: 60px;
  }
  .block-link .title-3 {
    font-size: 18px;
  }
}

.effects__row {
  margin: 0 -15px;
}

@media screen and (max-width: 1199px) {
  .effects__row {
    display: block;
    margin: 0;
  }
}

.effects__col {
  display: none;
  width: 33.33333%;
  margin-bottom: 30px;
  padding: 0 15px;
}

@media screen and (max-width: 1199px) {
  .effects__col {
    width: 100%;
    padding: 0;
  }
}

.effects-item__img {
  font-size: 10px;
  max-width: 408px;
  height: 29.1em;
  margin: 0 auto 3em;
  border-radius: 4px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .effects-item__img {
    font-size: 8px;
  }
}

.effects-item__title {
  margin-bottom: 1em;
}

.effects-item__txt {
  opacity: 0.7;
}

/* -------------------------------------
	Print methods
	------------------------------------- */
.methods__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.methods__side {
  width: 170px;
  padding-right: 15px;
}

@media screen and (max-width: 575px) {
  .methods__side {
    width: 120px;
  }
}

.methods__vals {
  padding-bottom: 101px;
  font-weight: 700;
}

@media screen and (max-width: 1199px) {
  .methods__vals {
    padding-bottom: 126px;
  }
}

.methods__val {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
}

@media screen and (max-width: 1199px) and (min-width: 576px) {
  .methods__val {
    font-size: 20px;
  }
}

.methods__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
}

@media screen and (max-width: 1199px) {
  .methods__content {
    overflow: auto;
    padding-bottom: 15px;
  }
}

.methods-table {
  width: 1116px;
}

@media screen and (max-width: 575px) {
  .methods-table {
    width: 870px;
  }
}

.methods-table__row {
  margin: 0 -15px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 575px) {
  .methods-table__row {
    margin: 0 -7.5px;
  }
}

.methods-table__col {
  width: 33.33333%;
  padding: 0 15px;
}

@media screen and (max-width: 575px) {
  .methods-table__col {
    padding: 7.5px;
  }
}

.method__title {
  margin-bottom: 1em;
}

.method__img {
  font-size: 10px;
  height: 22.9em;
  overflow: hidden;
  border-radius: 4px;
}

.method__img .img {
  -o-object-position: 50% 0;
     object-position: 50% 0;
}

@media screen and (max-width: 575px) {
  .method__img {
    font-size: 8px;
  }
}

.method__body {
  background: #fff;
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
}

@media screen and (max-width: 1199px) {
  .method__body {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  }
}

.method__row {
  height: 90px;
  padding: 0 15px 0 55px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e5e5e5;
}

@media screen and (max-width: 1199px) {
  .method__row {
    padding: 0 15px 0 25px;
  }
}

.method__ic {
  font-size: 10px;
  width: 2.5em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.5em;
          flex: 0 0 2.5em;
  height: 2.2em;
  margin-right: 3.5em;
}

@media screen and (max-width: 575px) {
  .method__ic {
    font-size: 9px;
    margin-right: 2em;
  }
}

.method__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
}

@media screen and (max-width: 1199px) and (min-width: 576px) {
  .method__txt {
    font-size: 18px;
  }
}

.method__btn {
  height: 101px;
  padding: 25px 0;
  text-align: center;
}

@media screen and (max-width: 1199px) and (min-width: 576px) {
  .method__btn {
    height: 111px;
  }
  .method__btn .button {
    font-size: 18px;
  }
}

/* -------------------------------------
	Wholesale
	------------------------------------- */
.wholesale__row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 1199px) {
  .wholesale__row {
    display: block;
    margin: 0;
  }
}

@media screen and (max-width: 1199px) {
  .wholesale__col {
    width: 100%;
    padding: 0;
  }
}

.wholesale__accent {
  margin-bottom: 50px;
}

.wholesale-list__row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .wholesale-list__row {
    display: block;
    margin: 0;
  }
}

.wholesale-list__col {
  width: 50%;
}

@media screen and (min-width: 1200px) {
  .wholesale-list__col:nth-child(3) {
    position: absolute;
    left: 100%;
  }
  .wholesale-list__col:nth-child(3) .wholesale-list__item {
    margin-top: -25px;
    padding: 25px 30px;
    background: #f7f7f7;
    -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  }
}

@media screen and (max-width: 1199px) {
  .wholesale-list__col {
    width: 100%;
    margin-bottom: 50px;
    padding: 0;
  }
}

@media screen and (max-width: 575px) {
  .wholesale-list__col {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 1199px) {
  .wholesale-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.wholesale-list__img {
  font-size: 10px;
  width: 7.5em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7.5em;
          flex: 0 0 7.5em;
  height: 7.6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 2em;
}

.wholesale-list__img .img {
  max-height: 100%;
}

@media screen and (max-width: 1199px) {
  .wholesale-list__img {
    margin: 0 3em 0 0;
  }
}

@media screen and (max-width: 767px) {
  .wholesale-list__img {
    font-size: 8px;
  }
}

@media screen and (max-width: 575px) {
  .wholesale-list__img {
    font-size: 7px;
  }
}

@media screen and (max-width: 1199px) {
  .wholesale-list__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    max-width: 100%;
  }
}

.wholesale-list__title {
  font-weight: 700;
  margin-bottom: .5em;
}

.wholesale__btns .button {
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .wholesale__btns {
    display: block;
    text-align: center;
    margin-bottom: -15px;
  }
  .wholesale__btns .button {
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 575px) {
  .wholesale__btns .button {
    max-width: 290px;
  }
}

.wholesale-blockquote__inner {
  padding: 45px 29% 45px 60px;
  position: relative;
  border: 2px solid #f16522;
  background: #f7f7f7;
}

.wholesale-blockquote__inner::after {
  content: '';
  display: block;
  font-size: 10px;
  width: 3.9em;
  height: 2.7em;
  position: absolute;
  right: 4.8em;
  top: 3.9em;
  background: url(../img/ic-quotes.svg) no-repeat 50% 50%/100%;
  opacity: .1;
}

.wholesale-blockquote__logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 56px;
  right: 71px;
}

.wholesale-blockquote__logo .img {
  font-size: 10px;
  width: 4.5em;
  height: 3.9em;
  margin-right: 1em;
}

@media screen and (max-width: 1199px) {
  .wholesale-blockquote__inner {
    padding-right: 14%;
  }
  .wholesale-blockquote__logo {
    position: static;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .wholesale-blockquote__inner {
    padding: 30px;
  }
  .wholesale-blockquote__inner::after {
    font-size: 8px;
  }
  .wholesale-blockquote__inner p:first-child {
    max-width: 80%;
  }
}

@media screen and (max-width: 575px) {
  .wholesale-blockquote__inner {
    padding: 30px 15px;
  }
}

.wholesale-steps__row {
  counter-reset: li;
  padding-top: 0;
}

@media screen and (max-width: 1199px) {
  .wholesale-steps__row {
    display: block;
    margin: 0 0 -20px;
  }
}

@media screen and (max-width: 575px) {
  .wholesale-steps__row {
    padding-top: 40px;
  }
}

.wholesale-steps__col {
  width: 33.33333%;
}

@media screen and (max-width: 1199px) {
  .wholesale-steps__col {
    width: 100%;
    margin-bottom: 60px;
    padding: 0;
  }
}

.wholesale-step {
  height: 100%;
  padding: 65px 76px 50px 60px;
  background: #fff;
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  position: relative;
}

.wholesale-step::before {
  counter-increment: li;
  content: counter(li);
  font-size: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.353em;
  height: 2.353em;
  border-radius: 50%;
  border: 2px solid #f16522;
  background: #fff;
  font-family: "Arvo", "ProximaNova", sans-serif;
  line-height: 1;
  letter-spacing: -.016em;
  position: absolute;
  top: -1em;
}

.wholesale-step__title {
  margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
  .wholesale-step {
    padding: 50px 30px 30px;
  }
  .wholesale-step::before {
    font-size: 26px;
  }
}

@media screen and (max-width: 575px) {
  .wholesale-step {
    padding: 50px 15px 30px;
  }
}

/* -------------------------------------
	Single
	------------------------------------- */
@media screen and (min-width: 1200px) {
  .single-hero {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1199px) {
  .single__row {
    display: block;
    margin: 0;
  }
}

@media screen and (max-width: 1199px) {
  .single__col {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media screen and (max-width: 1199px) {
  .single-list__row {
    display: block;
    margin: 0;
  }
}

.single-list__col {
  width: 50%;
}

@media screen and (max-width: 1199px) {
  .single-list__col {
    width: 100%;
    margin-bottom: 50px;
    padding: 0;
  }
}

@media screen and (max-width: 575px) {
  .single-list__col {
    margin-bottom: 35px;
  }
}

.single-list__col:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .single-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.single-list__img {
  font-size: 10px;
  width: 7em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7em;
          flex: 0 0 7em;
  height: 7em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 2em;
}

.single-list__img .img {
  max-height: 100%;
}

@media screen and (max-width: 1199px) {
  .single-list__img {
    margin: 0 3em 0 0;
  }
}

@media screen and (max-width: 767px) {
  .single-list__img {
    font-size: 8px;
  }
}

@media screen and (max-width: 1199px) {
  .single-list__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    max-width: 100%;
  }
}

.single-list__title {
  font-weight: 700;
  margin-bottom: .5em;
}

.single__img {
  margin-bottom: -30px;
}

@media screen and (max-width: 1199px) {
  .dops__row {
    display: block;
    margin: 0;
  }
}

@media screen and (max-width: 1199px) {
  .dops__col {
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .dops__col {
    margin-bottom: 15px;
  }
}

.dops-item {
  height: 100%;
  padding: 60px;
  border-radius: 4px;
  background: #f7f7f7;
}

.dops-item_shadow {
  background: #fff;
  box-shadow: 0 0 40px rgba(0,0,0,0.1);
}

.dops-item__more{
	margin-top: 0.8em;
	font-size: 14px;
}
.dops-item__more a{
	color: var(--orange-color);
	font-weight: bold;
}


.dops-item--centered {
  padding: 40px 60px;
}

.dops-item--centered .dops-item__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dops-item__img {
  font-size: 10px;
  width: 10em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10em;
          flex: 0 0 10em;
  height: 8.1em;
  margin-right: 3em;
}

.dops-item__img .img {
  max-height: 100%;
}

.dops-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
}

.dops-item__title {
  font-weight: 700;
}

.dops-item__title:not(:last-child) {
  margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
  .dops-item {
    padding: 30px;
  }
  .dops-item__img {
    font-size: 8px;
  }
}

@media screen and (max-width: 575px) {
  .dops-item {
    padding: 30px;
  }
  .dops-item__img {
    font-size: 7px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 1199px) {
  .single-pricing {
    overflow: auto;
  }
}

.single-pricing table {
  min-width: 600px;
}

.single-pricing thead th, .single-pricing th {
  font-weight: 700;
}

.single-pricing th:first-child, .single-pricing td:first-child {
  text-align: left;
  white-space: nowrap;
}

.single-pricing .pricing-format {
  text-align: center;
}

.single-pricing .pricing-format__hint {
  top: 0;
  -webkit-transform: translate(-33%, -100%);
      -ms-transform: translate(-33%, -100%);
          transform: translate(-33%, -100%);
}

@media screen and (max-width: 1199px) {
  .single-pricing .pricing-format__hint {
    top: 80%;
    -webkit-transform: translate(-33%, 0%);
        -ms-transform: translate(-33%, 0%);
            transform: translate(-33%, 0%);
  }
  .single-pricing .pricing-format__hint::after {
    top: -4px;
    bottom: auto;
  }
}

@media screen and (max-width: 1199px) {
  .metro__row {
    display: block;
    margin: 0;
  }
}

.metro__col {
  margin-bottom: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

@media screen and (max-width: 1199px) {
  .metro__col {
    width: 100%;
    padding: 0;
  }
}

.metro-head {
  margin-bottom: 30px;
}

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

.metro-head__tel {
  width: 312px;
  margin-right: 0;
}

@media screen and (max-width: 1199px) {
  .metro-head__tel {
    margin-right: auto;
  }
}

.metro-item {
  min-height: 402px;
  margin-bottom: 30px;
  padding: 35px 40px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
}

@media screen and (max-width: 575px) {
  .metro-item {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 1199px) {
  .metro-item__row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.metro-item__img {
  font-size: 10px;
  width: 21.7em;
  height: 21.7em;
  margin-right: 5.5em;
  border-radius: 4px;
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .metro-item__img {
    font-size: 8px;
  }
}

@media screen and (max-width: 575px) {
  .metro-item__img {
    font-size: 5px;
  }
}

@media screen and (max-width: 400px) {
  .metro-item__img {
    margin-right: 3em;
  }
}

.metro-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
  position: relative;
}

.metro-item__title {
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .metro-item__title {
    padding-left: 26px;
  }
}

.metro-item__ic {
  position: absolute;
  top: .25em;
  left: -26px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .metro-item__ic {
    left: 0;
  }
}

.metro-item address {
  margin-bottom: 5px;
}

.metro-item__link {
  display: inline-block;
  margin-bottom: 15px;
  color: #f16522;
  font-weight: 700;
}

@media screen and (max-width: 1199px) {
  .metro-item__link {
    margin-bottom: 0;
  }
}

.metro-item__txt {
  clear: both;
}

@media screen and (max-width: 1199px) {
  .metro-item__txt {
    margin-top: 25px;
  }
}

@media screen and (max-width: 400px) {
  .metro-item__title, .metro-item__link {
    font-size: 16px;
  }
}

/* -------------------------------------
	Textile
	------------------------------------- */
@media screen and (max-width: 1199px) {
  .textile-list__row {
    display: block;
    margin: 0;
  }
}

@media screen and (max-width: 1199px) {
  .textile-list__col {
    width: 100%;
    margin-bottom: 50px;
    padding: 0;
  }
}

.textile-item {
  height: 100%;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.textile-item:hover {
  -webkit-box-shadow: 0 0 54px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 54px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 991px) {
  .textile-item {
    padding: 25px;
  }
}

@media screen and (max-width: 767px) {
  .textile-item {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
  }
}

.textile-item__row {
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	    height: 100%;
}
@media screen and (max-width: 991px) {
  .textile-item__row {
    display: block;
    margin: 0;
    position: relative;
  }
}

.textile-item__img {
  font-size: 10px;
  width: 29.8em;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
	background: #ddd;
}
.textile-item__img:before{
	content: '';
	display: block;
	position: absolute;
	background: url(../img/more.svg) center center no-repeat;
	background-size: contain;
	pointer-events: none;
	top: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	transition: 0.3s;
}
.textile-item__img:hover:before{
	transform: scale(1.1);
	filter: drop-shadow(0 0 4px #fff);
}

.textile-item__img a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.textile-item__img .button{
	position: absolute;
	width: auto;
	left: 50%;
	transform: translate(-50%);
	height: 51px;
	bottom: 20px;
	text-align: left;
}

.textile-item__img .img {
  /*max-height: 450px;*/
  -o-object-position: 50% 0;
     object-position: 50% 0;
}

@media screen and (max-width: 1199px) {
  .textile-item__img {
    height: 44.9em;
  }
}

@media screen and (max-width: 991px) {
  .textile-item__img {
    font-size: 8px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .textile-item__img {
    font-size: 7px;
  }
}

@media screen and (max-width: 575px) {
  .textile-item__img {
    font-size: 6px;
  }

	.textile-item__img:before{
		width: 20px;
		right: 10px;
		top: 5px;
	}

}

@media screen and (max-width: 480px) {
  .textile-item__img {
    font-size: 5px;
  }
}

@media screen and (max-width: 360px) {
  .textile-item__img {
    font-size: 4px;
  }
}

.textile-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
  padding: 25px 25px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 991px) {
  .textile-item__content {
    padding: 0;
  }
}

.textile-item__section {
  margin-bottom: 17px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 991px) {
  .textile-item__section {
    border: none;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .textile-item__section {
    margin-bottom: 10px;
  }
}

.textile-item__title {
  font-weight: 700;
  margin-bottom: 0.25em;
}

.textile-item__txt {
  min-height: 66px;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .textile-item__txt:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media screen and (max-width: 480px) {
  .textile-item__txt:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  .textile-item__txt {
    font-size: 12px;
    min-height: auto;
  }
}

.textile-item__table {
  font-size: 11px;
  margin-bottom: -5px;
  min-height: 86px;
}

.textile-item__table th, .textile-item__table td {
  padding: 5px 0;
}

@media screen and (max-width: 1199px) {
  .textile-item__table {
    font-size: 16px;
    min-height: 0;
  }
}

@media screen and (max-width: 767px) {
  .textile-item__table {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .textile-item__table {
    font-size: 12px;
  }
}

.textile-item__btns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: auto;
}

.textile-item__btns .button--lg {
  padding-left: 1.6em;
  padding-right: 1.6em;
}

.textile-item__btns .button {
  /*color: #f16522;*/
}
.textile-item__btns .button--violet {
	padding-left: 15px;
	padding-right: 15px;
}

.textile-item__btns .button:first-child {
  margin-right: 20px;
}

.textile-item__btns .button:hover {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .textile-item__btns {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.textile-item__link {
  margin-right: 22px;
}

@media screen and (max-width: 991px) {
  .textile-order-0 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 8px;
    min-height: 45em;
    margin-left: 32.875em;
    margin-bottom: 30px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .textile-order-0 {
    font-size: 7px;
  }
}

@media screen and (max-width: 575px) {
  .textile-order-0 {
    font-size: 6px;
  }
}

@media screen and (max-width: 480px) {
  .textile-order-0 {
    font-size: 5px;
  }
}

@media screen and (max-width: 360px) {
  .textile-order-0 {
    font-size: 4px;
  }
}

.item-color {
  font-size: 10px;
  display: inline-block;
  margin: .5em 1em 1em 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  border: 1px solid transparent;
  background-repeat: no-repeat;
  -webkit-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
}

@media screen and (max-width: 1199px) {
  .item-color {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .item-color {
    font-size: 12px;
  }
}

.item-color.is-active {
  position: relative;
}

.item-color.is-active::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  border: 2px solid #f16522;
  border-radius: 50%;
}

/* -------------------------------------
	Card
	------------------------------------- */
@media screen and (max-width: 1199px) {
  .card__row {
    display: block;
    margin: 0;
  }
}

@media screen and (max-width: 1199px) {
  .card__col {
    width: 100%;
    padding: 0;
  }
}

.card-screen {
  position: relative;
}

.card-img {
  position: relative;
  font-size: 10px;
  height: 78.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.card-img .img {
  max-height: 100%;
}

@media screen and (max-width: 1199px) {
  .card-img {
    font-size: 8px;
  }
  .card-img .card-subtitle {
    max-width: 100px;
  }
}

@media screen and (max-width: 991px) {
  .card-img {
    font-size: 7px;
  }
}

@media screen and (max-width: 767px) {
  .card-img {
    font-size: 6px;
  }
}

@media screen and (max-width: 575px) {
  .card-img {
    font-size: 5px;
  }
}

.card-img .item-colors {
  position: absolute;
  top: 0;
  left: 0;
}

.card-img .item-color {
  font-size: 14px;
  display: block;
}

.card-params {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}

.card-params__ic {
  margin-bottom: 15px;
}

.card-params__item {
  margin-bottom: 25px;
  padding: 18px 16px 12px;
  background: #fff;
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
}

@media screen and (max-width: 1199px) {
  .card-params {
    position: relative;
  }
  .card-params__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
  }
  .card-params__col {
    width: 50%;
    padding: 0 15px;
  }
  .card-params__item {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-params__ic {
    margin: 0 20px 0 0;
  }
  .card-params__ic .img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@media screen and (max-width: 575px) {
  .card-params__row {
    margin: 0 -7px;
  }
  .card-params__col {
    padding: 0 7px;
  }
  .card-params__item {
    padding: 14px 12px 8px;
  }
  .card-params__ic {
    margin-right: 15px;
  }
  .card-params__ic .img {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.card-descr {
  position: relative;
  padding: 35px;
  background: #fff;
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
}

@media screen and (max-width: 575px) {
  .card-descr {
    margin-top: 30px;
    padding: 20px 15px;
  }
}

@media screen and (max-width: 575px) {
  .card .s-hero__frame {
    margin-bottom: 30px;
  }
}

.card-subtitle {
  margin-bottom: 1em;
  font-weight: 700;
}

.card-prices {
  margin-top: 20px;
  padding: 27px 30px;
  background: #f7f7f7;
  border-radius: 4px;
}

.card-prices__title {
  font-weight: 700;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 575px) {
  .card-prices {
    width: calc(100% + 30px);
    margin-bottom: 30px;
    margin-left: -15px;
    padding: 15px;
  }
}

.card-table th, .card-table td {
  width: 66px;
  padding: 5px 0;
  text-align: center;
}

.card-table th:first-child, .card-table td:first-child {
  width: 181px;
  padding-right: 5px;
  text-align: left;
}

@media screen and (max-width: 1199px) {
  .card-table {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .card-table {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .card-table {
    font-size: 12px;
  }
}

.card-sizes {
  margin: 15px 0;
  padding: 27px 30px;
}

@media screen and (max-width: 575px) {
  .card-sizes {
    padding: 0;
  }
}

.card-padding {
  padding-left: 30px;
}

@media screen and (max-width: 1199px) {
  .card-padding {
    padding-left: 0;
  }
}

.card-hint {
  max-width: 540px;
  margin-top: 24px;
}

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

.card-hint__img {
  width: 78px;
  height: 78px;
  margin-right: 35px;
}

.card-hint__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1199px) {
  .card-hint {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .card-hint {
    max-width: 100%;
  }
  .card-hint__img {
    display: none;
  }
}

.card-btn {
  margin-top: 40px;
}

.card-btn .button:first-child {
  margin-right: 10px;
  margin-bottom: 10px;
}



@media screen and (max-width: 1199px) {
  .card-btn {
    text-align: center;
  }
}

/* -------------------------------------
	Price
	------------------------------------- */
.calc {
  counter-reset: title;
}

.calc .title-1 {
  margin-bottom: .6em;
}

.calc__box {
  padding: 34px 55px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
}

.calc__box .title-2 {
  margin-bottom: .7em;
}

@media screen and (max-width: 575px) {
  .calc__box {
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 15px;
    border-radius: 0;
  }
}

.calc__row {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0 -8px;
}

@media screen and (max-width: 1199px) {
  .calc__row {
    display: block !important;
    margin: 0;
  }
}

.calc__col {
  width: 33.33333%;
  margin-bottom: 18px;
  padding: 0 8px;
}

@media screen and (max-width: 1199px) {
  .calc__col {
    width: 100%;
    padding: 0;
  }
}

.calc .cutline {
  margin-bottom: 18px;
  padding: 25px 40px;
  background: #f7f7f7;
  border-radius: 4px;
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .calc .cutline {
    padding: 40px;
  }
}

@media screen and (max-width: 575px) {
  .calc .cutline {
    padding: 15px;
  }
}

.calc .print_method_switcher {
  margin: 0 -40px;
}

@media screen and (max-width: 1199px) {
  .calc .print_method_switcher {
    margin: 0;
  }
}

.calc .print_method_switcher .calc__col {
  margin-bottom: 30px;
  padding: 0 40px;
}

@media screen and (max-width: 1199px) {
  .calc .print_method_switcher .calc__col {
    padding: 0;
  }
}

@media screen and (max-width: 575px) {
  .calc .print_method_switcher .calc__col {
    margin-bottom: 0;
  }
}

.calc__elem {
  height: 100%;
  padding: 25px 30px 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

@media screen and (max-width: 1199px) {
  .calc__elem {
    height: auto;
  }
  .calc__elem label {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .calc__elem {
    padding: 15px;
  }
}

@media screen and (max-width: 380px) {
  .calc__elem {
    padding: 10px 0;
    border: none;
  }
}

.calc .title {
  margin-bottom: 0.5em;
  font-weight: 700;
}

.calc .title .value {
  display: inline-block;
  margin-left: 0.2em;
}

.calc .title--margin {
  margin-bottom: 1em;
}

.calc .title--nomargin {
  margin-bottom: 0;
}

.calc__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px !important;
}

.calc__title::before {
  counter-increment: title;
  content: counter(title);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  line-height: 1;
  background: #f16522;
  border-radius: 4px;
  color: #fff;
}

@media screen and (max-width: 575px) {
  .calc__title {
    margin-bottom: 15px !important;
  }
}

.calc__radiotabs {
  border-radius: 4px;
  border: 1px solid #eaeaea;
  overflow: hidden;
}

.calc__radiotabs label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 51px;
  margin: 0;
  padding: .5em 1em;
  font-size: 14px;
  background-color: #f7f7f7;
  border-right: 1px solid #eaeaea;
  white-space: nowrap;
}

.calc__radiotabs label:last-child {
  border-right: 0;
}

@media screen and (max-width: 1199px) {
  .calc__radiotabs {
    margin-left: 60px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .calc__radiotabs label {
    font-size: 18px;
  }
}

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

@media screen and (max-width: 370px) {
  .calc__radiotabs label {
    padding: .5em .8em;
  }
}

.calc .t_short_switcher {
  margin-top: -15px;
}

@media screen and (min-width: 1200px) {
  .calc .t_short_switcher {
    width: 100%;
  }
}

.calc .t_short_switcher label {
  width: 25%;
  height: 102px;
  padding-top: 70px;
  background-repeat: no-repeat;
  background-position: 50% 15px;
  background-size: auto 41px;
}

@media screen and (max-width: 575px) {
  .calc .t_short_switcher {
    margin-top: 0;
    flex-wrap: wrap;
  }
  .calc .t_short_switcher label {
  	width: 50%;
  	border-bottom: 1px solid #eaeaea;
  }
}

.calc .color_switcher {
  max-width: 270px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.calc .color_switcher label {
  display: block;
  margin: 0 2em 2em 0;
  font-size: 10px;
  width: 2.1em;
  height: 2.1em;
  border-radius: 50%;
  background-repeat: no-repeat;
}

.calc .color_switcher label::before {
  border-radius: 50%;
}

.calc .color_switcher .white {
  border: 1px solid rgba(0, 0, 0, 0.17);
}

@media screen and (max-width: 1199px) {
  .calc .color_switcher {
    max-width: 100%;
    margin-left: 60px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .calc .color_switcher label {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .calc .color_switcher {
    margin-left: 0;
  }
}


.woocommerce-cart-form .quantity ,
.calc .calculator_range {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  font-weight: bold;
  border-radius: 0;
}

.woocommerce-cart-form .quantity .text ,
.calc .calculator_range .value {
  width: 8em;
  margin: 0;
  padding: .5em 1em;
  font-size: 17px;
  background-color: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-align: center;
  height: 100%;
  font-weight: bold;
	max-width: 100px;
}

.woocommerce-cart-form .quantity .minus, .woocommerce-cart-form .quantity .plus ,
.calc .calculator_range .minus, .calc .calculator_range .plus {
	width: 44px;
	height: 51px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: #f7f7f7;
	cursor: pointer;
	flex-grow: 0;
	flex-shrink: 0;
}

.woocommerce-cart-form .quantity .minus::after, .woocommerce-cart-form .quantity .plus::after ,
.calc .calculator_range .minus::after, .calc .calculator_range .plus::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
}

.woocommerce-cart-form .quantity .minus::after ,
.calc .calculator_range .minus::after {
  background-image: url("../img/ic-minus.svg");
}

.woocommerce-cart-form .quantity .plus::after ,
.calc .calculator_range .plus::after {
  background-image: url("../img/ic-plus.svg");
}

@media screen and (max-width: 1199px) {
  .calc .calculator_range {
    margin-left: 60px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .calc .calculator_range .value {
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .calc .calculator_range {
    margin-left: 0;
  }
}

.calc input[type="number"]::-webkit-inner-spin-button,
.calc input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.calc input[type="number"] {
  -moz-appearance: textfield;
}

.calc__buttonFormShow:disabled {
  opacity: 0.5;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: wait;
}

.calc .print_method_switcher label {
  text-align: left;
}

.calc .print_method_switcher label::before {
  display: none;
}

.calc .price {
  font-weight: 700;
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .calc .price {
    font-size: 20px;
  }
}

.calc-footer__row {
  position: relative;
  text-align: center;
}

.calc-footer__txt {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 40%;
}

@media screen and (max-width: 1199px) {
  .calc-footer {
    padding-top: 30px;
  }
  .calc-footer__txt {
    max-width: 100%;
    position: static;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 575px) {
  .calc-footer {
    padding-bottom: 15px;
  }
  .calc-footer__txt {
    margin-bottom: 0;
    text-align: left;
  }
  .calc-footer .button {
    width: 100%;
  }
}

.calc__disclaimer {
  margin-top: 30px;
}

.calc__disclaimer p {
  margin: 0;
}

.calc .mobile-reverse {
  display: none;
}

.c-rezult span {
  display: inline-block;
  margin: 0 0.3em 0 0;
}

#calculator .print_method_switcher input:checked ~ label::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  border: 1px solid #f16522;
  z-index: 1;
  border-radius: 4px;
}

#service .calc__elem {
  position: relative;
}

#service .calc__elem label {
  position: static;
}

#calc__buttonFormShow:disabled {
  background: transparent;
  color: #f16522;
}

.calc__wrapPriceHide {
  display: none;
}

/* -------------------------------------
	Testimonials
	------------------------------------- */
@media screen and (max-width: 1199px) {
  .testimonials__row {
    display: block;
  }
}

.testimonials__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
}

.testimonials-item {
  padding: 40px 20% 40px 45px;
  margin-bottom: 30px;
  background: #fff;
  -webkit-box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  position: relative;
}

.testimonials-item::after {
  content: '';
  display: block;
  font-size: 10px;
  width: 3.9em;
  height: 2.7em;
  position: absolute;
  z-index: 0;
  top: 35px;
  right: 40px;
  background-image: url("../img/ic-quotes.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  opacity: 0.2;
}

.testimonials-item--positive::after {
  background-image: url("../img/ic-quotes-green.svg");
  opacity: 1;
}

.testimonials-item--negative::after {
  background-image: url("../img/ic-quotes-red.svg");
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .testimonials-item {
    padding: 30px;
  }
}

@media screen and (max-width: 575px) {
  .testimonials-item {
    padding: 20px 15px;
  }
  .testimonials-item::after {
    right: 15px;
    top: 15px;
    font-size: 8px;
  }
}

.testimonials-item__avatar {
  font-size: 10px;
  width: 8em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8em;
          flex: 0 0 8em;
  height: 8em;
  margin-right: 4em;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.testimonials-item__avatar .img {
  max-height: 100%;
}

@media screen and (max-width: 767px) {
  .testimonials-item__avatar {
    position: absolute;
    top: 30px;
    left: 30px;
  }
}

@media screen and (max-width: 575px) {
  .testimonials-item__avatar {
    top: 15px;
    left: 15px;
    font-size: 8px;
  }
}

.testimonials-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
}

.testimonials-item__title {
  font-weight: 600;
  margin-bottom: .3em;
}

@media screen and (max-width: 767px) {
  .testimonials-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 80px;
    margin-bottom: 20px;
    margin-left: 100px;
    max-width: 60%;
  }
}

@media screen and (max-width: 575px) {
  .testimonials-item__title {
    min-height: 64px;
    margin-left: 84px;
    margin-bottom: 15px;
  }
}

.testimonials-answer {
  max-width: 838px;
  margin-left: auto;
}

.testimonials-answer::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 0;
  left: 42px;
  top: -7px;
  background: #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.testimonials-answer::after {
  display: none;
}

@media screen and (min-width: 1200px) {
  .testimonials-answer {
    padding-right: 40px;
  }
}

@media screen and (max-width: 1199px) {
  .testimonials-answer {
    max-width: 90%;
    margin-top: -10px;
  }
}

.testimonials__images {
  margin-bottom: -16px;
}

.testimonials__image {
  font-size: 10px;
  width: 10.4em;
  height: 10.4em;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 1.6em 1.6em 0;
}

@media screen and (max-width: 575px) {
  .testimonials__image {
    font-size: 7px;
  }
}

.testimonials-more__txt {
  display: none;
}

.testimonials-more__btn {
  display: inline-block;
  border-bottom: 1px dashed #f16522;
  -webkit-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
}

.testimonials-more__btn:hover {
  text-decoration: none;
  border-color: transparent;
  cursor: pointer;
}

.testimonials-sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 301px;
          flex: 0 0 301px;
  max-width: 301px;
  margin-left: 30px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (max-width: 1199px) {
  .testimonials-sidebar {
    position: relative;
    max-width: 100%;
    margin: 0 0 35px;
  }
}

.testimonials-sidebar__btns .button {
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .testimonials-sidebar__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .testimonials-sidebar__btns .button {
    width: 40%;
  }
}

@media screen and (max-width: 575px) {
  .testimonials-sidebar__btns {
    display: block;
  }
  .testimonials-sidebar__btns .button {
    width: 100%;
  }
  .testimonials-sidebar__btns .filter-btn {
    margin-top: 20px;
  }
}

.testimonials-sidebar__section {
  margin-bottom: 25px;
  padding: 30px 45px;
  background: #f7f7f7;
  border-radius: 4px;
}

@media screen and (max-width: 1199px) {
  .testimonials-sidebar__section {
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
  }
}

.testimonials-sidebar__title {
  margin-bottom: 1em;
  font-weight: 700;
}

@media screen and (max-width: 1199px) {
  .testimonials-filters {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    background: #f7f7f7;
    padding: 45px;
  }
  .testimonials-filters.is-visible {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .testimonials-filters {
    width: calc(100% + 30px);
    left: -15px;
  }
}

@media screen and (max-width: 575px) {
  .testimonials-filters {
    padding: 30px 15px;
  }
}

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

.testimonials-filters__group {
  width: 100%;
  margin-top: 28px;
}

@media screen and (max-width: 1199px) {
  .testimonials-filters__group {
    width: 50%;
    margin: 0 0 30px;
  }
  .testimonials-filters__group:first-child {
    margin-top: 0;
  }
}

@media screen and (max-width: 360px) {
  .testimonials-filters__group {
    width: 100%;
  }
}

.testimonials-filters__order {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (max-width: 1199px) {
  .testimonials-filters__order {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.testimonials-filters .checkbox {
  margin-bottom: 6px;
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .testimonials-filters .checkbox {
    font-size: 14px;
  }
}

@media screen and (max-width: 425px) {
  .testimonials-filters .checkbox .checkbox__wrap {
    margin-right: 10px;
  }
}

.g-raiting:not(:last-child) {
  margin-bottom: 15px;
}

.g-raiting__ic {
  width: 29px;
  height: 36px;
  margin-right: 16px;
}

.g-raiting__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
}

.g-raiting__star {
  display: inline-block;
  font-size: 10px;
  width: 1.3em;
  height: 1.3em;
  margin-right: .2em;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
}

.g-raiting__val {
  margin-right: 8px;
  font-weight: 700;
}

.filter-btn {
  background: #f7f7f7;
  color: #000;
  border: none;
}

.ic-filter {
  display: inline-block;
  font-size: 10px;
  width: 2.7em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.7em;
          flex: 0 0 2.7em;
  height: 2.9em;
  margin-right: 2.4em;
  background: url("../img/ic-filters.svg") no-repeat 50% 50%/100%;
}

@media screen and (max-width: 767px) {
  .ic-filter {
    font-size: 7px;
  }
}

/* -------------------------------------
	Blog
	------------------------------------- */
.blog-hero__banner {
  height: 460px;
  padding: 35px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 4px;
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 1;
}

.blog-hero__banner::before {
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
  background: -o-linear-gradient(top, transparent, #000);
  background: linear-gradient(180deg, transparent, #000);
  opacity: 0.5;
}

.blog-hero__banner .title-2 {
  margin: auto 0 0;
}

.blog-hero__banner .blog-tag {
  position: absolute;
  right: 60px;
  top: 35px;
}

@media screen and (max-width: 991px) {
  .blog-hero__banner {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}

@media screen and (max-width: 767px) {
  .blog-hero__banner {
    height: 400px;
    padding: 30px 15px;
  }
}

@media screen and (max-width: 575px) {
  .blog-hero__banner {
    height: 300px;
  }
}

.blog-date {
  display: inline-block;
  padding: 0.35em 0.8em;
  background: #f16522;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
}

.blog-tag {
  display: inline-block;
  padding: .2em 1.2em;
  background: #fff;
  border-radius: 30px;
  color: rgba(0, 0, 0, 0.7);
}

.blog-thumb {
  display: block;
  font-size: 10px;
  width: 40.9em;
  height: 25.1em;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.blog-thumb img{
	min-height: 230px;
}

.blog-thumb::after {
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
  background: -o-linear-gradient(top, transparent, #000);
  background: linear-gradient(180deg, transparent, #000);
  opacity: 0.5;
}

.blog-categories {
  padding: 40px 0;
  background: #f7f7f7;
}

.blog-categories__slider-wrap {
  position: relative;
}

.blog-category {
  display: block;
  position: relative;
}

.blog-category__title {
  max-width: 100%;
  position: absolute;
  left: 30px;
  bottom: 25px;
  margin: 0;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .blog-category__img {
    font-size: 9px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 991px) {
  .blog-category__img {
    font-size: 9px;
  }
}

@media screen and (max-width: 767px) {
  .blog-category__img {
    font-size: 6.6px;
  }
  .blog-category__title {
    left: 15px;
    bottom: 15px;
  }
}

@media screen and (max-width: 575px) {
  .blog-category__img {
    font-size: 10px;
    width: 100%;
    height: auto;
  }
  .blog-category__title {
    right: 15px;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .blog-list__row {
    display: block;
    margin: 0 0 -25px;
  }
}

.blog-list__col {
  width: 33.33333%;
}

@media screen and (max-width: 1199px) {
  .blog-list__col {
    width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .blog-list__col {
    width: 100%;
    margin-bottom: 50px;
    padding: 0;
  }
}

.blog-list__img {
  margin-bottom: 25px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .blog-list__img .blog-thumb {
    width: 100%;
    height: auto;
  }
}

.blog-list__img .blog-tag, .blog-list__img .blog-date {
  position: absolute;
  z-index: 1;
  left: 25px;
}

.blog-list__img .blog-tag {
  top: 25px;
}

.blog-list__img .blog-date {
  bottom: 25px;
}

.blog-list__title {
  margin-bottom: 0.3em;
  font-weight: 700;
}

/* Article */
.article {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .article {
    font-size: 22px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  .article {
    font-size: 18px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 575px) {
  .article {
    font-size: 16px;
    line-height: 1.5;
  }
}

.article h1, .article h2, .article h3, .article h4, .article h5, .article h6, .article p, .article ul, .article ol, .article table {
  margin-bottom: 0;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.cat-desc.article h1, .cat-desc.article h2, .cat-desc.article h3, .cat-desc.article h4, .cat-desc.article h5, .cat-desc.article h6, .cat-desc.article p, .cat-desc.article ul, .cat-desc.article ol, .cat-desc.article table {
  max-width: 100%;
  margin: 20px 0px;
}

.cat-desc{
  margin: 50px 0px;
}

.article p {
  color: rgba(0, 0, 0, 0.7);
}

.article ul, .article ol {
  padding: 0;
  list-style: none;
}

.article ul li, .article ol li {
  position: relative;
  padding-left: 1.8em;
}

.article ul li:not(:last-child), .article ol li:not(:last-child) {
  margin-bottom: .5em;
}

.article ul li::before, .article ol li::before {
  position: absolute;
  left: 0;
  z-index: 0;
}

.article ul li::before {
  content: '';
  display: block;
  font-size: .625em;
  width: 1.4em;
  height: 1.4em;
  top: .4em;
  background: url("../img/ic-plus-accent.svg") no-repeat 50% 50%/100%;
}

.article ol {
  counter-reset: li;
}

.article ol li::before {
  content: counter(li) ".";
  counter-increment: li;
  font-weight: 700;
  color: #f16522;
}

.article figure, .article img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.article a {
  color: #f16522;
}

.article-title .title-1 {
  margin-right: auto;
}

.article-back {
  margin-bottom: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}

.article-back::before {
  content: '';
  display: block;
  font-size: .6em;
  width: .9em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 .9em;
          flex: 0 0 .9em;
  height: 1.6em;
  margin-right: 1em;
  background: url("../img/ic-arrow.svg") no-repeat 50% 50%/100%;
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

.article-width {
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.article-header {
  position: relative;
  margin-bottom: 50px;
  padding: 70px 0;
  background: #f7f7f7;
  border-radius: 4px;
}

@media screen and (max-width: 1199px) {
  .article-header {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .article-header {
    padding: 30px 15px;
  }
}

.article-header p {
  color: #000;
}

.article-header__author {
  max-width: 310px;
  position: absolute;
  top: 48px;
  left: 44px;
}

@media screen and (max-width: 1199px) {
  .article-header__author {
    position: static;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
  }
}

.article blockquote {
  padding: 70px 80px 70px 326px;
  background: #f7f7f7;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.025em;
  position: relative;
}

.article blockquote::before {
  content: '';
  display: block;
  font-size: 10px;
  width: 3.9em;
  height: 2.7em;
  position: absolute;
  left: 211px;
  top: 70px;
  background: url("../img/ic-quotes-accent.svg") no-repeat 50% 50%/100%;
}

@media screen and (max-width: 1199px) {
  .article blockquote {
    padding: 50px 151px;
    font-size: 24px;
    line-height: 1.25;
  }
  .article blockquote::before {
    position: static;
    margin-bottom: 2em;
  }
}

@media screen and (max-width: 991px) {
  .article blockquote {
    padding: 50px 30px;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .article blockquote {
    font-size: 20px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 575px) {
  .article blockquote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.35;
  }
}

.article-slider-wrap {
  position: relative;
}

.article-frame {
  overflow: hidden;
  position: relative;
  padding-top: 56%;
}

.article-frame iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.article-rec {
  position: relative;
  padding-top: 50px;
}

.article-rec::before {
  content: '';
  display: block;
  width: 100%;
  max-width: 630px;
  height: 1px;
  position: absolute;
  z-index: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  background: #000;
  opacity: 0.2;
}

/* -------------------------------------
	Contacts
	------------------------------------- */
.contacts-hero__block {
  padding: 35px 50px 25px;
  background-color: #f7f7f7;
  border-radius: 4px;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .contacts-hero__block {
    padding: 15px;
  }
}

@media screen and (max-width: 575px) {
  .contacts-hero__block {
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
  }
}

.contacts-hero {
	padding-top: 30px;
}
.contacts-hero .title-2 {
  margin-bottom: .3em;
}

.contacts-title-2{
	text-align: center;
	font-size: 34px;
	font-family: "Arvo", "ProximaNova", sans-serif;
}
.contacts-title-2 span{
	margin: 0 auto;
	background: var(--orange-color);
	padding: 0 0.3em;
	color: #fff;
}
.contacts-title-3{
	font-size: 34px;
	font-family: "Arvo", "ProximaNova", sans-serif;
	margin-bottom: 1em;
}
.contacts-title-3 span{
	font-size: 18px;
	font-family: "ProximaNova", sans-serif;
	font-weight: bold;
}


@media screen and (max-width: 1199px) {
  .contacts-hero .title-2 {
    text-align: center;
  }
  .contacts-hero .title-2 + .txt-2 {
    text-align: center;
  }
}

.contacts-hero .contacts__addr {
  margin: 10px 0 0;
}

.contacts-hero .metro-head__tel .txt-2 {
  margin-left: .5em;
}

.contacts-hero .metro-item__link {
  margin: 3px 0 0;
}

@media screen and (min-width: 1200px) {
  .contacts-hero__print .contacts__subrow {
    margin: 0;
  }
  .contacts-hero__print .contacts__subcol {
    padding: 0 25px;
  }
}

.contacts-hero__print .metro-head__tel {
  margin-top: 15px;
}

.contacts-hero__opt .metro-item__link {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .contacts-hero .metro-head__tel {
    width: auto;
  }
  .contacts-hero .socials {
    font-size: 8px;
  }
}

@media screen and (max-width: 575px) {
  .contacts-hero .txt-1 {
    font-size: 16px;
  }
  .contacts-hero .metro-item__title {
    font-size: 14px;
  }
  .contacts-hero .metro-item__ic {
    top: .05em;
  }
  .contacts-hero .socials {
    width: 100%;
    margin-top: 5px;
  }
  .contacts-hero .socials li {
    margin: 0 1.6em 0 0;
  }
  .contacts-hero .metro-item__link {
    margin-top: 15px;
  }
  .contacts-hero .metro-head__tel .txt-2 {
    display: block;
    width: 100%;
    margin: 0;
  }
}

.contacts-soc__inner {
  padding: 65px;
  text-align: center;
  background: #141414;
  border-radius: 4px;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .contacts-soc__inner {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 575px) {
  .contacts-soc__inner {
    width: calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0;
  }
}

.contacts-soc .socials {
  font-size: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contacts-soc .socials li {
  margin: 0 0.8em;
}

.contacts-soc .socials a:hover {
  -webkit-filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.75));
          filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.75));
}

@media screen and (max-width: 1199px) {
  .contacts-soc .socials {
    font-size: 5.2vw;
  }
}

.contacts-coop__row {
  margin: 90px -15px 0;
}

@media screen and (max-width: 1199px) {
  .contacts-coop__row {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

.contacts-coop__col {
  width: 33.33333%;
  margin-bottom: 30px;
  padding: 0 15px;
}

@media screen and (max-width: 1199px) {
  .contacts-coop__col {
    width: 100%;
    margin-bottom: 90px;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .contacts-coop__col {
    margin-bottom: 70px;
  }

	.contacts-title-2,
	.contacts-title-3{
		font-size: 24px;
	}
}



.coop-item {
  height: 100%;
  padding: 70px 55px 40px;
  background: #f7f7f7;
  border-radius: 4px;
  position: relative;
}

.coop-item__img {
  font-size: 10px;
  width: 10em;
  height: 10em;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -5em;
}

.coop-item__title {
  margin-bottom: .6em;
}

.coop-item__email {
  color: #f16522;
}

@media screen and (max-width: 1199px) {
  .coop-item {
    max-width: 500px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .coop-item__img {
    left: 50%;
    margin-left: -5em;
  }
}

@media screen and (max-width: 767px) {
  .coop-item {
    padding: 50px 30px 20px;
  }
  .coop-item__img {
    font-size: 8px;
  }
}

/* -------------------------------------
	Modules
	------------------------------------- */
.modal {
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  max-width: 626px;
  padding: 42px 93px;
}

.modal .close {
  width: 22px;
  height: 22px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjU1MTQ2NzlDODlDRTExRTc4M0Q3Rjg2NkY4MjYxQjEzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjU1MTQ2NzlEODlDRTExRTc4M0Q3Rjg2NkY4MjYxQjEzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NTUxNDY3OUE4OUNFMTFFNzgzRDdGODY2RjgyNjFCMTMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NTUxNDY3OUI4OUNFMTFFNzgzRDdGODY2RjgyNjFCMTMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5jViEEAAAAu0lEQVR42sTVwQqDMAwG4FiPsnfdZS8w8LgxBruqVV9vr+D2B8oIUjVtCiv8UhS/Q5PQioha5ISckYVsq0aeyJvC5oN4xBnROVg3Cpg34hLtpGHB3RZqwQ/RHFyNpuD8bkpBNXg2uodzRgu6hfsSaAxPKtRf1vpMu1Lnuy6Us+J7LcX7PreHj/pU4r22mNox5W+DBk+efQ1eZ6AxfJD/WtDYEP3wV6ExlfijwuOKNMilwGXK+J0v068AAwBh61uC6MfcCwAAAABJRU5ErkJggg==);
  cursor: pointer;
  position: absolute;
  right: 35px;
  top: 29px;
}

.modal .title {
  font-family: Arvo,sans-serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: .5em;
}

.modal .radiotabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: none;
  font-size: 0;
}

@media screen and (max-width: 575px) {
  .modal .radiotabs {
    display: block;
  }
}

.modal .radiotabs.row-3 label {
  width: 33.33333%;
}

.modal .radiotabs label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 51px;
  margin: 0;
  padding: 16px 20px;
  font-size: 14px;
  color: #000;
  background: #f7f7f7;
  border: 1px solid #eaeaea;
  border-radius: 3px;
}

.modal .radiotabs label::before {
  display: none;
}

.modal .radiotabs label:hover {
  background-color: #f3f3f3;
}

@media screen and (max-width: 575px) {
  .modal .radiotabs label {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .modal .radiotabs label:last-child {
    margin-bottom: 0;
  }
}

.modal .radiotabs > input:checked + label {
  z-index: 1;
  border: 2px solid #f16522;
}

.modal .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 207px;
  margin: 20px auto 0;
}

.modal textarea {
  height: 114px;
  resize: none;
}

.modal ::-webkit-input-placeholder, .modal ::-moz-placeholder, .modal :-moz-placeholder, .modal :-ms-input-placeholder {
  color: #000;
}

.modal .select {
  position: relative;
}

.modal .select:after {
  content: '';
  position: absolute;
  display: block;
  right: 1px;
  width: 21px;
  top: 0;
  bottom: 0;
  height: 10px;
  margin: auto;
  pointer-events: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAGCAYAAAAVMmT4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjE1OEEyMTQzOEMwNzExRTdCMUIxRDVFQTlENEFDRjI1IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjE1OEEyMTQ0OEMwNzExRTdCMUIxRDVFQTlENEFDRjI1Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTU4QTIxNDE4QzA3MTFFN0IxQjFENUVBOUQ0QUNGMjUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTU4QTIxNDI4QzA3MTFFN0IxQjFENUVBOUQ0QUNGMjUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7XxCNfAAAAYUlEQVR42mJmYGAIBGJOIH7BgBsYArEliDEJiJ8BsT0OhfZQeZA6BiYgbgbi90AciaYwEireDFUHBzlA/AGI84CYC4hzofwcXG4LAuK7QLwPSgcxEABOQLwbiF3QJQACDAAGGRCypD0wOAAAAABJRU5ErkJggg==);
  background-color: #f8f8f8;
  background-position: left center;
  background-repeat: no-repeat;
}

.modal .pagination {
  height: 9px;
  text-align: center;
  margin-top: 25px;
  display: block;
  position: relative;
  margin-bottom: 25px;
}

.modal .pagination ul {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.modal .pagination li {
  list-style: none;
  height: 9px;
  width: 9px;
  display: inline-block;
  -webkit-box-shadow: inset 0 0 0 1px #7f7f7f;
          box-shadow: inset 0 0 0 1px #7f7f7f;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  position: relative;
}

.modal .pagination li:after {
  content: '';
  position: absolute;
  display: block;
  left: -50%;
  top: -50%;
  right: -50%;
  bottom: -50%;
}

.modal .pagination li.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #f66b19;
}

@media screen and (max-width: 575px) {
  .modal {
    padding: 8px 16px 30px;
  }

  .modal .title {
    width: 68%;
    margin: 14px auto 30px;
    line-height: 33px;
    font-size: 30px;
  }
  .modal .half {
    width: 100%;
  }
  .modal .half + .clear {
    display: none;
  }


	.blog-list__img .blog-tag, .blog-list__img .blog-date {
	  left: 15px;
	}
	.blog-list__img .blog-tag {
		top: 15px;
	}
	.blog-list__img .blog-date {
		bottom: 15px;
		padding: 0.15em 0.4em;
	}

}

#reviews_content .filter .link.mood.checked div {
  font-weight: bolder;
}

#reviewform form {
  position: relative;
}

#reviewform form .sending {
  position: absolute;
  width: 100%;
  height: 63%;
  background-color: #fff;
  opacity: 0.8;
  z-index: 53;
  text-align: center;
  padding-top: 45%;
  font-size: 1.5em;
  display: none;
}

#reviews_content .quote.noava .info, #reviews_content .quote.noava .text, #reviews_content .quote.noava .show_more {
  margin-left: 85px !important;
}

@media (max-width: 690px) {
  #reviews_content .quote.noava .info, #reviews_content .quote.noava .text, #reviews_content .quote.noava .show_more {
    margin-left: 30px !important;
  }
}


@media screen and (max-width: 767px) {
  .pricing-tables {
    overflow: auto;
  }
  .pricing-table table {
    width: 500px;
  }
  .pricing-format {
    padding-right: 15px;
    width: 90px;
  }
}








/* NEW SLIDER STYLE */
.double-img {
  height: 100%;
}

.double-img .img--cover {
  -o-object-position: 50% 5%;
     object-position: 50% 5%;
}

.double-img .img {
  height: calc(50% - 4px);
}

.double-img .img:last-child {
  margin-top: 0.8em;
}

@media screen and (max-width: 991px) {
  .double-img .img {
    height: calc(50% - 2.5px);
  }
  .double-img .img + .img {
    margin-top: 5px;
  }
}

.wpcf7-form .agree {
	display:none;
}

.page-template-default .site-main{
	padding-top: 70px;
	padding-bottom: 70px;
}


.testimonials-answer .testimonials-item__avatar img{
	height: 60%;
	width: 60%;
	object-fit: contain;
}


.wpcf7-form-control-wrap.attachment-0{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	cursor: pointer;
}

.wpcf7 form .wpcf7-response-output, .wpcf7-not-valid-tip {
	margin: 0;
	font-size: 0.8em;
}


.icon.wash {
  width: 100px;
  height: 69px;
  background-image: url(data:image/png;base64,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);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
}
.icon.no-whiter {
  width: 98px;
  height: 75px;
  background-image: url(data:image/png;base64,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);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
}
.icon.iron {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 90px;
  height: 67px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAACGCAMAAABDoVCmAAAAzFBMVEX////////////////ocRbobxPobRHnawzobA798ejnaQnpcxnrfy3//vztjUX1vpT97+T/+/fmZgTztYXuk033yafqeiX51LnvnV7rgzT//Pn74s/pdyDzsH775tbyrXftjEL64c3nZwb0uY3vmlnqfCn++fTpdR386dr+9/H63sn52L/siT3+9e7628T40rXshjj98+v3zKvtkEn97eH4z7DxpGnwoWT869775NP0t4nxp2/0vJHullL1wZnyrnryqnP2xJ7wnmD2xqL4YpSyAAAAA3RSTlPu8t4e60WYAAAMBUlEQVR42u2caXeyOhDHn3sliwFUXFAQNwRBRXDfd7//d7rYElwq6G21Dz2n/9OXKf5IJjOTmeiff//8OP37J/YD9eef2I/TP39+4FT/+YW+rV/oX+gQ/UL/QofoF/oX+nmSG4LMhw14EFropYbD1LdoOrPbdrnDfxman47qmW9SqTLeL5LFJ0DbW0vXde47pIsKI2oj+cvQcl5j098klajptLVrPAG6YKju475FCKXTUr33dej2RAeQ+R6xDCFcqcw/Bxow3ySE9EW7+cOgMRIL/fgPg4bIGCSnPwwaYCBtZl+H3osIwRcLgJN9KOPWM1weUQl6rTD07YMwWvsJ5iFCDMGLxZygYdYRvhrGa3NtMMi+VgNLZwGFxolD56vQcXuUO+ReqX5/V8oq8N1CAMLW0uS/mJrKnV78ter1hvmFjjDwoKWNHWQfUToE8GaGI+gdGmJ9MgqKiVGCjjXXnErAu1FjZbULypkiBc3nLISAF16Y7jwokEcL2lkZ1FcjJFaCAnmkoGP2gqPJAibMpBgwLFrQ5XmVQZBCa+2AI1e0oIe7FetBQ8Rk+wE7MVrQHadgEEyhE8mA8BItaMEeKwTR7LRbat22j2hBx8yNSKEh1CfO7SN5xKDjcwn70MYqdzsmRgy6uU4wfngB1vpHQDf6moI8T42IHlD8iBi0kB9z0A8vyua2+4gYtNwqdSH2ciaijO2bOzFi0LyZTAA/vBja7fASMehY01kxhEKz2fXw1qCoQcdaEzaNPffBWpnZLaN+NjTP80InnnqXOas9oGJ5mqKK9+wJDeQAMtziMiY+D5qXBaHRaHY6nfi0XJwVW/n++0k1t56X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);
}
.icon.heart {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  background-image: url(data:image/png;base64,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);
  width: 81px;
  height: 71px;
}

.wholesale-2 .wholesale__img.wholesale__img-mobile{
	margin-bottom: 6px;
	z-index: 0;
}