

/* Start:/local/markup/dist/libs/remodal/remodal.css?17403783131695*/
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* End */


/* Start:/local/markup/dist/libs/remodal/remodal-default-theme.css?17403783126041*/
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/* End */


/* Start:/local/markup/dist/libs/slick-slider/slick.css?17403783131895*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* End */


/* Start:/local/markup/dist/libs/slick-slider/slick-theme.css?17403783133243*/
@charset 'UTF-8';
/* Slider */

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('/local/markup/dist/libs/slick-slider/./fonts/slick.eot');
    src: url('/local/markup/dist/libs/slick-slider/./fonts/slick.eot?#iefix') format('embedded-opentype'), url('/local/markup/dist/libs/slick-slider/./fonts/slick.woff') format('woff'), url('/local/markup/dist/libs/slick-slider/./fonts/slick.ttf') format('truetype'), url('/local/markup/dist/libs/slick-slider/./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* End */


/* Start:/local/markup/dist/libs/chosen/chosen.min.css?17403783099962*/
/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.7
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2018 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/.chosen-container{position:relative;display:inline-block;vertical-align:middle;font-size:13px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.chosen-container *{-webkit-box-sizing:border-box;box-sizing:border-box}.chosen-container .chosen-drop{position:absolute;top:100%;z-index:1010;width:100%;border:1px solid #aaa;border-top:0;background:#fff;-webkit-box-shadow:0 4px 5px rgba(0,0,0,.15);box-shadow:0 4px 5px rgba(0,0,0,.15);clip:rect(0,0,0,0);-webkit-clip-path:inset(100% 100%);clip-path:inset(100% 100%)}.chosen-container.chosen-with-drop .chosen-drop{clip:auto;-webkit-clip-path:none;clip-path:none}.chosen-container a{cursor:pointer}.chosen-container .chosen-single .group-name,.chosen-container .search-choice .group-name{margin-right:4px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:400;color:#999}.chosen-container .chosen-single .group-name:after,.chosen-container .search-choice .group-name:after{content:":";padding-left:2px;vertical-align:top}.chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;border:1px solid #aaa;border-radius:5px;background-color:#fff;background:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#fff),color-stop(50%,#f6f6f6),color-stop(52%,#eee),to(#f4f4f4));background:linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);background-clip:padding-box;-webkit-box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);box-shadow:0 0 3px #fff inset,0 1px 1px rgba(0,0,0,.1);color:#444;text-decoration:none;white-space:nowrap;line-height:24px}.chosen-container-single .chosen-default{color:#999}.chosen-container-single .chosen-single span{display:block;overflow:hidden;margin-right:26px;text-overflow:ellipsis;white-space:nowrap}.chosen-container-single .chosen-single-with-deselect span{margin-right:38px}.chosen-container-single .chosen-single abbr{position:absolute;top:6px;right:26px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px}.chosen-container-single .chosen-single div{position:absolute;top:0;right:0;display:block;width:18px;height:100%}.chosen-container-single .chosen-single div b{display:block;width:100%;height:100%;}.chosen-container-single .chosen-search{position:relative;z-index:1010;margin:0;padding:3px 4px;white-space:nowrap}.chosen-container-single .chosen-search input[type=text]{margin:1px 0;padding:4px 20px 4px 5px;width:100%;height:auto;outline:0;border:1px solid #aaa;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0}.chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box}.chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;clip:rect(0,0,0,0);-webkit-clip-path:inset(100% 100%);clip-path:inset(100% 100%)}.chosen-container .chosen-results{color:#444;position:relative;overflow-x:hidden;overflow-y:auto;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;-webkit-overflow-scrolling:touch}.chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;word-wrap:break-word;-webkit-touch-callout:none}.chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer}.chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default}.chosen-container .chosen-results li.highlighted{background-color:#3875d7;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#3875d7),color-stop(90%,#2a62bc));background-image:linear-gradient(#3875d7 20%,#2a62bc 90%);color:#fff}.chosen-container .chosen-results li.no-results{color:#777;display:list-item;background:#f4f4f4}.chosen-container .chosen-results li.group-result{display:list-item;font-weight:700;cursor:default}.chosen-container .chosen-results li.group-option{padding-left:15px}.chosen-container .chosen-results li em{font-style:normal;text-decoration:underline}.chosen-container-multi .chosen-choices{position:relative;overflow:hidden;margin:0;padding:0 5px;width:100%;height:auto;border:1px solid #aaa;background-color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(1%,#eee),color-stop(15%,#fff));background-image:linear-gradient(#eee 1%,#fff 15%);cursor:text}.chosen-container-multi .chosen-choices li{float:left;list-style:none}.chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap}.chosen-container-multi .chosen-choices li.search-field input[type=text]{margin:1px 0;padding:0;height:25px;outline:0;border:0!important;background:0 0!important;-webkit-box-shadow:none;box-shadow:none;color:#999;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;width:25px}.chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),to(#eee));background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;-webkit-box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,.05);color:#333;line-height:13px;cursor:default}.chosen-container-multi .chosen-choices li.search-choice span{word-wrap:break-word}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;font-size:1px}.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px}.chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),to(#eee));background-image:linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);color:#666}.chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4}.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px}.chosen-container-multi .chosen-results{margin:0;padding:0}.chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default}.chosen-container-active .chosen-single{border:1px solid #5897fb;-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;border-bottom-right-radius:0;border-bottom-left-radius:0;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(20%,#eee),color-stop(80%,#fff));background-image:linear-gradient(#eee 20%,#fff 80%);-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset}.chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:0 0}.chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px}.chosen-container-active .chosen-choices{border:1px solid #5897fb;-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3)}.chosen-container-active .chosen-choices li.search-field input[type=text]{color:#222!important}.chosen-disabled{opacity:.5!important;cursor:default}.chosen-disabled .chosen-single{cursor:default}.chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default}.chosen-rtl{text-align:right}.chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0}.chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl}.chosen-rtl .chosen-single-with-deselect span{margin-left:38px}.chosen-rtl .chosen-single div{right:auto;left:3px}.chosen-rtl .chosen-single abbr{right:auto;left:26px}.chosen-rtl .chosen-choices li{float:right}.chosen-rtl .chosen-choices li.search-field input[type=text]{direction:rtl}.chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px}.chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px}.chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0}.chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0}.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none}.chosen-rtl .chosen-search input[type=text]{padding:4px 5px 4px 20px;direction:rtl}.chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px}.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi),only screen and (min-resolution:1.5dppx){.chosen-container .chosen-results-scroll-down span,.chosen-container .chosen-results-scroll-up span,.chosen-container-multi .chosen-choices .search-choice .search-choice-close,.chosen-container-single .chosen-search input[type=text],.chosen-container-single .chosen-single abbr,.chosen-container-single .chosen-single div b,.chosen-rtl .chosen-search input[type=text]{background-image:url(/local/markup/dist/libs/chosen/chosen-sprite@2x.png)!important;background-size:52px 37px!important;background-repeat:no-repeat!important}}
/* End */


/* Start:/local/markup/dist/libs/swiper/swiper.min.css?174037831419789*/
/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container{margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-webkit-flex;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(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.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{-webkit-flex-shrink:0;-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}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-webkit-align-items:flex-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}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.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-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{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,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(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,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(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,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(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,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s opacity;-o-transition:.3s opacity;transition:.3s opacity;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.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(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-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:.2s top,.2s -webkit-transform;transition:.2s top,.2s -webkit-transform;-o-transition:.2s transform,.2s top;transition:.2s transform,.2s top;transition:.2s transform,.2s top,.2s -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:.2s left,.2s -webkit-transform;transition:.2s left,.2s -webkit-transform;-o-transition:.2s transform,.2s left;transition:.2s transform,.2s left;transition:.2s transform,.2s left,.2s -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s right,.2s -webkit-transform;transition:.2s right,.2s -webkit-transform;-o-transition:.2s transform,.2s right;transition:.2s transform,.2s right;transition:.2s transform,.2s right,.2s -webkit-transform}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;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,.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,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255,255,255,.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0,0,0,.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(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,.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:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.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 steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:'';width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-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)}}.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,.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,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.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,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}
/* End */


/* Start:/local/markup/dist/libs/microtip.css?17403782628537*/
/* -------------------------------------------------------------------
  Microtip

  Modern, lightweight css-only tooltips
  Just 1kb minified and gzipped

  @author Ghosh
  @package Microtip

----------------------------------------------------------------------
  1. Base Styles
  2. Direction Modifiers
  3. Position Modifiers
--------------------------------------------------------------------*/


/* ------------------------------------------------
  [1] Base Styles
-------------------------------------------------*/

[aria-label][role~="tooltip"] {
  position: relative;
}

[aria-label][role~="tooltip"]::before,
[aria-label][role~="tooltip"]::after {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, .18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top;
}

[aria-label][role~="tooltip"]::before {
  background-size: 100% auto !important;
  content: "";
}

[aria-label][role~="tooltip"]::after {
  background: rgba(17, 17, 17, .9);
  border-radius: 4px;
  color: #ffffff;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: .5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}

[aria-label][role~="tooltip"]:hover::before,
[aria-label][role~="tooltip"]:hover::after,
[aria-label][role~="tooltip"]:focus::before,
[aria-label][role~="tooltip"]:focus::after {
  opacity: 1;
  pointer-events: auto;
}



/* ------------------------------------------------
  [2] Position Modifiers
-------------------------------------------------*/

[role~="tooltip"][data-microtip-position|="top"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

[role~="tooltip"][data-microtip-position|="top"]::after {
  margin-bottom: 11px;
}

[role~="tooltip"][data-microtip-position|="top"]::before {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position|="top"]:hover::before {
  transform: translate3d(-50%, -5px, 0);
}

[role~="tooltip"][data-microtip-position|="top"]::after {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position="top"]:hover::after {
  transform: translate3d(-50%, -5px, 0);
}

/* ------------------------------------------------
  [2.1] Top Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="top-left"]::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}

[role~="tooltip"][data-microtip-position="top-left"]:hover::after {
  transform: translate3d(calc(-100% + 16px), -5px, 0);
}


/* ------------------------------------------------
  [2.2] Top Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="top-right"]::after {
  transform: translate3d(calc(0% + -16px), 0, 0);
  bottom: 100%;
}

[role~="tooltip"][data-microtip-position="top-right"]:hover::after {
  transform: translate3d(calc(0% + -16px), -5px, 0);
}


/* ------------------------------------------------
  [2.3] Bottom
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position|="bottom"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

[role~="tooltip"][data-microtip-position|="bottom"]::after {
  margin-top: 11px;
}

[role~="tooltip"][data-microtip-position|="bottom"]::before {
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

[role~="tooltip"][data-microtip-position|="bottom"]:hover::before {
  transform: translate3d(-50%, 0, 0);
}

[role~="tooltip"][data-microtip-position|="bottom"]::after {
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

[role~="tooltip"][data-microtip-position="bottom"]:hover::after {
  transform: translate3d(-50%, 0, 0);
}


/* ------------------------------------------------
  [2.4] Bottom Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="bottom-left"]::after {
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}

[role~="tooltip"][data-microtip-position="bottom-left"]:hover::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
}


/* ------------------------------------------------
  [2.5] Bottom Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="bottom-right"]::after {
  transform: translate3d(calc(0% + -16px), -10px, 0);
  top: 100%;
}

[role~="tooltip"][data-microtip-position="bottom-right"]:hover::after {
  transform: translate3d(calc(0% + -16px), 0, 0);
}


/* ------------------------------------------------
  [2.6] Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="left"]::before,
[role~="tooltip"][data-microtip-position="left"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0);
}

[role~="tooltip"][data-microtip-position="left"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

[role~="tooltip"][data-microtip-position="left"]::after {
  margin-right: 11px;
}

[role~="tooltip"][data-microtip-position="left"]:hover::before,
[role~="tooltip"][data-microtip-position="left"]:hover::after {
  transform: translate3d(0, -50%, 0);
}


/* ------------------------------------------------
  [2.7] Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="right"]::before,
[role~="tooltip"][data-microtip-position="right"]::after {
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate3d(-10px, -50%, 0);
}

[role~="tooltip"][data-microtip-position="right"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

[role~="tooltip"][data-microtip-position="right"]::after {
  margin-left: 11px;
}

[role~="tooltip"][data-microtip-position="right"]:hover::before,
[role~="tooltip"][data-microtip-position="right"]:hover::after {
  transform: translate3d(0, -50%, 0);
}

/* ------------------------------------------------
  [3] Size
-------------------------------------------------*/
[role~="tooltip"][data-microtip-size="small"]::after {
  white-space: initial;
  width: 80px;
}

[role~="tooltip"][data-microtip-size="medium"]::after {
  white-space: initial;
  width: 150px;
}

[role~="tooltip"][data-microtip-size="large"]::after {
  white-space: initial;
  width: 260px;
}

/* End */


/* Start:/local/markup/dist/css/style.css?1751349262204925*/
@charset "UTF-8";*{-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;line-height:120%}input,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;margin:0;border:0;border-radius:0;background-image:none;background-color:transparent;resize:none;outline:0}input::-ms-clear,input::-ms-reveal{display:none}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{opacity:1;-webkit-transition:opacity .3s ease;transition:opacity .3s ease;color:#9d9e9f}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;-moz-transition:opacity .3s ease;transition:opacity .3s ease;color:#9d9e9f}input:-moz-placeholder,textarea:-moz-placeholder{opacity:1;-moz-transition:opacity .3s ease;transition:opacity .3s ease;color:#9d9e9f}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;-ms-transition:opacity .3s ease;transition:opacity .3s ease;color:#9d9e9f}input:focus::-webkit-input-placeholder,textarea:focus::-webkit-input-placeholder{opacity:0}input:focus::-moz-placeholder,textarea:focus::-moz-placeholder{opacity:0}input:focus:-moz-placeholder,textarea:focus:-moz-placeholder{opacity:0}input:focus:-ms-input-placeholder,textarea:focus:-ms-input-placeholder{opacity:0}textarea{white-space:normal!important}button::-moz-focus-inner{border:0}a:active,a:focus{outline:0}@media (max-width:767px){input,input:focus,select,select:focus,textarea,textarea:focus{font-size:16px}}html{-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100%;height:100%}body{padding:0;margin:0;-webkit-box-sizing:inherit;box-sizing:inherit;min-height:100%;height:100%;font-size:14px;min-width:360px;color:#000;background:0 0;-webkit-text-size-adjust:none;font-family:"SF Pro Display",Arial,sans-serif;line-height:120%}body ul{margin:0;padding:0;list-style:none}body a{text-decoration:none;cursor:pointer;-webkit-transition:color .2s,border-color .2s;transition:color .2s,border-color .2s;color:inherit}body a img{border:none!important}body.open-menu-body,body.open-order-body{overflow:hidden}@media (min-width:1024px){body.open-menu-body,body.open-order-body{overflow:hidden;padding-right:17px}}h1,h2,h3,h4,h5{margin:0;font-weight:700;width:100%}p{margin:0}button{border:none;outline:0}img{max-width:100%}.visible-flex-xs,.visible-xs{display:none}.hidden-flex-xs{display:-webkit-box;display:-ms-flexbox;display:flex}.visible-md,.visible-sm{display:none}@media (max-width:767px){.hidden-flex-xs,.hidden-xs{display:none}.visible-xs{display:block}.visible-flex-xs{display:-webkit-box;display:-ms-flexbox;display:flex}}.visible-flex-lg,.visible-lg{display:none}@media (min-width:1440px){.visible-lg{display:block}.visible-flex-lg{display:-webkit-box;display:-ms-flexbox;display:flex}.hidden-lg{display:none}}@media (min-width:768px) and (max-width:1023px){.visible-sm{display:block}.hidden-sm{display:none}}@media (min-width:1024px) and (max-width:1439px){.visible-md{display:block}}@font-face{font-family:"SF Pro Display";src:url(/local/markup/dist/css/../fonts/SFProDisplay-Medium.eot);src:local("SF Pro Display Medium"),local("SFProDisplay-Medium"),url(/local/markup/dist/css/../fonts/SFProDisplay-Medium.eot?#iefix) format("embedded-opentype"),url(/local/markup/dist/css/../fonts/SFProDisplay-Medium.woff2) format("woff2"),url(/local/markup/dist/css/../fonts/SFProDisplay-Medium.woff) format("woff"),url(/local/markup/dist/css/../fonts/SFProDisplay-Medium.ttf) format("truetype");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"SF Pro Display";src:url(/local/markup/dist/css/../fonts/SFProDisplay-Thin.eot);src:local("SF Pro Display Thin"),local("SFProDisplay-Thin"),url(/local/markup/dist/css/../fonts/SFProDisplay-Thin.eot?#iefix) format("embedded-opentype"),url(/local/markup/dist/css/../fonts/SFProDisplay-Thin.woff2) format("woff2"),url(/local/markup/dist/css/../fonts/SFProDisplay-Thin.woff) format("woff"),url(/local/markup/dist/css/../fonts/SFProDisplay-Thin.ttf) format("truetype");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:"SF Pro Display";src:url(/local/markup/dist/css/../fonts/SFProDisplay-Light.eot);src:local("../fonts/SF Pro Display Light"),local("SFProDisplay-Light"),url(/local/markup/dist/css/../fonts/SFProDisplay-Light.eot?#iefix) format("embedded-opentype"),url(/local/markup/dist/css/../fonts/SFProDisplay-Light.woff2) format("woff2"),url(/local/markup/dist/css/../fonts/SFProDisplay-Light.woff) format("woff"),url(/local/markup/dist/css/../fonts/SFProDisplay-Light.ttf) format("truetype");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:"SF Pro Display";src:url(/local/markup/dist/css/../fonts/SFProDisplay-Bold.eot);src:local("SF Pro Display Bold"),local("SFProDisplay-Bold"),url(/local/markup/dist/css/../fonts/SFProDisplay-Bold.eot?#iefix) format("embedded-opentype"),url(/local/markup/dist/css/../fonts/SFProDisplay-Bold.woff2) format("woff2"),url(/local/markup/dist/css/../fonts/SFProDisplay-Bold.woff) format("woff"),url(/local/markup/dist/css/../fonts/SFProDisplay-Bold.ttf) format("truetype");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"SF Pro Display";src:url(/local/markup/dist/css/../fonts/SFProDisplay-Ultralight.eot);src:local("../fonts/SF Pro Display Ultralight"),local("SFProDisplay-Ultralight"),url(/local/markup/dist/css/../fonts/SFProDisplay-Ultralight.eot?#iefix) format("embedded-opentype"),url(/local/markup/dist/css/../fonts/SFProDisplay-Ultralight.woff2) format("woff2"),url(/local/markup/dist/css/../fonts/SFProDisplay-Ultralight.woff) format("woff"),url(/local/markup/dist/css/../fonts/SFProDisplay-Ultralight.ttf) format("truetype");font-weight:200;font-style:normal}@font-face{font-family:"SF Pro Display";src:url(/local/markup/dist/css/../fonts/SFProDisplay-Semibold.eot);src:local("SF Pro Display Semibold"),local("SFProDisplay-Semibold"),url(/local/markup/dist/css/../fonts/SFProDisplay-Semibold.eot?#iefix) format("embedded-opentype"),url(/local/markup/dist/css/../fonts/SFProDisplay-Semibold.woff2) format("woff2"),url(/local/markup/dist/css/../fonts/SFProDisplay-Semibold.woff) format("woff"),url(/local/markup/dist/css/../fonts/SFProDisplay-Semibold.ttf) format("truetype");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"SF Pro Display";src:url(/local/markup/dist/css/../fonts/SFProDisplay-Regular.eot);src:local("SF Pro Display Regular"),local("SFProDisplay-Regular"),url(/local/markup/dist/css/../fonts/SFProDisplay-Regular.eot?#iefix) format("embedded-opentype"),url(/local/markup/dist/css/../fonts/SFProDisplay-Regular.woff2) format("woff2"),url(/local/markup/dist/css/../fonts/SFProDisplay-Regular.woff) format("woff"),url(/local/markup/dist/css/../fonts/SFProDisplay-Regular.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:PTRoubleSans;src:url(/local/markup/dist/css/../fonts/PTRoubleSans/PTRoubleSans.eot);src:url(/local/markup/dist/css/../fonts/PTRoubleSans/PTRoubleSans.eot?#iefix) format("embedded-opentype"),url(/local/markup/dist/css/../fonts/PTRoubleSans/PTRoubleSans.woff2) format("woff2"),url(/local/markup/dist/css/../fonts/PTRoubleSans/PTRoubleSans.woff) format("woff"),url(/local/markup/dist/css/../fonts/PTRoubleSans/PTRoubleSans.ttf) format("truetype"),url(/local/markup/dist/css/../fonts/PTRoubleSans/PTRoubleSans.svg#PTRoubleSans) format("svg");font-style:normal;font-weight:400;text-rendering:optimizeLegibility}.rub{font-family:PTRoubleSans}.header{background:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:45px;padding-right:60px;margin:0 auto;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:80px;width:100%;position:fixed;z-index:5000;border:none;border-bottom:1px solid #e4e4e4;-webkit-box-shadow:0 0 24px rgba(0,0,0,.1);box-shadow:0 0 24px rgba(0,0,0,.1)}.header .menu-button{width:58px;line-height:0}.header .menu-button-open{width:58px;cursor:pointer;height:80px;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}.header .menu-button-open-inner{height:22px;padding-top:6px}body.open-menu-body .header .menu-button-open-inner{padding-top:0}.header .menu-button-open span{display:block;width:28px;height:2px;background:#000;position:relative;margin-bottom:6px;-webkit-transition:.4s;transition:.4s}.header .menu-button-open .menu-button-open-second{width:20px}.header .menu-button-open:hover .menu-button-open-second{width:28px}.header .menu-button-open:hover span{background:#f94f0d}body.open-menu-body .header .menu-button-open-first{-webkit-transform:rotate(-45deg) translate(-7px,7px);transform:rotate(-45deg) translate(-7px,7px);margin-bottom:0}body.open-menu-body .header .menu-button-open-second{width:28px;-webkit-transform:rotate(45deg) translate(5px,5px);transform:rotate(45deg) translate(5px,5px)}.header .menu-button-close{cursor:pointer;display:none;width:58px;cursor:pointer;height:80px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.header .menu-button-close svg{width:21px;height:21px;margin-right:7px}.header .menu-button-close:hover svg rect{fill:#f94f0d}body.open-menu-body .header .menu-button-close{display:-webkit-box;display:-ms-flexbox;display:flex}.header__menu{margin-left:63px;margin-right:62px}.header__menu a{margin:0 7px;padding:16px 8px;font-weight:500;opacity:.5}.header__menu a:hover{color:#f94f0d;opacity:1}.header__bianca-logo-link{line-height:0}.header__bianca-word-svg{width:103px;height:20px}.header__contacts{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.header__phone{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:20px}.header__phone-svg{width:16px;height:16px;margin-right:10px}.header__phone-link{font-size:15px;font-weight:700}.header__clock{font-weight:500;font-size:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.header__clock-svg{width:18px;height:18px;margin-right:10px}.header__social{width:101px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.header__social svg{width:27px;height:27px}.header__call{width:40px;height:40px}@media (max-width:1439px){.header{padding-left:25px;padding-right:40px}.header .menu-button{margin-right:58px}}@media (max-width:1023px){body.open-menu-body .header{width:100%}}@media (max-width:767px){.header{padding-left:5px;padding-right:20px}.header .menu-button{margin-right:0}.header__call{margin-left:3px}}.chose-city{position:fixed;top:80px;right:60px;padding:7px 20px;background:#f6f6f6;border-radius:0 0 20px 20px;width:300px;z-index:3000}.chose-city__header{padding:0 8px 8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid #f94f0d}.chose-city__header svg{width:11px;height:15px;margin-right:10px}.chose-city__button-list{margin-top:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.chose-city__header-word{color:#000;opacity:.5;font-size:12px;line-height:14px}.chose-city .border-btn{width:120px;padding:5px 0;font-weight:500;font-size:15px;line-height:15px}.chose-city__list{margin-top:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:5px}.chose-city__list-item{color:#000;opacity:.5;font-size:12px;line-height:14px;width:calc(50% - 10px);margin-bottom:8px}.chose-city__list-item-wide{width:100%}.chose-city__list-item.active{text-decoration:underline}@media (max-width:1439px){.chose-city{right:35px}}@media (max-width:767px){.chose-city{right:50%;-webkit-transform:translate(50%,0);transform:translate(50%,0)}}.chose-city.chose-city__done{width:auto}.chose-city.chose-city__done .chose-city__header{border:none;padding-bottom:0}.burger{position:absolute;top:80px;width:calc(100% + 17px);left:0;height:calc(100vh - 80px);background:#fafafa;z-index:4000;-webkit-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s;will-change:transform;opacity:0;overflow:hidden}.burger.open-burger{-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s;will-change:transform}.burger.opacity-burger{opacity:1}.burger:before{-webkit-box-shadow:0 0 24px rgba(0,0,0,.5);box-shadow:0 0 24px rgba(0,0,0,.5);display:block;width:100%;height:2px;content:" ";z-index:120;position:relative;top:-2px}.burger__content{position:absolute;bottom:80px;top:0;left:0;right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;padding-top:40px;padding-bottom:40px}.burger__nav{display:-webkit-box;display:-ms-flexbox;display:flex;width:920px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.burger__menu li{margin-bottom:20px}.burger__menu a{font-size:18px;line-height:27px}.burger .burger__menu a:hover{color:#f94f0d}.burger__footer{position:absolute;bottom:40px;left:0;right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:40px;padding-right:40px}.burger__copyright{font-weight:500;font-size:16px;line-height:16px;opacity:.6}.burger__personal-link{opacity:.3;font-size:13px;line-height:13px}@media (max-width:1023px){.burger{width:100%}.burger__content{position:absolute;bottom:80px;top:0;left:0;right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;border:none;border-top:1px solid #e4e4e4}.burger__nav{width:650px}.burger__menu a{font-size:16px;line-height:24px}.burger__copyright{font-weight:500;font-size:14px;line-height:14px;opacity:.6}}@media (max-width:767px){.burger{overflow:scroll}.burger__content{position:static;border:none}.burger__nav{padding-left:20px;padding-right:20px;width:100%;display:block;height:100%}.burger__menu{margin:0 auto 27px;padding-bottom:12px;border:none;border-bottom:1px solid #f94f0d;max-width:250px}.burger__menu:last-child{border-bottom:none}.burger__menu li{margin-bottom:15px;text-align:center}.burger__menu a{font-size:16px;line-height:24px}.burger__footer{position:static;margin-bottom:40px;display:block;padding-left:20px;padding-right:20px;text-align:center}.burger__copyright{font-size:12px;line-height:20px;margin-bottom:10px}.burger__personal-link{font-size:13px;line-height:13px}}.footer{background:#fafafa;padding:60px 0 40px;text-align:center}.footer .row{max-width:1173px;margin:0 auto;text-align:left}.footer__bottom,.footer__top{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.footer__top{-ms-flex-wrap:wrap;flex-wrap:wrap}.footer__left{width:420px;position:relative}.footer__right{width:617px}.footer__logo{width:75px;height:78px}.footer__description{margin-top:20px;font-size:16px;line-height:25px}.footer__contacts{display:-webkit-box;display:-ms-flexbox;display:flex;margin:25px 0 25px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:700;font-size:18px;line-height:29px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.footer__contacts .border-btn{padding:14px 5px;width:190px;font-size:16px}.footer__whatsapp{margin-bottom:15px;line-height:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.footer__whatsapp-link{line-height:0}.footer__whatsapp-img{width:182px}.footer__awards-title{font-weight:700;font-size:18px;line-height:29px;margin-bottom:20px}.footer__awards img{width:60px;height:60px;margin-right:24px}.footer__notes{line-height:25px;opacity:.6}.footer__right{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.footer__right{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.footer__menu-col{width:calc(50% - 30px);padding-bottom:80px}.footer__right:nth-child(4) .footer__menu-col{padding-bottom:0}.footer__menu-title{font-style:normal;font-weight:700;font-size:18px;line-height:29px;margin-bottom:20px}.footer__menu-col li a{font-style:normal;font-weight:400;font-size:16px;line-height:26px;opacity:.6}.footer__menu-col li a:hover{color:#f94f0d;opacity:1}.footer__bottom .footer__left{font-weight:500;font-size:16px;line-height:26px;opacity:.6}.footer__bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;display:none}.footer__bottom .footer__right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.footer__pay{margin-bottom:50px}.footer__pay-title{font-weight:700;font-size:18px;line-height:29px;margin-bottom:20px}.footer__pay-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.footer__pay-visa{width:74px;height:24px}.footer__pay-master{width:39px;height:24px}.footer__pay-mir{width:85px;height:24px}.footer__pay-cash{width:42px;height:24px}.footer__personal{font-size:14px;line-height:22px;opacity:.6;text-decoration:underline}.footer__phone{display:none}.footer__mobile-title{font-weight:700;font-size:18px;line-height:160%;margin-bottom:20px}.footer__mobile-link:nth-child(3){margin-right:0}.footer__mobile-link{margin-right:20px}.footer__mobile-img{max-height:42px}.footer__desktop-copyright{position:absolute;bottom:0}.footer__copyright{margin-bottom:12px;font-weight:500;font-size:16px;line-height:160%;opacity:.6}@media (max-width:1439px){.footer{padding:60px 40px 40px}.footer .row{max-width:100%}.footer__left{width:40%}.footer__right{width:56%}.footer__description{margin-top:20px;font-size:14px;line-height:22px}.footer__contacts{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;line-height:26px;margin-bottom:25px;-ms-flex-wrap:wrap;flex-wrap:wrap}.footer__contacts a{margin-bottom:20px}.footer__whatsapp-img{width:185px}.footer__awards-title{font-size:16px;line-height:26px;margin-bottom:20px}.footer__menu-col{padding-bottom:80px;width:50%}.footer__menu-col,.footer__right:nth-child(2){padding-bottom:0}.footer__menu-col:nth-child(even){width:44%}.footer__menu-title{font-size:16px;line-height:26px;margin-bottom:24px}.footer__menu-col li a{font-size:14px;line-height:22px}.footer__bottom .footer__left{font-size:14px;line-height:22px}.footer__pay-title{font-size:16px;line-height:26px;margin-bottom:24px}.footer__pay-visa{width:68px;height:22px}.footer__pay-master{width:35px;height:22px}.footer__pay-mir{width:77px;height:22px}.footer__personal{font-size:14px;line-height:22px;opacity:.6}}@media (max-width:1023px){.footer{padding:40px 0 40px;text-align:center}.footer .row{max-width:415px;text-align:center}.footer__bottom,.footer__top{display:block}.footer__left,.footer__right{width:100%}.footer__logo{display:none}.footer__whatsapp{margin:0 auto 40px;display:block}.footer__phone{margin:20px;text-align:center;display:block}.footer__phone-link{color:#000;font-weight:700;font-size:16px;line-height:160%}.footer__description{margin-top:0;font-size:14px;line-height:22px}.footer__contacts{display:block;margin:25px 0 40px}.footer__contacts .border-btn{width:100%}.footer__whatsapp-img{width:200px}.footer__contacts a:nth-child(1){display:block;margin:0 auto 20px}.footer__mobile{margin-bottom:20px}.footer__mobile-menu{margin-bottom:40px}.footer__mobile-menu .swiper-slide{width:100%}.footer__mobile-menu .footer__menu-title{margin-bottom:28px}.footer__mobile-menu li{margin-bottom:3px}.footer__mobile-menu a{font-size:14px;line-height:22px;opacity:.6}.footer__mobile-menu .swiper-pagination{margin-top:28px}.footer__mobile-title{font-weight:700;font-size:16px;line-height:160%}.footer__mobile-img{max-height:38px}.footer__awards{margin-bottom:18px}.footer__awards img{width:50px;height:50px;margin-right:0}.footer__awards-title{margin-bottom:20px}.footer__awards-list{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;gap:20px}.footer__notes{font-size:12px;line-height:17px;max-width:280px;margin:0 auto}.footer__top .footer__right{display:none}.footer__bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.footer__bottom .footer__left{font-size:12px;line-height:19px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.footer__text{font-size:12px;line-height:17px;text-align:center;width:280px;margin:0 auto 40px;opacity:.6}.footer__pay{width:280px;margin:0 auto 3px}.footer__pay-title{margin-bottom:20px}.footer__pay-visa{width:74px;height:24px}.footer__pay-master{width:39px;height:24px}.footer__pay-mir{width:85px;height:24px}.footer__personal{margin:20px auto;width:240px}.footer__desktop-copyright{display:none}}@media (max-width:767px){.footer .row{max-width:280px}.footer__contacts{display:block;margin:20px 0 32px}.footer__mobile-menu{margin-bottom:32px}.footer__mobile-menu .footer__menu-title{margin-bottom:24px}.footer__awards-list{width:190px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0 auto}.footer__awards-list img{margin-right:0}.footer__text{margin:0 auto 32px}.footer__notes{font-size:12px;line-height:17px;max-width:280px;margin:0 auto}.footer .border-btn{margin:0 auto}}.border-btn{border:2px solid #f94f0d;padding:20px 35px;font-size:16px;line-height:16px;font-weight:700;text-align:center;border-radius:100px;color:#f94f0d;display:inline-block;white-space:nowrap;cursor:pointer}.border-btn:hover{border:2px solid #f94f0d;background:#f94f0d;color:#fff}.border-btn[disabled=disabled]{opacity:.3}.page__content .border-btn{padding-top:16px;padding-bottom:16px}.orange-border-btn{background:#f94f0d;color:#fff;cursor:pointer}.orange-border-btn:hover{color:#f94f0d;background:0 0}.orange__more{position:absolute;z-index:10;right:30px;bottom:30px;width:34px;height:34px;color:#000;background:#fff no-repeat;border-radius:50px;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}.orange__more svg{width:7px;height:10px}div:hover>.orange__more{background:#f94f0d;color:#fff}.orange__more path{stroke:#000}div:hover>.orange__more path{stroke:#fff}.white-more{position:absolute;z-index:10;right:30px;bottom:30px;width:34px;height:34px;color:#fff;background:url(/local/markup/dist/css/../images/black-more.svg) 50% 50% #fff no-repeat;border-radius:50px;cursor:pointer}.page__content{text-align:center;padding-top:80px}.page__content .row{max-width:1280px;margin:0 auto;text-align:left;padding:0 40px}.h2,h2{font-size:50px;line-height:60px;margin-bottom:40px;font-weight:700}.hidden{display:none}@media (max-width:1439px){.border-btn{padding:18px 30px;font-size:14px;line-height:14px}.h2,h2{font-size:40px;line-height:48px}}@media (max-width:1023px){.border-btn{padding:16px 54px;font-size:16px;line-height:16px}}@media (max-width:767px){.h2,h2{font-size:30px;line-height:36px;margin-bottom:24px}.page__content .row{padding:0 20px}}.tab-container{display:none}.tab-container.active{display:block}.page .accordion-header{border:none;border-top:1px solid #e5e5e5;padding:20px 0;display:-webkit-box;display:-ms-flexbox;display:flex;background:0 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:16px;line-height:19px;color:#000;font-weight:500;margin:0;cursor:pointer}.accordion-header svg{width:14px;height:7px;margin-left:100px}.accordion-header.is-open svg{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.page .accordion-body{padding:0 0 40px;border:none;color:#000;border-radius:0;font-size:14px;display:none}@media (min-width:768px){.page .accordion-header{padding:50px 0;font-size:26px;line-height:31px}.accordion-header svg{width:34px;height:17px}.page .accordion-body{padding:10px 0 60px}}@media (min-width:1024px){.page .accordion-header{padding:30px 0;font-size:18px;line-height:22px}.accordion-header svg{width:20px;height:10px}.page .accordion-body{padding:10px 0 80px}}.tabs-list{margin-bottom:20px;width:calc(100% + 20px);overflow:hidden}.tab-item{font-weight:500;line-height:120%;color:#252528;opacity:.5}.tab-item.swiper-slide{width:auto}.tab-item.active{opacity:1;font-weight:700}@media (min-width:768px){.tabs-list{padding-bottom:30px}.tabs-list .swiper-wrapper{-ms-flex-wrap:wrap;flex-wrap:wrap}.tab-item{margin-bottom:20px;margin-right:15px}}@media (min-width:1024px){.tabs-list{padding-bottom:40px}.tab-item{margin-bottom:20px;margin-right:25px}}.add-basket{position:absolute;bottom:30px;right:30px;width:34px;height:34px;background:#f94f0d;border-radius:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;z-index:30}.add-basket svg{width:10px;height:10px}.add-basket:hover{background:#f94f0d}.remodal-close{right:20px;left:auto;top:20px;background:url(/local/markup/dist/css/../images/close.svg);background-size:100% 100%;width:20px;height:20px}.remodal-close:before{display:none}.remodal{padding:65px 30px 40px;border-radius:10px}@media (min-width:768px){.remodal-close{right:30px;top:30px;width:30px;height:30px}.remodal{padding:105px 115px;border-radius:20px}}.top-content__text{line-height:150%;text-align:center;margin:30px auto;color:#060606;max-width:630px}@media (min-width:1024px){.top-content__text{margin:50px auto;font-size:18px;max-width:800px}}@media (min-width:1440px){.top-content__text{margin:65px auto}}.top-content{margin:30px 0}@media (min-width:1024px){.top-content{margin:50px 0}}@media (min-width:1440px){.top-content{margin:65px 0}}.top-content .top-content__text{margin:0 auto}.top-content .block-separator{margin:40px 0}@media (min-width:1024px){.top-content .block-separator{margin:50px 0}}@media (min-width:1440px){.top-content .block-separator{margin:65px 0 55px}}.top-content__warning{position:relative;padding-top:38px;font-style:italic;font-size:12px;line-height:140%;opacity:.5;margin:0 auto;text-align:center}@media (min-width:768px){.top-content__warning{max-width:410px;font-size:14px}}@media (min-width:1024px){.top-content__warning{padding-top:0;padding-left:34px;max-width:444px;font-size:16px}}.top-content__warning-svg{width:18px;height:18px;position:absolute;left:50%;top:0;-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}@media (min-width:1024px){.top-content__warning-svg{left:0;top:50%;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}}.top-content__bold{font-weight:700}@media (min-width:768px){.top-content__bold{font-size:16px}}@media (min-width:1440px){.top-content__bold{margin-left:0;margin-right:0;max-width:100%}}.top-content__title{font-weight:500;font-size:16px;line-height:150%;margin-bottom:10px;text-align:center}@media (min-width:1024px){.top-content__title{font-size:24px;margin-bottom:15px}}.block-separator{height:1px;background:rgba(0,0,0,.1)}.text-center{text-align:center;width:100%}.btn-more{margin-top:40px;width:220px}@media (min-width:768px){.btn-more{margin-top:60px}}@media (min-width:1024px){.btn-more{margin-top:80px}}@media (min-width:1440px){.btn-more{margin-top:100px}}.remodal.modal-call-me{max-width:100%;width:auto;padding:0}.remodal.modal-call-me .order-cleaning{background:#fff;margin:0}.remodal.modal-call-me .remodal-close{z-index:3}.remodal.modal-call-me input[type=text]{border:1px solid #e7e7e7}.remodal.modal-call-me input[type=text].error{border:1px solid #f94f0d}.remodal.modal-call-me input[type=checkbox]+label{color:#000}.remodal.modal-call-me .order-cleaning__title{color:#000}.top{border-radius:0 0 100px 100px;z-index:1;position:relative;width:100%;background:50% 50% no-repeat;background-size:cover;overflow:hidden}.top__delivery{background:linear-gradient(261.45deg,#f5f7fa 0,#fff7f4 .01%,#dbd4d2 97.53%)}.top__difficult{padding:30px 0 160px}.top__difficult .row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.top__description{width:38.3%}.top__title{font-weight:700;font-size:60px;line-height:60px;margin-bottom:48px}.top__text{font-size:16px;line-height:32px;opacity:.5}.top__image{width:48.5%}.top__inner{min-width:1035px;height:582px}.top__bg{position:relative;height:510px}.top__center{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center;width:100%;max-width:850px}.top__back{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 auto 55px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#6f6f6f;font-size:13px;line-height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.top__back svg{width:9px;height:18px;margin-right:16px}.top__white{color:#fff}.top__white path{stroke:#fff}.top__higher{top:calc(50% - 62px)}.top-bg__picture{position:absolute;top:0;bottom:0;left:0;right:0}.top-bg__img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%}.iframe-wrapper{position:relative;padding-bottom:56.25%;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.iframe-wrapper iframe,.top video{position:absolute;top:0;left:0;width:100%;height:100%}@media (max-width:1439px){.top__inner{height:468px;min-width:833px}.top__difficult{padding:37px 0 167px}.top__difficult .row{max-width:810px;padding:0}.top__description{width:47%}.top__title{font-size:40px;line-height:40px}.top__image{width:50.6%}.top__bg{height:414px}.top__center{max-width:575px}.top__back{margin:0 auto 25px}}@media (max-width:1023px){.top{border-radius:0 0 80px 80px}.top__difficult{padding:32px 0 153px}.top__difficult .row{max-width:595px}.top__description{width:45.5%}.top__title{font-size:30px;line-height:30px;margin-bottom:10px}.top__text{font-size:14px;line-height:28px}.top__image{width:50.4%}.top__bg{height:328px}.top__center{max-width:440px}.top__back{margin:0 auto 20px}.top__higher{top:calc(50% - 58px)}}@media (max-width:767px){.top__inner{height:350px;min-width:767px;margin-left:calc(50% - 356px);margin-bottom:125px}.top{background-position:0 50%;border-radius:0 0 60px 60px}.top__difficult{padding:45px 40px 165px;display:block}.top__difficult .row{display:block;text-align:center;padding:0}.top__description{margin:0 auto;max-width:280px;width:280px}.top__title{font-size:26px;line-height:31px;text-align:center;margin-bottom:25px}.top__text{line-height:20px;opacity:.5;margin-bottom:20px}.top__image{width:280px}.top__bg{height:466px}.top__center{max-width:320px}.top__back{margin-bottom:10px}.top__higher{top:calc(50% - 62px)}}input[type=email],input[type=text]{padding:16px 10px;font-size:16px;line-height:17px;width:100%;margin-bottom:30px;background:#fff;border-radius:4px;text-align:left}input[type=checkbox]{display:none}input[type=checkbox]+label{color:#fff;font-size:12px;line-height:17px;position:relative;padding-left:26px;display:block}input[type=checkbox]+label a{text-decoration:underline;white-space:nowrap}input[type=checkbox]+label span{display:block;width:19px;height:19px;border-radius:100px;background:#fff;margin-right:7px;position:absolute;top:50%;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);left:0}input[type=checkbox]:checked+label span{background:#f94f0d 50% 50% no-repeat url(/local/markup/dist/css/../images/check.svg)}.order-cleaning{padding:30px 38px;background:#3f434b;text-align:left;max-width:989px;margin:-125px auto 40px;position:relative;z-index:2}.order-cleaning__title{color:#fff;font-size:20px;line-height:24px;font-weight:500;text-align:center;margin-bottom:20px}.order-cleaning .orange-border-btn{width:100%;display:block;margin-bottom:20px;border:none}.order-cleaning .orange-border-btn:hover{background:#f94f0d;color:#fff}.form__field{position:relative}.form__error{position:absolute;right:0;bottom:12px;font-size:12px;color:#f94f0d}input[type=email].error,input[type=text].error{border:1px solid #f94f0d}@media (min-width:768px){.form__error{bottom:10px;font-size:12px}.order-cleaning{padding:40px 67px;margin:-140px auto 60px;width:698px;border-radius:20px}.order-cleaning .form__field{width:calc(50% - 10px)}.order-cleaning input[type=email],.order-cleaning input[type=text]{padding:20px;font-size:16px;line-height:19px;width:100%;display:inline-block;border-radius:10px}.order-cleaning input[type=checkbox]+label{font-size:14px;line-height:14px;padding-left:34px;display:block}.order-cleaning input[type=checkbox]+label span{width:24px;height:24px;margin-right:10px}.order-cleaning form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.order-cleaning__title{font-size:26px;line-height:26px;margin-bottom:30px;width:100%}.order-cleaning .orange-border-btn{width:220px;display:inline-block;margin-bottom:0;margin-top:0;border:none;-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5;padding-top:20px;padding-bottom:20px}.order-cleaning__agree{width:60%}}@media (min-width:1024px){.order-cleaning{width:904px;margin-top:-125px}.order-cleaning .form__field{width:auto}.order-cleaning input[type=text]{width:275px}.order-cleaning form{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.order-cleaning__title{font-size:35px;line-height:35px;text-align:left}.order-cleaning .orange-border-btn{width:192px;margin:0 0 30px;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-cleaning__agree{margin-top:0;width:100%}}@media (min-width:1440px){.order-cleaning{width:989px;padding:40px 67px;margin:-125px auto 100px;border-radius:20px}.order-cleaning input[type=text]{padding:20px;font-size:16px;line-height:19px;width:303px;display:inline-block;border-radius:10px}.order-cleaning__title{font-size:42px;line-height:42px;text-align:left;margin-bottom:30px;width:100%}.order-cleaning .orange-border-btn{width:210px;display:inline-block;margin-bottom:30px;border:none}.order-cleaning__agree{width:100%}}.order-cleaning-wrapper{background:#3f434b;margin-bottom:50px}.order-cleaning-wrapper .order-cleaning{margin:0 auto}@media (min-width:1440px){.order-cleaning-wrapper .order-cleaning{padding-top:75px;padding-bottom:75px}}.subscribe-form__description{margin-bottom:20px;font-style:italic;line-height:150%;text-align:center;color:#fff;opacity:.5}@media (min-width:768px){.subscribe-form{padding:40px}.subscribe-form input[type=email]{width:343px}.subscribe-form .order-cleaning__agree{width:100%;-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.subscribe-form form{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.subscribe-form__description{text-align:left}.subscribe-form .orange-border-btn{margin:0;width:240px}.subscribe-form .order-cleaning__title{margin-bottom:20px}}@media (min-width:1024px){.subscribe-form{padding:40px 50px;width:825px}.subscribe-form input[type=email]{width:475px}.subscribe-form__description{max-width:590px;font-size:16px}.subscribe-form .orange-border-btn{width:230px}.subscribe-form .order-cleaning__title{margin-bottom:25px}}@media (min-width:1440px){.subscribe-form{padding:35px 65px;width:1050px;max-width:1050px}.subscribe-form input[type=email]{width:655px}.subscribe-form__description{max-width:650px;margin-bottom:25px}.subscribe-form .orange-border-btn{width:230px}.subscribe-form .order-cleaning__title{margin-bottom:25px}}.gift-form-description{max-width:100%!important}.breadcrumbs{display:none}@media (min-width:768px){.breadcrumbs{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:40px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fcfcfc;height:50px;position:relative;overflow:hidden}.breadcrumbs__link{line-height:100%;font-weight:500;opacity:.5}.breadcrumbs__separator{margin:0 14px}.breadcrumbs__current{line-height:100%;font-weight:700}}@media (min-width:1024px){.breadcrumbs{height:54px;padding-left:60px}}body .pluso{position:absolute!important;right:60px;top:-55px;display:none}.pluso:after{content:"";position:absolute;right:-20px;top:50%;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);border:10px solid transparent;border-left:10px solid #262626}.pluso>div{width:auto}a.pluso-more{display:none!important}.pluso-wrap{border-radius:10px!important;padding:20px 20px 10px!important}.pluso-wrap>div{background:0 0!important;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;margin-bottom:10px;margin-right:0!important;height:auto!important}.pluso-wrap div b{width:36px!important;height:31px!important;border-radius:0 4px 4px 0;border:1px solid #424242;line-height:31px;text-align:center}.pluso-facebook,.pluso-odnoklassniki,.pluso-vkontakte{background:#424242 center no-repeat!important;background-size:auto 18px!important;border-radius:4px 0 0 4px!important;width:36px!important;height:31px!important;margin:0!important}.pluso-facebook{background-image:url(/local/markup/dist/css/../images/blog-detail/social/facebook.png)!important}.pluso-vkontakte{background-image:url(/local/markup/dist/css/../images/blog-detail/social/VK.png)!important}.pluso-odnoklassniki{background-image:url(/local/markup/dist/css/../images/blog-detail/social/ok.png)!important}@media (min-width:768px){body .pluso{right:40px;top:60px}.pluso:after{left:50%;right:auto;top:-20px;-webkit-transform:translate(-50%,0);transform:translate(-50%,0);border:10px solid transparent;border-bottom:10px solid #262626}}.swiper-slide{width:280px}.swiper-pagination{text-align:center;margin-top:40px;position:static}.swiper-pagination-bullet{display:inline-block;width:7px;height:7px;margin:0 5px;border-radius:10px;background:#000;opacity:.1}.swiper-pagination-bullet.swiper-pagination-bullet-active{opacity:1;width:12px}.chosen-wrapper{margin:0;width:100%;position:relative}.chosen-wrapper .chosen-container .chosen-single{height:44px;border:1px solid rgba(0,0,0,.1);font-size:14px;color:#000;padding:0 40px 0 16px;line-height:40px;-webkit-transition:all .25s ease;transition:all .25s ease;-webkit-box-shadow:none;box-shadow:none;background:0 0;border-radius:4px;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.chosen-wrapper .chosen-container .chosen-single:after{content:"";position:absolute;top:0;right:13px;bottom:0;margin:auto;width:20px;height:12px;background:url(/local/markup/dist/css/../images/select.svg) no-repeat center;transition:transform .2s,-webkit-transform .2s}.chosen-wrapper .chosen-container .chosen-single:hover{border-color:rgba(0,0,0,.1)}.chosen-wrapper .chosen-container .chosen-single b{display:none!important}.chosen-wrapper .chosen-container .chosen-single span{letter-spacing:0;padding:0;line-height:inherit;margin:0}@media (max-width:1023px){.chosen-wrapper .chosen-container .chosen-single{padding-right:15px}}.chosen-wrapper .chosen-container.chosen-with-drop .chosen-single{color:#000;border-color:rgba(0,0,0,.1)}.chosen-wrapper .chosen-container.chosen-with-drop .chosen-drop{opacity:1;visibility:visible;-webkit-transform:translateY(0);transform:translateY(0)}.chosen-wrapper .chosen-container.chosen-container-single-nosearch .chosen-search{display:none}.chosen-wrapper .chosen-container .chosen-drop{letter-spacing:0;-webkit-box-shadow:none;box-shadow:none;margin-top:0;-webkit-transition:all .25s cubic-bezier(.55,.085,.68,.53);transition:all .25s cubic-bezier(.55,.085,.68,.53);opacity:0;top:calc(100% - 3px);border:1px solid rgba(0,0,0,.1);border-top:none;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.chosen-wrapper .chosen-container .chosen-results{font-size:14px;color:#000;max-height:245px;margin:0;padding:0}.chosen-wrapper .chosen-container .chosen-results li{padding:5px 16px;min-height:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:all .25s;transition:all .25s;cursor:pointer}.chosen-wrapper .chosen-container .chosen-results li.highlighted,.chosen-wrapper .chosen-container .chosen-results li.result-selected{color:#000;background:#ecf3fc}.chosen-wrapper .chosen-container .chosen-results li.result-selected{cursor:default}.chosen-wrapper.is-active .chosen-container .chosen-single:after{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.chosen-wrapper_light .chosen-container .chosen-single{border:none;border-bottom:1px solid;border-radius:0}.chosen-wrapper_light .chosen-container .chosen-single:hover{border-color:#f3f3f3}.chosen-wrapper_light .chosen-container .chosen-drop{top:calc(100% - 1px);border:1px solid #f3f3f3;border-radius:0;background:#e5e5e5}.chosen-wrapper_dark .chosen-container.chosen-with-drop .chosen-single{color:#fff;border-color:rgba(255,255,255,.5)}.chosen-wrapper_dark .chosen-container .chosen-single{border-color:rgba(255,255,255,.2);color:#fff}.chosen-wrapper_dark .chosen-container .chosen-single:after{background:url(/local/markup/dist/css/../images/select.svg) no-repeat center}.chosen-wrapper_dark .chosen-container .chosen-single:hover{border-color:rgba(255,255,255,.5)}.chosen-wrapper_dark .chosen-container .chosen-drop{background:#21233c;border-color:rgba(255,255,255,.5)}.chosen-wrapper_dark .chosen-container .chosen-results{color:#fff}.chosen-wrapper_dark .chosen-container .chosen-results li.highlighted,.chosen-wrapper_dark .chosen-container .chosen-results li.result-selected{color:#fff;background:#383c69}.main-services__item{position:relative;padding:30px;height:357px;border-radius:20px;overflow:hidden}.main-services__title{font-weight:600;font-size:18px;line-height:22px;position:relative;max-width:250px;z-index:5}.main-services__image{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:143px;max-height:184px;-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s;z-index:4}.main-services__price{position:absolute;bottom:38px;line-height:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:5}.main-services__cost{opacity:.5;margin-right:5px}.main-services__value{font-weight:700}.main-services__link{position:absolute;top:0;left:0;right:0;bottom:0;-webkit-transition:background 1s;transition:background 1s;z-index:20}.main-services__bg-one,.main-services__bg-one .main-services__inner{background:linear-gradient(249.79deg,#f2ebe1 .68%,#ebe4da .69%,#e3ddd3 101.13%)}.main-services__bg-two,.main-services__bg-two .main-services__inner{background:linear-gradient(249.79deg,#eaf2ff .68%,#ced7e6 101.13%)}.main-services__image-bg{position:absolute;top:0;right:0;bottom:0;left:0;background:right no-repeat;background-size:auto 100%;-webkit-transform:none;transform:none;border-radius:20px 20px 20px 0;z-index:4}.main-services__curtains .main-services__price,.main-services__curtains .main-services__title,.main-services__curtains .orange__more{z-index:10}.main-services__bg-three,.main-services__bg-three .main-services__inner{background:linear-gradient(261.45deg,#e8d9c6 0,#c6b09c 97.53%)}.main-services__bg-four,.main-services__bg-four .main-services__inner,.main-services__bg-four .popular-service__inner{background:linear-gradient(249.79deg,#edf3f4 .68%,#eaf4fc .69%,#c6cfd6 101.13%)}.main-services__bg-five,.main-services__bg-five .main-services__inner,.main-services__bg-five .popular-service__inner{background:linear-gradient(249.79deg,#f1f2f3 .69%,#dddedf 101.13%)}.main-services__bg-six,.main-services__bg-six .main-services__inner,.main-services__bg-six .popular-service__inner{background:linear-gradient(249.79deg,#d5cccc .68%,#a39c9c 101.13%)}.main-services__bg-seven,.main-services__bg-seven .main-services__inner,.main-services__bg-seven .popular-service__inner{background:linear-gradient(15.52deg,#c6bfb8 1.23%,#e7e0d9 98.8%)}.main-services__bg-eight,.main-services__bg-eight .main-services__inner,.main-services__bg-eight .popular-service__inner{background:linear-gradient(249.79deg,#eaf2ff .68%,#828c9e 101.13%)}.main-services__bg-nine,.main-services__bg-nine .main-services__inneer,.main-services__bg-nine .popular-service__inneer{background:linear-gradient(249.79deg,#eaf2ff .68%,#ced7e6 101.13%)}.main-services__white-text{color:#fff}@media (min-width:768px){.main-services{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.main-services__item{margin-bottom:20px;padding-right:18px;overflow:visible;width:calc(50% - 10px);height:335px}.main-services__inner{position:absolute;top:0;left:0;right:0;bottom:0;border-radius:20px;overflow:hidden;z-index:2}.main-services__image{max-width:176px;max-height:160px}.main-services__title{font-weight:600;font-size:20px;line-height:24px}.main-services__price{bottom:32px;display:block}.main-services__cost{margin-right:0}.main-services__clother .main-services__title{width:160px}.main-services__curtains{width:100%}.main-services__store .main-services__title{width:135px}.main-services__item:hover .main-services__inner{-webkit-transform:perspective(1000px);transform:perspective(1000px);top:-4px;left:-4px;right:-4px;bottom:-4px}.main-services__item:before{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;background:#000;border-radius:20px;content:"";-webkit-transition:opacity .35s;transition:opacity .35s;-webkit-box-shadow:0 3px 30px rgba(0,0,0,.3);box-shadow:0 3px 30px rgba(0,0,0,.3);opacity:0}.main-services__item:hover:before{opacity:1}.main-services .visible-md{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media (min-width:1440px){.main-services .visible-md{display:none}.main-services__item{width:100%}.main-services__col-one{width:37.438%}.main-services__col-second{width:21.8181%}.main-services__col-third{width:37.438%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.main-services__clother{height:254px}.main-services__curtains{height:414px}.main-services__repair{height:333px}.main-services__carpet{height:335px}.main-services__store{width:100%;height:254px}.main-services__shoes{width:217px;height:414px}.main-services__bag{width:217px;height:414px}}.mobile-application{margin-top:40px;padding-top:25px;padding-bottom:40px;background:#f3ebe5}.mobile-application .row{text-align:center}.mobile-application__image{width:127px;margin:0 auto}.mobile-application__title{font-weight:200;font-size:32px;line-height:38px;margin-bottom:20px}.mobile-application__text{margin:25px 20px 30px;line-height:24px}.mobile-application__buttons{width:236px;margin:0 auto}.mobile-application__buttons a{margin:0 10px 10px;display:inline-block}.mobile-application__buttons a img{width:236px}@media (min-width:768px){.mobile-application{margin-top:60px;padding-top:40px;padding-bottom:40px}.mobile-application__text{max-width:477px;margin-left:auto;margin-right:auto}}@media (min-width:1024px){.mobile-application-wrapper{overflow:hidden}.mobile-application{margin-top:158px;padding-top:52px;padding-bottom:52px}.mobile-application .row{text-align:left;position:relative}.mobile-application__image{width:31%;margin:0;position:absolute;bottom:-85px;-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s}.mobile-application__description{margin-left:37.19%;max-width:550px}.mobile-application__title{font-weight:200;font-size:40px;line-height:48px;margin-bottom:35px}.mobile-application__text{margin:0 0 35px;font-size:16px;line-height:28px;max-width:100%}.mobile-application__buttons{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.mobile-application__buttons a{margin:0 20px 0 0}.mobile-application__buttons a img{width:213px}}@media (min-width:1440px){.mobile-application{margin-top:274px;padding-top:85px;padding-bottom:85px}.mobile-application__image{width:31.45%;margin:0;position:absolute;bottom:-85px;-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s}.mobile-application__description{margin-left:37.19%;max-width:550px}.mobile-application__title{font-weight:200;font-size:60px;line-height:44px;margin-bottom:35px}.mobile-application__text{margin:0 0 35px;font-size:16px;line-height:28px;max-width:100%}.mobile-application__buttons{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.mobile-application__buttons a{margin:0 20px 0 0}.mobile-application__buttons a img{width:236px}}.main-points{background:#f4f4f4;padding:40px 0}.main-points__item{-webkit-box-shadow:0 0 30px rgba(0,0,0,.03);box-shadow:0 0 30px rgba(0,0,0,.03);border-radius:15px;padding:100px 90px 30px 30px;background:#fff;margin-bottom:20px;min-height:370px;position:relative}.main-points__img{position:absolute;top:55px;left:30px;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);max-height:50px}.main-points__title{font-weight:600;font-size:16px;line-height:19px;margin-bottom:10px;position:relative}.main-points__description{line-height:24px;opacity:.5}.main-points .orange-border-btn{width:236px;margin:30px auto 0}.main-points__link{position:absolute;top:0;left:0;right:0;bottom:0;z-index:20}.main-points__item .orange__more{border:1px solid #000}.main-points__item:hover .orange__more{border:1px solid #f94f0d}@media (min-width:768px){.main-points{padding:60px 0}.main-points__list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.main-points__item{width:calc(50% - 10px);border-radius:20px;padding:113px 30px 95px 30px;background:#fff;min-height:365px}.main-points__item:hover{-webkit-box-shadow:0 3px 30px rgba(0,0,0,.3);box-shadow:0 3px 30px rgba(0,0,0,.3)}.main-points__inner{position:absolute;top:0;bottom:0;left:0;right:0;background:#fff;border-radius:20px}.main-points__img{left:30px}.main-points__item.hidden{display:block}.main-points__title{font-size:20px;line-height:24px}.main-points .orange-border-btn{display:none}}@media (min-width:1024px){.main-points{padding:80px 0}.main-points__item{padding:140px 85px 30px 30px;min-height:296px}}@media (min-width:1440px){.main-points{padding:125px 0}.main-points__item{padding:105px 40px 40px 40px;min-height:281px}.main-points__img{left:40px}.main-points__title{font-size:22px;line-height:27px}.main-points__description{font-size:16px;line-height:27px}}.main-delivery{padding:40px 20px;margin-top:60px;background:#f2f2ee}.main-delivery .row{text-align:center}.main-delivery__title{font-weight:200;font-size:32px;line-height:38px;margin-bottom:20px}.main-delivery__img{width:272px;height:175px;margin:0 auto}.main-delivery__description{margin:25px 20px 5px;line-height:24px}.main-delivery__discount{font-style:italic;font-weight:300;font-size:13px;line-height:22px;color:#f94f0d}.main-delivery__buttons{margin-top:15px}.main-delivery__buttons a{margin:0 auto 10px;width:236px;padding:15px 0;display:block}@media (min-width:768px){.main-delivery__title{margin-bottom:5px}.main-delivery__img{width:351px;height:auto}.main-delivery__description{margin:30px auto 10px;max-width:360px}}@media (min-width:1024px){.main-delivery-wrapper{overflow:hidden}.main-delivery{padding:60px 0 90px;margin-top:125px;position:relative}.main-delivery .row{text-align:left}.main-delivery__block{max-width:550px}.main-delivery__title{font-size:40px;line-height:48px;margin-bottom:30px}.main-delivery__img{width:44.4%;height:auto;margin:0;position:absolute;right:0;bottom:60px;-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s}.main-delivery__description{margin:0 0 20px;font-size:14px;line-height:24px;max-width:350px}.main-delivery__discount{font-style:italic;font-size:14px;line-height:24px}.main-delivery__buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-top:25px}.main-delivery__buttons a{margin:0 25px 0 0;padding:18px 0}}@media (min-width:1440px){.main-delivery{padding:85px 0 90px;margin-top:276px;position:relative}.main-delivery .row{text-align:left}.main-delivery__block{max-width:650px}.main-delivery__title{font-size:60px;line-height:60px;margin-bottom:30px}.main-delivery__img{width:639px;height:auto;margin:0;position:absolute;right:0;bottom:60px;-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s}.main-delivery__description{margin:0 0 20px;font-size:18px;line-height:31px;max-width:450px}.main-delivery__discount{font-style:italic;font-size:18px;line-height:31px}.main-delivery__buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-top:25px}.main-delivery__buttons a{margin:0 25px 0 0;padding:18px 0}}.main-business{background:#f5e9e1;padding:40px 0}.main-business .row{text-align:center}.main-business__img{width:238px;margin:0 auto}.main-business__title{font-weight:200;font-size:32px;line-height:38px;margin-bottom:15px}.main-business__text{margin:15px 20px 30px;line-height:24px}.main-business__buttons{margin-top:15px}.main-business__buttons a{margin:0 auto 10px;width:236px;display:block}@media (min-width:768px){.main-business{padding:50px 0}.main-business__img{width:287px}.main-business__description{max-width:515px;margin-left:auto;margin-right:auto}.main-business__title{margin-bottom:20px}.main-business__text{margin:15px 0 40px;line-height:24px}.main-business__buttons{margin-top:0}.main-business__buttons a{margin:0 auto 10px;width:236px;display:block}}@media (min-width:1024px){.main-business{padding:60px 0}.main-business .row{text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.main-business__img{width:30%;margin:0 5% 0 0}.main-business__description{max-width:100%}.main-business__title{font-size:40px;line-height:48px;margin-bottom:15px}.main-business__text{margin:30px 0 0;line-height:28px;max-width:550px}.main-business__buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-top:35px}.main-business__buttons a{margin:0 20px 0 0;width:212px}}@media (min-width:1440px){.main-business__img{width:38.76%;margin:0 7.44% 0 0}.main-business__text{font-size:16px}.main-business__buttons a{width:236px}}.bottom-text{padding:40px 0 18px}.bottom-text .row{text-align:center}.bottom-text__left{font-size:20px;line-height:32px;margin-bottom:15px}.bottom-text__right{font-size:12px;line-height:22px;opacity:.6}.bottom-text__right p{font-size:12px;line-height:22px;margin-bottom:22px}@media (min-width:768px){.bottom-text{padding:60px 0 40px}}@media (min-width:1024px){.bottom-text{padding:130px 0}.bottom-text .row{text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.bottom-text__left{font-size:20px;line-height:32px;margin-bottom:0;width:402px}.bottom-text__right{width:calc(100% - 440px);font-size:14px;line-height:25px}.bottom-text__right p{font-size:14px;line-height:25px;margin-bottom:25px}}@media (min-width:1440px){.bottom-text{padding:80px 0}.bottom-text__left{font-size:30px;line-height:48px;margin-bottom:0;width:33.22%}.bottom-text__right{width:54.54%;font-size:16px;line-height:29px}.bottom-text__right p{font-size:16px;line-height:29px;margin-bottom:29px}}.main-chemistry{padding:40px 0}.main-chemistry__item{position:relative;padding:30px;height:358px;border-radius:20px;background:#f4f4f4}.main-chemistry__title{font-weight:600;font-size:18px;line-height:22px;position:relative;text-align:center}.main-chemistry__description{display:none}.main-chemistry__image{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:148px;max-height:184px}.main-chemistry__price{position:absolute;bottom:38px;line-height:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.main-chemistry__cost{opacity:.5;margin-right:5px}.main-chemistry__value{font-weight:700}.main-chemistry__link{position:absolute;top:0;left:0;right:0;bottom:0;-webkit-transition:background 1s;transition:background 1s;border-radius:20px;z-index:20}@media (min-width:768px){.main-chemistry{padding:60px 0 0}.main-chemistry__col-second{background:#f4f4f4;border-radius:20px;position:relative}.main-chemistry__col-one,.main-chemistry__col-second,.main-chemistry__col-third{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:20px}.main-chemistry__item{width:calc(50% - 10px);text-align:center;height:358px}.main-chemistry__item:hover .main-chemistry__link{background:rgba(0,0,0,.05);border-radius:20px}.main-chemistry__title{display:none;font-size:20px;line-height:24px}.main-chemistry__image{position:absolute;top:85px;left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0);max-width:148px;max-height:148px;-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s}.main-chemistry__item:hover .main-chemistry__image{-webkit-transform:translate(-50%,0) scale3d(1.1,1.1,1);transform:translate(-50%,0) scale3d(1.1,1.1,1)}.main-chemistry__col-second>.main-chemistry__title{top:30px;position:absolute;width:100%;z-index:2}.main-chemistry__care{width:100%;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;height:316px;margin-top:20px}.main-chemistry_separator{width:1px;margin:90px 0 45px;background:#1f1f1f;opacity:.1}.main-chemistry__wash{height:316px}.main-chemistry__description{line-height:20px;margin:12px auto 0;max-width:212px;display:block;opacity:.5}.main-chemistry__description-title{margin-top:38px;font-weight:800;font-size:16px;line-height:19px}.main-chemistry__condition{height:316px;padding-top:40px}.main-chemistry__condition .main-chemistry__price,.main-chemistry__wash .main-chemistry__price{width:calc(100% - 60px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.main-chemistry__condition,.main-chemistry__wash{padding-top:35px}.main-chemistry__condition .main-chemistry__title,.main-chemistry__wash .main-chemistry__title{font-size:16px;line-height:20px}.main-chemistry__condition .main-chemistry__image,.main-chemistry__wash .main-chemistry__image{top:112px;max-height:136px}.main-chemistry__child,.main-chemistry__clean{width:calc(50% - 10px)}}@media (min-width:1024px){.main-chemistry{padding:80px 0 0}.main-chemistry__title{display:block}.main-chemistry .main-chemistry__col-one,.main-chemistry .main-chemistry__col-second,.main-chemistry .main-chemistry__col-third{display:-webkit-box;display:-ms-flexbox;display:flex}}@media (min-width:1440px){.main-chemistry{padding:80px 0 0}.main-chemistry .row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.main-chemistry__col-one,.main-chemistry__col-second,.main-chemistry__col-third{margin-bottom:0;display:block}.main-chemistry__col-one{width:23.81%}.main-chemistry__col-second{width:23.81%;background:#f4f4f4;border-radius:20px}.main-chemistry__col-third{width:49.17%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.main-chemistry__item{text-align:center;width:100%}.main-chemistry__item:hover .main-chemistry__link{background:rgba(0,0,0,.05);border-radius:20px}.main-chemistry__image{position:absolute;top:85px;left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0);max-width:148px;max-height:148px;-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s}.main-chemistry__item:hover .main-chemistry__image{-webkit-transform:translate(-50%,0) scale3d(1.1,1.1,1);transform:translate(-50%,0) scale3d(1.1,1.1,1)}.main-chemistry__home{margin-bottom:20px}.main-chemistry__col-second>.main-chemistry__title{top:30px}.main-chemistry__care{width:100%;margin-bottom:20px;margin-top:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;height:358px}.main-chemistry_separator{height:1px;margin:0 28px;background:#1f1f1f;opacity:.1;width:100%}.main-chemistry__wash{padding-top:92px;height:394px}.main-chemistry__wash .main-chemistry__title{margin-bottom:15px}.main-chemistry__wash .main-chemistry__image{top:184px;max-height:136px}.main-chemistry__description{line-height:20px;margin:17px auto 0;max-width:212px;display:block;opacity:.5}.main-chemistry__description-title{margin-top:38px;font-weight:800;font-size:16px;line-height:19px}.main-chemistry__condition{height:341px;padding-top:40px}.main-chemistry__condition .main-chemistry__price,.main-chemistry__wash .main-chemistry__price{width:calc(100% - 60px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.main-chemistry__condition .main-chemistry__title{font-size:16px;line-height:20px}.main-chemistry__condition .main-chemistry__image{top:133px;max-height:136px}.main-chemistry__child,.main-chemistry__clean{width:calc(50% - 9px);-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}.one-point{background:#fafafa;padding:40px 0}.one-point__title{font-weight:700;font-size:30px;line-height:120%;margin-bottom:24px}.one-point__info{margin-bottom:40px}.one-point__description,.one-point__description a{font-weight:400;font-size:16px;line-height:170%}.one-point__description{margin-bottom:40px}.one-point_arrival{font-weight:700;font-size:16px;line-height:100%;text-align:center;padding:18px 2px;width:238px;border:2px solid #f44e23;border-radius:100px;color:#f44e23;display:block;margin:0 auto}.one-point__image{height:310px;width:100%;-o-object-fit:cover;object-fit:cover;border-radius:10px}.one-point__prev{display:none}.one-point__next{display:none}@media (min-width:768px){.one-point{padding:80px 0}.one-point__title{font-size:40px;max-width:827px;margin:0 auto 40px}.one-point__block{max-width:827px;margin:0 auto}.one-point__info{margin-bottom:60px}.one-point__image-wrapper{line-height:0}.one-point__image{height:380px;border-radius:10px}.one-point__image-bottom-first,.one-point__image-bottom-second{height:8px;border-radius:0 0 20px 20px;margin:0 30px;background:#d9d5c5}.one-point__image-bottom-second{background:#ede8d7;margin:0 45px}}@media (min-width:1024px){.one-point{padding:120px 0}.one-point__title{font-size:50px;margin-bottom:50px;max-width:100%}.one-point__block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;max-width:100%}.one-point__info{margin:0 20px 0 0;position:relative}.one-point__description{margin-bottom:0}.one-point_arrival{position:absolute;bottom:66px}.one-point__list{width:485px;margin-right:53px;position:relative}.one-point__image{height:260px;border-radius:10px}.one-point__image-bottom-first,.one-point__image-bottom-second{height:10px;border-radius:0 0 20px 20px;margin:0 37px}.one-point__image-bottom-second{margin:0 55px}.one-point__next,.one-point__prev{display:-webkit-box;display:-ms-flexbox;display:flex;background:0 0;width:29px;height:29px;background:#f94f0d;border-radius:50px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.one-point__next svg,.one-point__prev svg{width:5px;height:10px}.one-point__prev{left:-53px}.one-point__next{right:-53px}}.card-grid__item{height:320px;border-radius:10px;background:#f2f1ee;position:relative;margin-bottom:10px}.card-grid__item .orange__more{bottom:26px}.card-grid__item:hover{-webkit-box-shadow:0 0 40px rgba(0,0,0,.14);box-shadow:0 0 40px rgba(0,0,0,.14)}.card-grid__img-wrapper{height:158px;width:200px;top:40px;left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0);position:absolute}.card-grid__img{max-width:100%;max-height:100%;position:absolute;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);top:50%;left:50%}.card-grid .card-grid__footer{position:absolute;bottom:0;height:86px;background:#fafafa;width:100%;border-radius:0 0 10px 10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.card-grid__name{width:160px;padding-left:30px;font-weight:600;font-size:18px}.card-grid__link{position:absolute;left:0;top:0;right:0;bottom:0;z-index:20}.card-grid .orange-border-btn{width:236px;margin:30px auto 0;color:#fff}@media (min-width:768px){.card-grid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.card-grid__item{height:335px;border-radius:20px;margin-bottom:20px;width:calc(50% - 10px)}.card-grid__img-wrapper{height:196px;width:200px;top:30px}.card-grid .card-grid__footer{border-radius:0 0 20px 20px}.card-grid__name{width:185px}.card-grid .orange-border-btn{width:280px;margin:50px auto 0}}@media (min-width:1024px){.card-grid{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.card-grid__item{height:424px;width:calc(33.3% - 14px);margin-right:20px}.card-grid__item .orange__more{bottom:30px}.card-grid__item.hidden{display:block}.card-grid__item:nth-child(3n){margin-right:0}.card-grid__img-wrapper{height:212px;width:200px;top:60px}.card-grid .card-grid__footer{height:94px}.card-grid__name{width:185px}.card-grid .orange-border-btn{display:none}.card-grid .orange-border-btn{display:none}}@media (min-width:1440px){.card-grid__item{height:462px;margin-right:20px}.card-grid__item .orange__more{bottom:49px}.card-grid__img-wrapper{height:218px;width:200px;top:53px}.card-grid .card-grid__footer{height:132px}.card-grid__name{width:185px;padding-left:40px}}@media (min-width:768px){.three-card-grid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.three-card-grid___col{width:calc(50% - 10px)}.three-card-grid .card-grid__item{width:100%;height:240px}.three-card-grid .card-grid__item:last-child{margin-bottom:0}.three-card-grid .card-grid__item .card-grid__img-wrapper{height:138px;width:120px;top:15px}.three-card-grid .card-grid__item .card-grid__footer{height:74px}.three-card-grid .card-grid__item .orange__more{bottom:20px}.three-card-grid .three-card-grid__first{width:100%;height:500px}.three-card-grid .three-card-grid__first .card-grid__img-wrapper{height:252px;width:250px;top:85px}}@media (min-width:1024px){.three-card-grid{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.three-card-grid .card-grid__item{width:100%;margin-right:0}}@media (min-width:1440px){.three-card-grid .card-grid__item{height:288px}.three-card-grid .card-grid__item .card-grid__img-wrapper{height:150px;width:200px;top:19px}.three-card-grid .card-grid__item .card-grid__footer{height:100px}.three-card-grid .card-grid__item .orange__more{bottom:33px}.three-card-grid .three-card-grid__first{height:596px}.three-card-grid .three-card-grid__first .card-grid__img-wrapper{height:452px;width:440px;top:22px}}.card-content{border-radius:10px}.card-content:hover{-webkit-box-shadow:0 0 40px rgba(0,0,0,.14);box-shadow:0 0 40px rgba(0,0,0,.14)}.card-content__image{background:50% 50% no-repeat;background-size:cover;border-radius:10px 10px 0 0}.card-content__footer{background:#fafafa;padding:30px 30px 0;border-radius:0 0 10px 10px}.card-content__name{font-weight:600;font-size:18px;margin-bottom:10px}.card-content__date{font-size:13px;margin-bottom:10px;opacity:.5}.card-content__description{width:calc(100% - 45px);opacity:.5;font-size:13px}.card-content__link{position:absolute;top:0;bottom:0;left:0;right:0;z-index:20}.card-content__icon{width:50px;height:50px;top:30px;right:30px;position:absolute;z-index:10}@media (min-width:768px){.card-content{border-radius:16px}.card-content__image{border-radius:16px 16px 0 0}.card-content__footer{padding:15px 20px 0;border-radius:0 0 10px 10px}.card-content__name{font-size:16px;margin-bottom:5px}.card-content__description{width:calc(100% - 45px);font-size:12px}}@media (min-width:1024px){.card-content{border-radius:20px}.card-content__image{border-radius:20px 20px 0 0}.card-content__footer{padding:30px 30px 0;border-radius:0 0 20px 20px}.card-content__name{font-size:18px;margin-bottom:10px}.card-content__description{width:calc(100% - 45px);font-size:13px}}@media (min-width:1440px){.card-content__footer{padding:40px 40px 0}.card-content__name{font-size:20px}.card-content__description{width:calc(100% - 45px)}}.promo{padding-bottom:50px}.promo__header .border-btn{display:none}.promo__item{position:relative;height:398px;border-radius:20px;overflow:hidden}.promo__img{border-radius:20px;position:absolute;top:26px;right:0;max-width:184px;max-height:173px}.promo__icon{height:33px;width:62px;border-radius:20px 0 20px 0;background:#c3c3c4;font-weight:700;font-size:13px;line-height:18px;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:#fff;position:absolute;top:0;left:0}.promo__text{position:absolute;left:20px;bottom:82px;width:calc(100% - 40px)}.promo__digit{font-weight:200;font-size:62px;line-height:62px;opacity:.4;margin-bottom:10px}.promo__name{font-weight:600;font-size:14px;line-height:20px}.promo__link{position:absolute;top:0;left:0;right:0;bottom:0;z-index:20}.promo__footer{text-align:center;margin-top:30px}.promo__one{background:linear-gradient(70.66deg,#e3c1a1 .36%,#fff3e9 99.56%)}.promo__two{background:linear-gradient(249.79deg,#f1f2f3 .69%,#dddedf 101.13%)}.promo__three{background:linear-gradient(70.66deg,#cfd9df .36%,#ebf4fa 99.56%)}.promo__four{background:linear-gradient(70.66deg,#ded2c8 .36%,#fff6ef 99.56%)}.promo__five{background:linear-gradient(261.45deg,#fefff2 0,#cacbb5 97.53%)}.promo__six{background:linear-gradient(261.45deg,#e4eaef 0,#bbcbf0 97.53%)}.promo__seven{background:linear-gradient(70.66deg,#dedae7 .36%,#fbf9ff 99.56%)}.promo__eight{background:linear-gradient(70.66deg,#c6c8c3 .36%,#fdfff9 99.56%)}.promo__nine{background:linear-gradient(261.45deg,#fff8fc 0,#ded8db 97.53%)}.promo__ten{background:linear-gradient(249.79deg,#fafbff .69%,#caccd7 101.13%)}.promo__item .promo__img-fone{left:0;position:absolute;top:0;right:0;bottom:0;background-position:right;-webkit-transform:none;transform:none;background-size:auto 100%;height:100%;border-radius:20px}.promo__block-inner{position:absolute;top:0;left:0;right:0;height:100%}@media (min-width:768px){.promo__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.promo__header .border-btn{display:block;margin-bottom:40px}.promo__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.promo__item{margin-bottom:20px;overflow:hidden;width:calc(50% - 10px)}.promo__item:hover .promo__icon{background:#f94f0d}.promo__text{left:30px;bottom:30px;width:calc(100% - 40px)}.promo__digit{font-size:65px;line-height:65px;margin-bottom:15px}.promo__name{font-size:14px;line-height:20px;width:calc(100% - 80px);height:60px;overflow:hidden}.promo__footer{display:none}}@media (min-width:1024px){.promo__item .promo__name{width:270px}.promo__digit{font-size:75px;line-height:75px}.promo__name{font-size:16px;line-height:22px;height:44px}}@media (min-width:1440px){.promo__item{height:355px}.promo__img{max-height:282px;max-width:290px}.promo__item-half{width:calc(50% - 10px)}.promo__item-half .promo__name{width:258px}.promo__icon{height:47px;width:76px;font-size:16px;line-height:23px}.promo__text{left:40px;bottom:50px;width:calc(100% - 40px)}.promo__digit{font-size:98px;line-height:98px;margin-bottom:10px}.promo__name{font-size:20px;line-height:28px;height:auto}.promo__item-wide{width:calc(64.45% - 10px)}.promo__item-wide .promo__name{width:350px}.promo__item-narrow{width:calc(35.55% - 10px)}.promo__item-narrow .promo__name{width:180px}}.promo.promo-full-page{padding-top:0}.promo.promo-full-page .promo__item{margin-bottom:20px}@media (min-width:768px) and (max-width:1439px){.promo__item-md-full{width:100%}}.promo.promo-other{background:#fafafa;padding:40px 0}.promo.promo-other h2{text-align:center}@media (min-width:768px){.promo.promo-other{padding:50px 0}.promo.promo-other h2{text-align:left}}@media (min-width:1024px){.promo.promo-other{padding:70px 0}}@media (min-width:1440px){.promo.promo-other{padding:80px 0}}.price_service{padding:40px 0 20px}.price_service .orange-border-btn{width:236px;margin:30px auto 0;color:#fff}.card-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.card{height:350px;padding:30px 15px 0;text-align:center;position:relative;background:#fafafa;border-radius:20px;margin-bottom:10px;width:calc(50% - 5px)}.card__title{font-weight:600;font-size:14px;margin-bottom:10px}.card__description{max-height:24px;font-weight:500;color:#252528;opacity:.5;font-size:10px}.card__volume{color:#252528;line-height:100%;font-size:10px}.card__volume-word{opacity:.5}.card__volume-value{font-weight:600}.card__img-wrapper{position:absolute;top:134px;height:145px;width:calc(100% - 30px);left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}.card__img{max-height:145px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.card__footer{position:absolute;bottom:35px;width:calc(100% - 60px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.card__price{font-size:15px}.card__price .old-price{margin-left:5px;opacity:.5;text-decoration:line-through;font-weight:400}.card__price .old-price .card__price-value{font-weight:400}.card__price-value{font-size:18px;font-weight:700}.card__icon{position:absolute;top:0;right:0;max-width:46px;max-height:46px}.card__link{position:absolute;top:0;bottom:0;left:0;right:0}@media (min-width:768px){.price_service{padding:60px 0 30px}.price_service .orange-border-btn{width:280px;margin:50px auto 0}.card-list{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.card{width:calc(50% - 10px);padding:40px 30px 0;margin-bottom:20px;height:462px}.card__title{font-size:20px;margin-bottom:15px}.card__description{height:28px;font-size:14px}.card__volume{font-size:14px}.card__img-wrapper{top:145px;height:212px;width:calc(100% - 60px)}.card__img{max-height:212px}.card .orange-border-btn{display:none}.card__price .old-price{margin-left:10px}.card:hover{-webkit-box-shadow:0 0 40px rgba(0,0,0,.14);box-shadow:0 0 40px rgba(0,0,0,.14)}.card:nth-child(odd){margin-right:20px}}@media (min-width:1024px){.price_service{padding:80px 0}.price_service .orange-border-btn{display:none}.card{width:calc(33.333% - 14px)}.card:nth-child(odd){margin-right:0}.card:nth-child(3n+1),.card:nth-child(3n+2){margin-right:20px}.card.hidden{display:block}}@media (min-width:1440px){.price_service{padding:100px 0 50px}.card{width:calc(25% - 15px);padding-left:18px;padding-right:18px}.card:nth-child(3n+1),.card:nth-child(3n+2){margin-right:0}.card:nth-child(4n+1),.card:nth-child(4n+2),.card:nth-child(4n+3){margin-right:20px}.card__wide:nth-child(4n+1),.card__wide:nth-child(4n+2),.card__wide:nth-child(4n+3){margin-right:0}.card__wide{width:calc(33.333% - 14px)}.card__wide:nth-child(odd){margin-right:0}.card__wide:nth-child(3n+1),.card__wide:nth-child(3n+2){margin-right:20px}}.prepayment{padding:40px 0;background:#f2f2ee}.prepayment .row{text-align:center}.prepayment__left{font-weight:200;font-size:72px;line-height:100%;margin-bottom:25px}.prepayment__word{font-weight:300;font-size:26px;line-height:190%}.prepayment__right{max-width:280px;font-weight:500;line-height:140%;margin:0 auto}.prepayment .orange-border-btn{margin-top:30px}@media (min-width:768px){.prepayment{padding:85px 0}.prepayment .row{text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.prepayment__left{font-size:89px;margin-bottom:0;width:35%;text-align:center}.prepayment__word{font-size:32px}.prepayment__right{line-height:190%;margin:0;width:65%;max-width:65%}.prepayment .orange-border-btn{margin-top:40px;display:block;width:347px;padding-top:20px;padding-bottom:20px}}@media (min-width:1024px){.prepayment__left{font-size:122px;margin-bottom:22px;width:45%}.prepayment__word{font-size:40px}.prepayment__right{max-width:460px}}@media (min-width:1440px){.prepayment__left{font-size:122px;margin-bottom:22px}.prepayment__word{font-size:40px}.prepayment__right{max-width:585px;font-size:18px}}.modal-tariff__row{padding-bottom:20px;border:none;border-bottom:1px solid #fafafa;margin-bottom:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.modal-tariff__row:last-child{padding-bottom:0;margin-bottom:0;border-bottom:none}.modal-tariff__place{line-height:140%;width:105px;text-align:left}.modal-tariff__price{font-size:16px;font-weight:700;line-height:100%}@media (min-width:768px){.modal-tariff__row{padding-bottom:30px;margin-bottom:30px}.modal-tariff__row:last-child{padding-bottom:0;margin-bottom:0}.modal-tariff__place{line-height:100%;width:50%;font-size:20px}.modal-tariff__price{font-size:18px}}.accessories-list{margin-bottom:40px}@media (min-width:768px){.accessories-list{margin-bottom:60px}}@media (min-width:1024px){.accessories-list{margin-bottom:80px}}@media (min-width:1440px){.accessories-list{margin-bottom:100px}}.wash-list .card__img-wrapper{top:134px;height:145px;max-height:145px}@media (min-width:768px){.wash-list .card__img-wrapper{top:175px;height:210px;max-height:210px}}@media (min-width:1024px){.only-four-card .card{width:calc(50% - 10px);margin-right:20px}.only-four-card .card:nth-child(even){margin-right:0}}@media (min-width:1440px){.only-four-card .card{width:calc(25% - 15px)}.only-four-card .card:nth-child(even){margin-right:20px}.only-four-card .card:nth-child(4n){margin-right:0}}@media (max-width:767px){.card .add-basket{height:24px;width:24px;right:15px;bottom:15px}.card__footer{bottom:20px}.card__price{font-size:12px}.card__price-value{font-size:12px}}.orange-text{color:#f94f0d}.simple{background:#fafafa;margin-top:-40px;padding-top:40px;padding-bottom:10px}.simple__item{margin-bottom:20px}.simple__digit{font-weight:700;font-size:40px;line-height:60px;opacity:.1;margin-bottom:1px}.simple__separator{height:2px;background:rgba(0,0,0,.1);position:relative}.simple__red{position:absolute;height:4px;background:#f94f0d;top:-1px;width:80px}.simple__title{margin-top:21px;font-weight:700;font-size:16px;line-height:24px;margin-bottom:10px;max-width:300px}.simple__text{line-height:21px;max-width:300px}@media (min-width:768px){.simple{margin-top:-300px;padding-top:300px;padding-bottom:10px}.simple__list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.simple__item{margin-bottom:55px;width:calc(50% - 5px)}.simple__title{margin-top:37px;font-size:20px;line-height:30px;margin-bottom:25px}}@media (min-width:1024px){.simple{margin-top:-300px;padding-top:300px;padding-bottom:30px}.simple__item{width:calc(50% - 30px)}.simple__text{font-size:16px;line-height:24px}}@media (min-width:1440px){.simple{margin-top:-300px;padding-top:300px;padding-bottom:125px}.simple__item{margin-bottom:0;width:calc(25% - 28px)}}.reception__map{height:500px}@media (min-width:768px){.reception__map{height:560px}}@media (min-width:1440px){.reception__map{height:600px}}.balloon{padding:8px;line-height:190%;text-align:left}.balloon__value{font-weight:500}.price{margin-bottom:50px}.price__top{padding:35px 20px;margin-left:-20px;margin-right:20px;width:calc(100% + 40px);background:#fafafa}.price__header{border:none;border-bottom:1px solid #e7e7e7;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.price__header-link{font-size:16px;line-height:100%;opacity:.5;margin:0 5px -1px;padding-bottom:18px;border:none;border-bottom:2px solid transparent}.price__header-link.active{border-bottom:2px solid #f94f0d;color:#262626;font-weight:700;opacity:1}.price__search{margin:30px 0;position:relative}.price__search-input[type=text]{width:100%;border:1px solid #f3f3f3;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:120px;margin-bottom:0;padding-left:20px;padding-right:20px}.price__search-button{background:0 0;border:none;position:absolute;top:0;right:10px;width:50px;height:50px;padding:0;cursor:pointer}.price__search-button svg{width:20px;height:20px}.price .tabs-list{margin-bottom:0}.price__warning{padding:25px 60px 20px 20px;margin-left:-20px;margin-right:20px;width:calc(100% + 40px);background:#f5e1c9;font-style:italic;color:#83786c}.price__caption{width:100%;font-size:11px;opacity:.5;margin-bottom:5px}.price__name-wrapper{width:100%}.price__name{width:100%;border:none;border-bottom:1px solid #e7e7e7;padding-bottom:15px;margin-bottom:15px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-weight:600;color:#000;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.price__title{width:calc(100% - 40px)}.price__service{font-weight:600;padding-bottom:15px;margin-bottom:15px;border:none;border-bottom:1px solid #e7e7e7;width:100%}.price__unit{font-weight:500}.price__unit__caption{margin-bottom:7px}.price__price{font-weight:700;font-size:16px;text-align:center}.price__buttons{margin-top:15px;padding-top:20px;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;width:100%;border:none;border-top:1px solid #e7e7e7}.price__item{margin-top:20px;background:#fafafa;border-radius:10px;padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.price__icon{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;cursor:pointer}.price__icon svg{width:17px;height:17px}.price__tooltip{display:none}.price__note{opacity:.5}.price__yes{width:40px;height:40px;margin-right:14px}.price__link-remove{color:#626262;font-style:italic;font-weight:500;font-size:13px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.price__link-remove svg{width:14px;height:16px;margin-left:7px}.price .orange-border-btn{padding-top:10px;padding-bottom:10px;font-size:13px;line-height:100%}@media (min-width:450px){.price__header-link{margin-left:10px;margin-right:10px}}@media (min-width:768px){.price__top{padding:40px 0 30px;margin-left:0;margin-right:0;width:100%;border-radius:10px 10px 0 0}.price__search{margin:40px 30px}.price__search-input[type=text]{padding-left:30px;padding-right:30px}.price .tabs-list{padding:0 30px}.price__warning{padding:25px 33% 25px 20px;margin-left:0;margin-right:0;width:100%}.price__caption{width:100%;font-size:12px;margin-bottom:9px}.price__name-wrapper{height:85px}.price__name-wrapper{width:auto}.price__name{width:215px;border:none;padding-bottom:15px;margin-bottom:0;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.price__title{width:160px;margin-right:15px}.price__service{padding-bottom:0;margin-bottom:0;border:none;width:215px}.price__unit{font-weight:500;height:85px;width:calc(100% - 430px);margin-right:40px;text-align:center}.price__unit__caption{margin-bottom:9px}.price__quantity{width:calc(100% - 430px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:40px;margin-top:5px}.price__price{font-weight:700;font-size:16px;text-align:center;width:175px;height:85px}.price__buttons{margin-top:0;padding-top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:175px;border:none}.price__item{margin-top:0;border-radius:0;padding:30px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;height:216px}.price__item:nth-child(even){background:#f5f5f5}.price__item:last-child{border-radius:0 0 10px 10px}.price__icon{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.price__icon svg{width:17px;height:17px}.price__tooltip{display:none}.price__note{opacity:.5;width:100%}.price__yes{margin-right:10px}.price__link-remove{color:#626262;font-style:italic;font-weight:500;font-size:13px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:5px 0}.price .orange-border-btn{font-size:13px;line-height:100%;padding:12px 30px}}@media (min-width:1024px){.price__header-link{font-size:18px;margin-left:20px;margin-right:20px}.price__top{border-radius:20px 20px 0 0}.price__search{margin:40px 30px}.price .tabs-list{padding:0 40px}.price__warning{padding:25px 40px;text-align:center}.price__caption{width:100%;font-size:13px}.price__name{width:275px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:16px}.price__title{width:auto;max-width:230px;margin-right:15px}.price__service{width:275px}.price__unit{font-weight:500;width:calc(100% - 550px);margin-right:100px;text-align:center}.price__quantity{width:calc(100% - 550px);margin-right:100px}.price__item{padding:30px 40px}.price__item:last-child{border-radius:0 0 20px 20px}.price__tooltip{display:none}}@media (min-width:1440px){.price__search{margin:30px 70px}.price .tabs-list{padding:0 70px}.price__warning{padding:35px 40px;text-align:center}.price__caption{padding:25px 70px;border:none;border-bottom:1px solid #fafafa;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:0}.price__name-wrapper{height:auto}.price__name{width:240px;margin-right:20px;display:block;padding-bottom:0;position:relative}.price__icon{left:-30px;position:absolute;top:50%;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}.price__caption .price__name{font-weight:400}.price__title{width:auto;max-width:100%;margin-right:0}.price__service{width:230px;margin-right:20px}.price__unit{font-weight:500;width:50px;margin-right:0;height:auto}.price__quantity{width:100px;margin-right:0}.price__price{width:100px;height:auto}.price__caption .price__price{font-weight:400}.price__item{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:25px 70px;height:90px}.price__item .price__caption{display:none}.price__item:last-child{border-radius:0 0 20px 20px}.price__tooltip{display:none}[aria-label][role~=tooltip]{position:absolute}}.price [aria-label][role~=tooltip]::after{width:200px;white-space:break-spaces;z-index:30}@media (min-width:1440px){.price [aria-label][role~=tooltip]::after{width:250px}}.basket__buttons{width:98px;height:30px;border:1px solid #ddd;border-radius:60px;display:-webkit-box;display:-ms-flexbox;display:flex;background:0 0}.basket__minus,.basket__plus{width:33px;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}.basket__input[type=text]{width:35px;border:none;line-height:28px;font-weight:500;font-size:16px;color:#212121;margin-bottom:0;padding:0;text-align:center;background:0 0}.small-basket{width:76px;height:72px;position:fixed;bottom:0;right:0;z-index:40;background:#f94f0d;border-radius:41px 0 0 0}.small-basket svg{width:21px;height:27px;margin-left:28px;margin-top:23px}.small-basket__count{position:absolute;top:22px;left:39px;width:21px;height:21px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:100px;background:#262626;font-weight:500;font-size:12px;line-height:21px;color:#fff}.order-window{position:fixed;top:80px;left:0;width:100%;bottom:0;background:#fafafa;z-index:3000;-webkit-transform:translateY(-100%);transform:translateY(-100%);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;will-change:transform;opacity:0;overflow-y:scroll}.order-window.order-window-open{-webkit-transform:translateY(0);transform:translateY(0);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;will-change:transform}.order-window.order-window-opacity{opacity:1}.order-window__close{position:absolute;top:35px;width:24px;height:24px;background:url(/local/markup/dist/css/../images/close.svg) center;background-size:cover;right:20px;cursor:pointer}.order-window__content{position:static;bottom:0;top:0;left:0;right:0;padding:30px 20px 50px;color:#000}.order-window__title{font-weight:700;font-size:30px;margin-bottom:20px}.order-item{border:none;border-top:1px solid #e7e7e7;padding:30px 0 30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.order-item__name{font-weight:600;max-width:190px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-item__note{opacity:.5}.order-item__service{margin:12px 0 18px;width:100%;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;font-weight:500}.order-item__unit{font-weight:500;-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-item__quantity{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-item__price{font-weight:700;font-size:16px;-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-item__remove{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-item__remove-link{width:38px;height:38px;border-radius:40px;background:#1f1f1f;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}.order-item__remove-link svg{width:14px;height:16px}.order__summary{border:none;border-top:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7;padding:30px 0 20px;margin-bottom:30px}.order__warning{text-align:center}.order__warning-text{margin:20px auto 30px;max-width:250px;font-weight:300;line-height:140%;color:#252528;opacity:.6;font-style:italic}.order__exclamation{width:18px;height:18px}.order__sum{border:none;border-top:1px solid #e7e7e7;padding-top:20px;font-size:18px;font-weight:700;text-align:center}.order__sum-word{font-size:14px;text-transform:uppercase;opacity:.5;font-weight:400;margin-right:5px}.order__form{text-align:center}.order__form-title{max-width:210px;margin:0 auto 25px}.order__form input[type=text]{text-align:left;background:#f7f7f7;border:1px solid rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px}.order__form input[type=text].error{border:1px solid #f94f0d}.order__form .orange-border-btn{width:100%}@media (min-width:768px){.order-window__close{top:40px;right:40px}.order-window__content{padding:40px 40px 60px}.order-item{border:none;border-bottom:1px solid #e7e7e7;padding:20px 0;min-height:85px}.order-item__name{font-weight:600;max-width:190px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;line-height:140%;width:165px}.order-item__service{margin:0;width:160px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;font-size:12px}.order-item__unit{width:30px;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-item__quantity{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-item__price{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5;width:80px;text-align:right}.order-item__remove{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order__summary{border-top:none;padding:25px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.order__warning{text-align:left;padding-left:40px;position:relative}.order__warning-text{margin:0;max-width:350px}.order__exclamation{top:50%;left:0;position:absolute;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}.order__sum{padding-top:0;border-top:none}.order__form{text-align:left}.order__form-title{max-width:100%;margin:0 auto 25px;font-size:16px}.order__form form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.order__form input[type=text]{width:228px;border-radius:10px}.order__form .orange-border-btn{width:195px;padding-left:30px;padding-right:30px;margin-bottom:30px}}@media (min-width:1024px){.order-window{width:calc(100% + 17px)}.order-window__close{top:50px}.order-window__content{padding:40px 40px 60px;text-align:center}.order-window__title{font-size:40px;max-width:944px;margin-left:auto;margin-right:auto;text-align:left}.order{text-align:center}.order__inner{max-width:944px;text-align:left;margin:0 auto}.order-item__name{font-size:16px;max-width:210px;width:210px}.order-item__service{width:190px;font-size:14px}.order__summary{padding:30px 0}.order__warning{padding-left:50px}.order__exclamation{left:10px}.order__sum{font-size:18px}.order__sum-word{font-size:16px}.order__form input[type=text]{width:337px}.order__form .orange-border-btn{width:230px;padding-left:30px;padding-right:30px}}@media (min-width:1024px){.order-window__close{top:50px;right:60px;width:30px}.order-window__content{padding:50px 40px 60px}.order-window__title{font-size:30px}}.order-page{padding:30px 0 50px}@media (min-width:768px){.order-page{padding:40px 0 60px}}@media (min-width:768px){.order-page{padding:50px 0 60px}}.about-top{padding-top:40px;color:#000}.about-top__brown{background:linear-gradient(70.66deg,#e6d3bc .36%,#fbf3e8 99.56%);border-radius:20px 50px 20px 50px;padding:50px 30px 110px;position:relative}.about-top__title{font-weight:700;font-size:30px;line-height:100%;margin-bottom:20px}.about-top__description{line-height:170%}.about-top__signature{position:absolute;bottom:30px;right:30px;font-style:italic;font-weight:700;font-size:12px;line-height:150%;width:175px}.about-top__signature:before{position:absolute;top:9px;left:-70px;width:55px;height:1px;background:#f44e23;content:" "}.about-top__clothes{margin:20px -20px -85px;padding-left:20px;padding-right:20px;overflow:hidden;position:relative;height:395px}.about-top__clothes-first{width:117px;left:50%;-webkit-transform:translate(-235px,0);transform:translate(-235px,0);position:absolute}.about-top__clothes-second{position:absolute;top:55px;left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0);width:138px}.about-top__clothes-third{position:absolute;top:230px;width:125px;left:50%;-webkit-transform:translate(112px,0);transform:translate(112px,0)}.about-top__establish{margin-bottom:30px}.about-top__year{font-weight:100;font-size:79px;line-height:100%;color:#f44e23}.about-top__phrase{font-size:10px;line-height:100%;letter-spacing:.15em;text-transform:uppercase}.about-top__text{font-weight:500;line-height:180%;margin-bottom:40px}@media (min-width:768px){.about-top__brown{border-radius:20px 50px 20px 50px;padding:60px 40px 155px}.about-top__title{font-size:40px;margin-bottom:45px}.about-top__description{font-size:16px}.about-top__signature{bottom:50px;right:200px;font-size:14px;line-height:150%;width:240px}.about-top__clothes{margin:20px 0 -100px;padding:0;height:360px}.about-top__clothes-first{left:0;-webkit-transform:none;transform:none}.about-top__clothes-second{top:50px;left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0);width:167px}.about-top__clothes-third{top:130px;width:175px;left:auto;right:0;-webkit-transform:none;transform:none}.about-top__establish{margin-bottom:60px}.about-top__text{margin-bottom:60px}}@media (min-width:1024px){.about-top{padding-top:50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:70px}.about-top__brown{border-radius:20px 170px 20px 170px;padding:200px 40px 110px 40px;position:relative;width:60%;height:628px;margin-bottom:100px}.about-top__title{font-size:50px;margin-bottom:40px}.about-top__description{font-size:18px}.about-top__signature{bottom:95px;right:70px;font-size:16px;width:230px}.about-top__signature:before{top:12px}.about-top__clothes{width:calc(40% - 80px);margin:0;height:628px;padding-right:0;padding-top:25px}.about-top__clothes-second{position:absolute;top:389px}.about-top__clothes-third{top:147px}.about-top__establish{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4;margin-bottom:0}.about-top__year{font-size:99px}.about-top__phrase{font-size:12px;text-align:center}.about-top__text{font-size:16px;margin-bottom:0;width:75%}}@media (min-width:1440px){.about-top{padding-top:55px;margin-bottom:150px}.about-top__brown{padding:210px 60px 210px 60px;height:660px;margin-bottom:115px}.about-top__title{font-size:60px}.about-top__description{font-size:22px}.about-top__signature{bottom:70px;right:225px}.about-top__clothes{width:calc(40% - 100px);height:660px;padding-top:45px}.about-top__clothes-first{width:150px}.about-top__clothes-second{top:410px}.about-top__clothes-third{top:95px}.about-top__establish{margin-bottom:0}.about-top__year{font-size:142px}.about-top__phrase{font-size:14px}.about-top__text{font-size:18px;margin-bottom:0;width:65%}}.about-links{position:relative}.about-links .card-content__image{height:236px}.about-links .card-content__footer{height:140px}@media (min-width:768px){.about-links .swiper-slide{width:310px}.about-links .card-content__image{height:216px}.about-links .card-content__footer{height:94px}}@media (min-width:1024px){.about-links__list{display:-webkit-box;display:-ms-flexbox;display:flex}.about-links__item{width:calc(33% - 14px);margin-right:20px}.about-links__item:nth-child(3n){margin-right:0}.about-links .card-content{position:relative}.about-links .card-content__image{height:238px}.about-links .card-content__footer{height:160px}}@media (min-width:1440px){.about-links .card-content__image{height:316px}.about-links .card-content__footer{height:145px}.about-links .card-content__name{font-size:18px}}.about-advantages{margin-top:40px;padding:40px 0;background:#fafafa}.about-advantages .row{position:relative}.about-advantages__title{text-align:center}.about-advantages__image{height:308px;background:50% 50% no-repeat;background-size:cover;border-radius:10px}.about-advantages__block{padding-top:50px;position:relative}.about-advantages__digit{top:15px;font-weight:200;font-size:92px;line-height:100%;text-align:center;opacity:.03;position:absolute;width:100%}.about-advantages__name{font-weight:600;font-size:18px;text-align:center;margin-bottom:38px}.about-advantages__description{line-height:170%;text-align:center}.about-advantages__prev{display:none}.about-advantages__next{display:none}@media (min-width:768px){.about-advantages{margin-top:80px;padding:60px 0}.about-advantages__image{height:380px;border-radius:20px}.about-advantages__image-bottom-first,.about-advantages__image-bottom-second{height:8px;border-radius:0 0 20px 20px;margin:0 30px;background:#d9d5c5}.about-advantages__image-bottom-second{margin:0 45px;background:#ede8d7}.about-advantages__block{padding-top:70px}.about-advantages__digit{top:20px;font-size:120px;text-align:center}.about-advantages__name{font-size:24px;margin-bottom:55px}.about-advantages__description{font-size:16px}}@media (min-width:1024px){.about-advantages{margin:80px auto 0;padding:60px 0}.about-advantages .row{text-align:center}.about-advantages__list{max-width:827px;text-align:left;margin:0 auto}.about-advantages__image{height:460px}.about-advantages__image-bottom-first,.about-advantages__image-bottom-second{height:10px;margin:0 37px}.about-advantages__image-bottom-second{margin:0 55px}}@media (min-width:1440px){.about-advantages{margin-top:150px;padding:95px 0 65px}.about-advantages .row{text-align:left}.about-advantages__title{margin-left:495px;width:calc(100% - 495px);text-align:left}.about-advantages__list{max-width:1265px;width:1265px;text-align:left;margin:0 auto}.about-advantages__item{display:-webkit-box;display:-ms-flexbox;display:flex}.about-advantages__image-wrapper{width:770px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.about-advantages__image{height:500px}.about-advantages__block{padding-top:60px;width:440px;margin-right:55px}.about-advantages__digit{top:0;font-size:150px;text-align:left}.about-advantages__name{font-size:24px;margin-bottom:65px;text-align:left}.about-advantages__description{text-align:left}.about-advantages__next,.about-advantages__prev{display:-webkit-box;display:-ms-flexbox;display:flex;bottom:100px;top:auto;left:40px;width:60px;height:60px;border-radius:60px;background:#f94f0d;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.about-advantages__next:hover,.about-advantages__prev:hover{background:#f94f0d}.about-advantages__next svg,.about-advantages__prev svg{width:13px;height:23px}.about-advantages__next{left:120px;right:auto}.swiper-pagination-about-advantages{margin-left:495px;width:770px}}.about-why{margin:60px 0}.about-why__title{text-align:center}.about-why__name{font-weight:700;font-size:16px;line-height:150%;text-align:center;margin-bottom:10px}.about-why__text{line-height:140%;text-align:center;opacity:.5}.about-why__image{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:65px;max-height:53px}.about-why__image-wrapper{height:53px;position:relative;margin-bottom:10px}@media (min-width:768px){.about-why{margin:60px 0 80px;text-align:center}.about-why-circle{background:url(/local/markup/dist/css/../images/about/circle.png);background-size:contain;width:686px;height:693px;margin:0 auto;text-align:left;position:relative}.about-why__delivery{position:absolute;top:58px;left:257px;width:195px}.about-why__name{text-align:left;margin-bottom:10px}.about-why__text{text-align:left;font-size:12px;margin-bottom:25px}.about-why__image{position:static;-webkit-transform:none;transform:none}.about-why__delivery-image{margin-left:86px}.about-why__reception{position:absolute;right:41px;top:284px;width:244px}.about-why__reception-image{margin:0 0 25px 108px}.about-why__ecology{position:absolute;top:439px;left:225px;width:210px}.about-why__ecology-image{margin:0 0 25px 45px}.about-why__result{position:absolute;top:238px;left:76px;width:218px}.about-why__result-image{margin:0 0 0 26px}}@media (min-width:1024px){.about-why{margin:80px 0 100px}.about-why-circle{width:775px;height:783px}.about-why__delivery{top:65px;left:290px;width:246px}.about-why__image{max-width:74px;max-height:60px}.about-why__name{font-size:18px}.about-why__text{font-size:14px;margin-bottom:30px}.about-why__delivery-image{margin-left:98px}.about-why__reception{right:47px;top:317px;width:276px}.about-why__reception-image{margin-left:140px}.about-why__ecology{position:absolute;top:489px;left:254px;width:248px}.about-why__ecology-image{margin:0 0 35px 52px}.about-why__result{top:270px;left:86px;width:250px}.about-why__result-image{margin:10px 0 0 30px}}@media (min-width:1440px){.about-why{margin:120px 0}.about-why .row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.about-why__title{width:420px;text-align:left}}.about-footer{border:none;border-top:1px solid #e7e7e7;padding:40px 0 60px;text-align:center}.about-footer__text{margin:0 auto 25px;font-weight:500;line-height:150%;color:#1f1f1f;opacity:.5}.about-footer__phone{margin-bottom:25px}.about-footer__phone a{font-weight:300;font-size:20px;line-height:150%}.about-footer__link{margin-bottom:48px}.about-footer__link a{font-weight:300;font-size:20px;line-height:150%;-webkit-text-decoration-line:underline;text-decoration-line:underline}.about-footer__social{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.about-footer__social a{margin:0 10px}.about-footer__social svg{width:40px;height:40px}@media (min-width:768px){.about-footer{padding:80px 0}.about-footer__text{margin:0 auto 50px}.about-footer__phone a{font-size:25px}.about-footer__link{margin-bottom:45px}.about-footer__link a{font-weight:300;font-size:25px}}@media (min-width:1024px){.about-footer{padding:100px 0 80px}.about-footer__text{margin:0 auto 45px;font-size:17px}.about-footer__phone{margin-bottom:20px}.about-footer__phone a{font-size:30px}.about-footer__link{margin-bottom:40px}.about-footer__link a{font-size:30px}}@media (min-width:1440px){.about-footer{padding:85px 0}}.reception{background:#fafafa;padding-bottom:40px}.reception__header{padding-bottom:10px}.reception .price__header-link{margin-left:24px;margin-right:24px}.reception__filter{padding:40px 0 10px;text-align:center}.reception__filter-link{margin:0 5px;font-weight:500;opacity:.5}.reception__filter-link:first-child{margin-left:0}.reception__filter-link:last-child{margin-right:0}.reception__filter-link.active{opacity:1}.reception-item{padding:30px 20px 20px;background:#fff;min-height:205px;-webkit-box-shadow:0 0 30px rgba(0,0,0,.05);box-shadow:0 0 30px rgba(0,0,0,.05);border-radius:20px;margin-bottom:20px;position:relative;color:#000}.reception-item__header{min-height:55px}.reception-item__place{font-size:11px;margin-bottom:12px}.reception-item__express{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:12px;color:#7c7c7e}.reception-item__express svg{width:24px;height:24px;margin-right:10px}.reception-item__address{font-weight:700;line-height:140%;margin-bottom:10px}.reception-item__phone{margin-bottom:10px;font-size:12px}.reception-item__schedule{font-size:12px;line-height:140%}.reception-item__schedule-value{font-weight:700}.reception-item__link{position:absolute;top:0;left:0;right:0;bottom:0;z-index:20}.reception-item .orange__more{right:20px;bottom:20px}.metro-station-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.metro-station{margin:0 10px 12px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:500;font-size:11px;opacity:.6}.metro-station:last-child{margin-right:0}.metro-station__point{margin-right:8px;width:10px;height:10px;border-radius:5px}@media (min-width:768px){.reception{margin-top:-200px;padding:200px 0 60px}.reception__header{padding-bottom:0}.reception .price__header-link{margin-left:25px;margin-right:25px}.reception__filter{padding:40px 0 0}.reception__filter-link{margin:0 15px}.reception .price__search{margin-left:0;margin-right:0}.reception-item{padding:45px 100px 0 40px;min-height:170px}.reception-item__header{min-height:24px;margin-bottom:25px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.reception-item__place{font-size:12px;margin:0 20px 12px 0}.reception-item__express{margin-right:20px}.reception-item__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.reception-item__address{font-weight:700;line-height:140%;margin-bottom:0;width:200px}.reception-item__phone{margin-bottom:0;width:140px;font-size:14px}.reception-item__schedule{width:185px;font-size:14px;line-height:140%}.reception-item .orange__more{right:30px;bottom:50px}.metro-station{margin:0 20px 12px 0;font-size:12px}.metro-station:last-child{margin-right:20px}}@media (min-width:1024px){.reception{margin-top:-180px;padding:180px 0 80px}.reception__header{padding-bottom:0}.reception .price__header-link{margin-left:25px;margin-right:25px}.reception__filter{padding:50px 0 0}.reception__filter-link{margin:0 15px}.reception .price__search{margin:50px 0}.reception-item{padding:45px 200px 0 40px;height:170px}.reception-item__header{margin-bottom:30px;height:24px}.reception-item__place{font-size:13px}.reception-item__address{font-size:18px;line-height:120%;width:250px}.reception-item__phone{width:140px}.reception-item__schedule{width:210px;font-size:16px}}@media (min-width:1440px){.reception{margin-top:-320px;padding:320px 0 100px}.reception__filter{padding:60px 0 0}.reception .price__search{margin:60px 0}.reception-item{padding:45px 280px 0 40px}.reception-item__address{width:400px}.reception-item__phone{width:140px}.reception-item__schedule{width:210px;font-size:16px}.reception-item .orange__more{right:40px}}.reception-delivery{background:#f2f2ee;padding:40px 0;text-align:center}.reception-delivery .row{text-align:center}.reception-delivery__image{width:265px;margin-bottom:15px}.reception-delivery__title{font-weight:200;font-size:30px;margin-bottom:10px}.reception-delivery__description{line-height:140%;text-align:center;margin-bottom:30px}.reception-delivery .order-cleaning{margin:0 auto;background:0 0;padding:0;max-width:310px}.reception-delivery input[type=checkbox]+label{color:#000}@media (min-width:768px){.reception-delivery{padding:20px 0 40px}.reception-delivery__image{width:350px}.reception-delivery__title{font-size:50px;margin-bottom:20px;text-align:center}.reception-delivery__description{line-height:150%;font-size:16px}.reception-delivery .order-cleaning{max-width:550px;margin:0 auto}.reception-delivery .order-cleaning form{display:block;width:400px;margin-left:75px}.reception-delivery .form__field{width:100%;padding-bottom:1px}.reception-delivery .order-cleaning input[type=text]{width:100%;margin-bottom:30px;display:block}.reception-delivery .orange-border-btn{margin-bottom:30px}.reception-delivery .orange-border-btn,.reception-delivery .order-cleaning__agree{width:320px;margin-left:40px}}@media (min-width:1024px){.reception-delivery{padding:50px 0}.reception-delivery .row{text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.reception-delivery__image{width:44%;margin-bottom:0}.reception-delivery__title{text-align:center}.reception-delivery .order-cleaning{margin:0}.reception-delivery__description{margin-bottom:30px}.reception-delivery .orange-border-btn,.reception-delivery .order-cleaning__agree{width:320px;margin-left:40px}}@media (min-width:1440px){.reception-delivery{padding:45px 0 85px}.reception-delivery__image{width:40%}.reception-delivery__title{font-size:60px;margin-bottom:35px;text-align:left}.reception-delivery__description{text-align:left;line-height:170%;font-size:18px}.reception-delivery .order-cleaning{max-width:715px}.reception-delivery .order-cleaning form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;margin-left:0}.reception-delivery .order-cleaning input[type=text]{width:235px}.reception-delivery .orange-border-btn{width:188px;margin-left:0;margin-bottom:30px}.reception-delivery .order-cleaning__agree{width:100%;margin-left:0}}.reception-detail-top{-webkit-box-shadow:0 0 30px rgba(0,0,0,.08);box-shadow:0 0 30px rgba(0,0,0,.08);border-radius:20px;position:absolute;left:50%;-webkit-transform:translate(-50%,-125px);transform:translate(-50%,-125px);width:calc(100% - 40px);z-index:25;padding:20px 30px 30px;background:#fff;text-align:left}.reception-detail-top__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:30px}.reception-detail-top .metro-station-list{display:block;margin-top:12px}.reception-detail-top__button{border:2px solid #f94f0d;border-radius:80px;width:43px;height:43px;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}.reception-detail-top__button svg{width:24px;height:22px}.reception-detail-top__address{font-weight:700;margin-bottom:20px}.reception-detail-top__phone{margin-bottom:20px}.reception-detail-top__value{font-weight:700}@media (min-width:768px){.reception-detail-top{padding:35px 30px 50px;-webkit-transform:translate(-50%,-115px);transform:translate(-50%,-115px)}.reception-detail-top__heder{margin-bottom:40px}.reception-detail-top .metro-station-list{display:-webkit-box;display:-ms-flexbox;display:flex}.reception-detail-top__button{width:193px;height:43px;color:#f94f0d}.reception-detail-top__button svg{margin-left:6px}.reception-detail-top__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.reception-detail-top__address{margin-bottom:0;font-size:16px}.reception-detail-top__phone{margin:0 30px}}@media (min-width:1024px){.reception-detail-top{max-width:990px}.reception-detail-top .metro-station{margin-right:40px}.reception-detail-top__address{font-size:18px}.reception-detail-top__phone,.reception-detail-top__schedule{font-size:16px}}@media (min-width:1440px){.reception-detail-top{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}}.reception-detail-list{margin:165px 0 60px}.reception-detail-list__item{background:#fafafa;border-radius:20px;height:267px;padding-top:40px;text-align:center}.reception-detail-list__img-wrapper{background:rgba(249,79,13,.05);border-radius:55px;width:108px;height:108px;margin:0 auto 30px;position:relative}.reception-detail-list__img{max-width:55px;max-height:55px;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.reception-detail-list__title{font-weight:500;font-size:16px;max-width:200px;margin:0 auto}.reception-detail-list__note{opacity:.5}@media (min-width:1024px){.reception-detail-list__list{display:-webkit-box;display:-ms-flexbox;display:flex}.reception-detail-list__item{width:calc(25% - 15px);margin-right:20px}.reception-detail-list__item:nth-child(4n){margin-right:0}}.reception-detail-map{margin-top:40px}.reception-detail-map__title{text-align:center}.reception-detail-map__container{margin-left:-20px;margin-right:-20px;height:470px;overflow:hidden}@media (min-width:768px){.reception-detail-map{margin-top:60px}.reception-detail-map__container{margin-left:0;margin-right:0;-webkit-filter:drop-shadow(0 0 11px rgba(0, 0, 0, .3));filter:drop-shadow(0 0 11px rgba(0, 0, 0, .3));border-radius:20px}}.reception-detail-photo{padding:40px 0 60px;position:relative}.reception-detail-photo__title{text-align:center}.reception-detail-photo__image{height:305px;background:50% 50% no-repeat;background-size:cover;border-radius:10px}.reception-detail-photo__next,.reception-detail-photo__prev{display:none}@media (min-width:768px){.reception-detail-photo{padding:80px 0}.reception-detail-photo__image{height:380px;border-radius:20px}}@media (min-width:1024px){.reception-detail-photo{max-width:825px;margin-left:auto;margin-right:auto}.reception-detail-photo__image{height:460px}}@media (min-width:1440px){.reception-detail-photo{max-width:990px}.reception-detail-photo .row{padding-left:0;padding-right:0}.reception-detail-photo__image{height:548px}.reception-detail-photo__next,.reception-detail-photo__prev{display:-webkit-box;display:-ms-flexbox;display:flex;top:50%;width:60px;height:60px;border-radius:60px;background:#f94f0d;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);margin:0}.reception-detail-photo__next:hover,.reception-detail-photo__prev:hover{background:#f94f0d}.reception-detail-photo__next svg,.reception-detail-photo__prev svg{width:13px;height:23px}.reception-detail-photo__prev{left:-100px}.reception-detail-photo__next{right:-100px}}.reception-detail-grid{padding:60px 0}@media (min-width:768px){.reception-detail-grid{padding:80px 0 60px}}@media (min-width:1024px){.reception-detail-grid{padding:80px 0}}@media (min-width:1440px){.reception-detail-grid{padding:100px 0}}.reception-detail-comfort{padding:40px 0 20px}.reception-detail-comfort__item{border-radius:20px;padding:30px;height:354px;position:relative}.reception-detail-comfort__bg-1{background:#f2f2ee}.reception-detail-comfort__bg-2{background:linear-gradient(249.79deg,#f1f0f0 .68%,#d5cdcd 101.13%)}.reception-detail-comfort__bg-3{background:linear-gradient(249.79deg,#fdf8f1 .69%,#e3ddd3 101.13%)}.reception-detail-comfort__bg-4{background:linear-gradient(249.79deg,#f1f2f3 .68%,#dddedf 101.13%)}.reception-detail-comfort__img-wrapper{margin-top:30px;height:178px;position:relative}.reception-detail-comfort__img{max-width:250px;max-height:178px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.reception-detail-comfort__bg-image{position:absolute;top:0;left:0;bottom:0;right:0;background:0 50% no-repeat;background-size:auto 100%;border-radius:20px}.reception-detail-comfort__title{bottom:30px;font-weight:700;font-size:16px;line-height:140%;position:absolute;width:calc(100% - 120px)}.reception-detail-comfort__delivery{padding:30px 10px 0;text-align:center}.reception-detail-comfort__delivery .orange-border-btn{width:215px}.reception-detail-comfort__delivery .reception-detail-comfort__img-wrapper{height:145px;margin:0 0 20px}.reception-detail-comfort__delivery .reception-detail-comfort__img{max-width:230px;max-height:145px}.reception-detail-comfort__delivery .reception-detail-comfort__title{font-size:22px;line-height:100%;margin-bottom:10px;position:static;width:100%}.reception-detail-comfort__description{font-size:16px;margin-bottom:20px}.reception-detail-comfort__link{position:absolute;top:0;left:0;right:0;bottom:0;z-index:20}.reception-detail-comfort__white{color:#fff}.reception-detail-comfort .orange-border-btn{position:relative;z-index:100}@media (min-width:768px){.reception-detail-comfort{padding:60px 0 40px}.reception-detail-comfort__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.reception-detail-comfort__title{max-width:200px}.reception-detail-comfort__item{width:calc(50% - 10px);padding:55px 30px 0;height:398px;margin-bottom:20px}.reception-detail-comfort__img-wrapper{margin-top:28px}.reception-detail-comfort__delivery .reception-detail-comfort__title{max-width:100%}}@media (min-width:1024px){.reception-detail-comfort{padding:80px 0 60px}.reception-detail-comfort__item{padding:45px 30px 0}.reception-detail-comfort__img-wrapper{height:208px}.reception-detail-comfort__img{max-width:335px;max-height:208px}.reception-detail-comfort__delivery .reception-detail-comfort__img-wrapper{height:165px;margin:0 0 10px}.reception-detail-comfort__delivery .reception-detail-comfort__img{max-width:260px;max-height:165px}.reception-detail-comfort__delivery .reception-detail-comfort__title{font-size:24px;margin-bottom:20px}}@media (min-width:1440px){.reception-detail-comfort{padding:100px 0}.reception-detail-comfort__col{width:calc(50% - 10px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.reception-detail-comfort__item{padding:25px 30px 0;height:244px;margin-bottom:0}.reception-detail-comfort__img-wrapper{margin-top:0;height:134px;position:relative}.reception-detail-comfort__img{max-width:200px;max-height:134px}.reception-detail-comfort__delivery{padding-top:60px;width:100%;height:508px}.reception-detail-comfort__delivery .orange-border-btn{width:260px}.reception-detail-comfort__delivery .reception-detail-comfort__img-wrapper{height:220px;margin:0 0 20px}.reception-detail-comfort__delivery .reception-detail-comfort__img{max-width:345px;max-height:220px}.reception-detail-comfort__delivery .reception-detail-comfort__title{font-size:26px;margin-bottom:20px}.reception-detail-comfort__description{margin-bottom:24px}.reception-detail-comfort__wide{width:100%;margin-bottom:20px;padding-top:22px}.reception-detail-comfort__wide .reception-detail-comfort__img-wrapper{height:200px}.reception-detail-comfort__wide .reception-detail-comfort__img{max-width:335px;max-height:200px}}.blog{margin-bottom:60px}.blog__item{margin-bottom:20px;position:relative}.blog___item-bg{background:center;background-size:cover;border-radius:10px}.blog___item-bg .card-content__footer{background:0 0}.blog .card-content__image{height:240px}.blog .card-content__footer{height:120px;overflow:hidden}.blog .card-content__name{max-width:220px}@media (min-width:768px){.blog{margin-bottom:80px}.blog__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.blog__item{width:calc(50% - 10px)}.blog___item-bg{border-radius:20px}.blog .card-content__image{height:216px}.blog .card-content__footer{height:98px}}@media (min-width:1024px){.blog .card-content__image{height:330px}.blog .card-content__footer{height:132px}.blog .card-content__title{max-width:225px}}@media (min-width:1024px){.blog{margin-bottom:120px}.blog__list{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;width:calc(100% + 20px)}.blog__item{width:calc(33.33333% - 20px);margin-right:20px}.blog__item-wide{width:calc(60% - 20px)}.blog__item-medium{width:calc(40% - 20px)}.blog .card-content__title{max-width:250px}}.blog-detail-top{margin:30px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.blog-detail-top__date{line-height:100%;opacity:.5}.blog-detail-top__button svg{margin:0}.blog-detail-top__button.active{background:#f94f0d;color:#fff}.blog-detail-top__button.active svg path{fill:#fff;stroke:#fff}.blog-detail-top .block-separator{margin-top:30px;width:100%}.blog-detail-description{font-size:16px;line-height:180%;margin-bottom:40px}.blog-detail-digit{margin-bottom:10px}.blog-detail-digit__title{font-weight:700;font-size:20px;margin-bottom:40px}.blog-detail-digit__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.blog-detail-digit__item{width:calc(50% - 10px);margin-bottom:40px;border:none;border-top:2px solid #f94f0d;padding-top:36px;position:relative}.blog-detail-digit__bg{position:absolute;top:12px;font-weight:300;font-size:54px;line-height:100%;opacity:.03}.blog-detail-digit__text{line-height:130%}.blog-detail-picture{margin-bottom:40px}.blog-detail-picture__bg{margin:0 -20px;background-position:center;background-size:cover;height:230px}.blog-detail-picture__text{margin-top:25px;font-size:16px;line-height:150%}.blog-detail-additional{line-height:170%;margin-bottom:40px}.blog-detail-additional__title{font-size:20px;font-weight:700;margin-bottom:20px;line-height:120%}.blog-detail-additional a{color:#f94f0d;text-decoration:underline}.blog-detail-additional a:hover{text-decoration:none}.blog-detail-review{margin:0 -20px 40px;padding:72px 20px 30px;background:url(/local/markup/dist/css/../images/blog-detail/quote.png) 30px 20px no-repeat #fafafa;background-size:26px 22px}.blog-detail-review__text{font-weight:500;line-height:180%;margin-bottom:25px}.blog-detail-review__signature{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.blog-detail-review__photo{max-width:60px;max-height:60px;margin-right:15px}.blog-detail-review__surname{font-weight:700;margin-bottom:5px}.blog-detail-review__position{font-size:12px;opacity:.5}.blog-detail-how{margin-bottom:40px}.blog-detail-how__title{font-weight:700;font-size:20px;margin-bottom:20px;text-align:center}.blog-detail-how__description{line-height:170%;text-align:center}.blog-detail-how__list{margin-top:40px}.blog-detail-how__item{text-align:center}.blog-detail-how__name{font-weight:600;font-size:18px;margin-bottom:25px}.blog-detail-how__img-wrapper{width:165px;height:165px;margin:0 auto 35px;position:relative;border-radius:50%;background:#f3ebe5}.blog-detail-how__img{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:165px;max-height:202px}.blog-detail-how__period{font-weight:700;font-size:18px}.blog-detail-price{margin:40px 0}.blog-detail-recommendation{background:#f2f2ee;padding:40px 0}.blog-detail-recommendation .blog{margin-bottom:0}@media (min-width:768px){.blog-detail-top{margin:60px 0 40px}.blog-detail-top__date{font-size:16px}.blog-detail-top__button svg{margin:0 15px 0 0}.blog-detail-top .block-separator{margin-top:20px}.blog-detail-description{font-size:18px;margin-bottom:50px}.blog-detail-digit{margin-bottom:20px}.blog-detail-digit__list{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.blog-detail-digit__item{width:calc(33% - 12px);margin-right:20px;min-height:120px;border:none;border-left:2px solid #f94f0d;padding:36px 0 10px 25px}.blog-detail-digit__item:nth-child(3n){margin-right:0}.blog-detail-digit__bg{position:absolute;top:12px;left:25px;font-size:74px}.blog-detail-digit__text{font-size:16px;line-height:150%}.blog-detail-picture{margin-bottom:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;height:350px;position:relative}.blog-detail-picture__bg{margin:0;position:absolute;top:0;bottom:0;left:0;right:0;border-radius:20px;height:100%}.blog-detail-picture__text{position:relative;margin-top:0;width:298px;font-size:16px;line-height:150%;margin-right:35px}.blog-detail-additional{margin-bottom:50px}.blog-detail-review{margin:0 0 50px;padding:30px 30px 30px 80px;background-position:30px 30px;background-size:33px 28px;border-radius:20px}.blog-detail-review__text{margin-bottom:40px}.blog-detail-review__signature{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.blog-detail-review__photo{margin-right:20px}.blog-detail-review__surname{font-size:16px}.blog-detail-review__position{font-size:14px}.blog-detail-how{margin-bottom:20px}.blog-detail-how__list{margin-top:45px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;-ms-flex-wrap:wrap;flex-wrap:wrap}.blog-detail-how__item{width:calc(50% - 10px);margin-bottom:60px}.blog-detail-price{margin:80px 0}.blog-detail-recommendation{padding:60px 0}}@media (min-width:1024px){.blog-detail-top{margin:60px 0 40px}.blog-detail-top .block-separator{margin-top:50px}.blog-detail-description{font-size:20px;margin-bottom:50px}.blog-detail-digit__item{width:calc(33% - 12px);margin-right:20px;min-height:120px;border-left:3px solid #f94f0d;padding:50px 0 10px 25px}.blog-detail-digit__bg{top:12px;left:25px;font-size:94px}.blog-detail-picture{height:460px}.blog-detail-picture__text{width:394px;font-size:18px;margin-right:45px}.blog-detail-additional{font-size:16px;margin-bottom:60px}.blog-detail-additional__title{font-size:26px;margin-bottom:30px}.blog-detail-review{margin:0 0 60px;padding:50px 30px 50px 105px;background-position:30px 50px;background-size:41px 35px}.blog-detail-review__text{margin-bottom:40px;font-size:18px}.blog-detail-how{margin-bottom:60px}.blog-detail-how__title{font-size:26px;text-align:left;margin-bottom:40px}.blog-detail-how__description{font-size:16px;text-align:left}.blog-detail-how__list{margin-top:60px}.blog-detail-how__item{width:calc(25% - 15px);margin-bottom:0}}@media (min-width:1440px){.blog-detail-top{margin:70px 0 40px}.blog-detail-description{font-size:24px;margin-bottom:85px}.blog-detail-digit{margin-bottom:40px}.blog-detail-picture{margin-bottom:80px;height:560px}.blog-detail-picture__text{width:480px;font-size:22px;margin-right:30px}.blog-detail-additional{margin-bottom:80px}.blog-detail-review{margin:0 0 80px;padding:50px 40px 50px 110px;background-position:40px 50px}.blog-detail-review__text{margin-bottom:40px;padding-right:70px}.blog-detail-how{margin-bottom:100px}.blog-detail-price{margin:100px 0}.blog-detail-recommendation{padding:100px 0}}.interior__item{position:relative;margin-bottom:20px}.interior__item-image-wrapper{border-radius:10px 10px 0 0;background:#f2f1ee;position:relative;height:234px}.interior__item-image{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-height:180px;max-width:210px}.interior__item .card-content__footer{height:86px;padding-top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.interior__item .card-content__name{max-width:210px}@media (min-width:768px){.interior__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.interior__item{width:calc(50% - 10px)}.interior__item-image-wrapper{height:251px}.interior__item-wide{width:100%}.interior__item-wide-only-desktop{width:calc(50% - 10px)}}@media (min-width:1024px){.interior__item-image-wrapper{border-radius:20px 20px 0 0;height:330px}.interior__item-image{max-height:180px;max-width:275px}.interior__item .card-content__footer{height:95px}.interior__item .card-content__name{max-width:250px}}@media (min-width:1440px){.interior__list{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.interior__item{width:calc(33% - 14px);margin-right:20px}.interior__item:nth-child(3n){margin-right:0}.interior__item .card-content__footer{height:132px}.interior__item-wide{width:calc(66% - 14px)}}.wash-select{margin:30px 0 40px}@media (min-width:768px){.wash-select{margin:40px 0 50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}}@media (min-width:768px){.wash-select .chosen-wrapper{width:240px}}@media (min-width:1024px){.wash-select .chosen-wrapper{width:280px}}.wash__header{overflow:hidden}.wash__header .swiper-slide{width:auto}.promo-detail-example{margin:40px 0 60px}.promo-detail-example__title{text-align:center;margin-bottom:40px}.promo-detail-example .top-content__warning{margin-bottom:40px}.promo-detail-example__percent{color:#f94f0d}.promo-detail-example__text{line-height:150%;text-align:center}.promo-detail-example__list{margin:40px 0 30px}.promo-detail-example__item{background:#fafafa;padding:25px 20px;text-align:center;border-radius:20px}.promo-detail-example__item.swiper-slide{height:305px}.promo-detail-example__img-wrapper{width:90px;height:90px;margin:0 auto 20px;border:2px solid #f94f0d;position:relative;border-radius:90px}.promo-detail-example__img{max-width:58px;max-height:58px;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.promo-detail-example__name{height:56px;margin-bottom:15px;font-weight:600;font-size:18px;line-height:150%;max-width:200px}.promo-detail-example__description{line-height:150%;opacity:.5}@media (min-width:768px){.promo-detail-example{margin:40px 0 80px}.promo-detail-example__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:35px}.promo-detail-example__title{text-align:left;margin-bottom:0}.promo-detail-example .top-content__warning{margin-bottom:0;max-width:335px;padding-top:0;padding-left:34px;text-align:left}.promo-detail-example .top-content__warning-svg{left:0;top:50%;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}.promo-detail-example__text{font-size:16px;text-align:left}.promo-detail-example__list{margin:40px 0 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.promo-detail-example__item{margin-bottom:20px;width:calc(50% - 10px);padding:40px 40px 0;text-align:left;height:305px}.promo-detail-example__img-wrapper{margin-left:0}}@media (min-width:1024px){.promo-detail-example{margin:60px 0 80px}.promo-detail-example__header{margin-bottom:40px}.promo-detail-example .top-content__warning{font-size:14px}.promo-detail-example__list{margin:40px 0 70px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.promo-detail-example__item{margin-bottom:0;margin-right:20px;width:calc(25% - 15px);padding:40px 20px 0 30px;text-align:left;height:305px}.promo-detail-example__item:nth-child(4n){margin-right:0}.promo-detail-example__name{height:auto}}@media (min-width:1024px){.promo-detail-example{margin:60px 0 80px}.promo-detail-example__header{margin-bottom:40px}.promo-detail-example .top-content__warning{font-size:14px}.promo-detail-example__list{margin:40px 0 70px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.promo-detail-example__item{margin-bottom:0;margin-right:20px;width:calc(25% - 15px);padding:40px 20px 0 30px;text-align:left;height:305px}.promo-detail-example__item:nth-child(4n){margin-right:0}.promo-detail-example__name{height:auto}}@media (min-width:1440px){.promo-detail-example{margin:65px 0 100px}.promo-detail-example__header{margin-bottom:45px}.promo-detail-example .top-content__warning{font-size:14px}.promo-detail-example__list{margin:65px 0}.promo-detail-example__item{padding:40px 20px 0 40px;height:305px}}.gift__list{margin-bottom:60px}.gift__item{background:#edece9;border-radius:20px;margin-bottom:20px;height:417px;padding:50px 0 40px;position:relative;text-align:center}.gift__name{font-weight:600;font-size:18px;margin-bottom:45px}.gift__img-wrapper{height:180px;position:relative;margin-bottom:50px}.gift__img{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-height:100%;max-width:240px}.gift__price{font-size:24px;font-weight:700;line-height:100%}.gift__text{margin:60px 0;line-height:180%;opacity:.5}.gift .promo__icon{background:#f94f0d}@media (min-width:768px){.gift__list{margin-bottom:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.gift__item{width:calc(50% - 10px)}.gift__name{font-weight:600;font-size:18px;margin-bottom:45px}.gift__text{margin:50px 0 80px}}@media (min-width:768px){.gift__list{margin-bottom:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.gift__item{width:calc(50% - 10px)}.gift__text{margin:50px 0 80px}}@media (min-width:1024px){.gift__list{margin-bottom:50px}.gift__name{font-size:20px}.gift__text{margin:60px 0 80px;font-size:16px}}@media (min-width:1440px){.gift__list{margin-bottom:100px}.gift__text{margin:100px 0 130px}}.service-detail-top{margin-bottom:40px}.service-detail-top .reception-detail-list__item{height:338px}.service-detail-top .reception-detail-list__description{margin-top:12px;font-size:16px;line-height:150%;padding:0 10px}.service-detail-slider{margin:40px 0}.service-detail-slider__title{text-align:center}.service-detail-slider__point{margin-bottom:15px;text-align:center;line-height:150%}.service-detail-slider__point:last-child{margin-bottom:0}.service-detail-slider__digit{font-weight:700;font-size:18px;line-height:100%;color:#f94f0d}.service-detail-card{margin-bottom:60px}.card .promo__icon{background:#f94f0d;width:49px;height:30px;font-size:11px;line-height:100%}.service-detail-additional{margin-bottom:60px}.service-detail-additional .price__item{margin:0 -20px}.service-detail-additional .price__item:last-child{border-radius:0}.service-detail-additional .price__item:nth-child(even){background:#fff}.service-detail-additional .price__title{max-width:150px;width:150px;font-weight:600;min-height:32px}.service-detail-additional .price__unit{margin:0}.service-detail-additional .price__buttons{margin-top:0;border:none}.service-detail-additional .border-btn{font-size:13px;line-height:100%;padding-top:12px;padding-bottom:12px}@media (min-width:768px){.service-detail-slider{margin:40px 0 60px}.service-detail-slider__wrapper{-webkit-box-shadow:0 0 26px rgba(0,0,0,.07);box-shadow:0 0 26px rgba(0,0,0,.07);border-radius:20px;padding:65px 0 35px;text-align:center}.service-detail-slider__list{margin:0 auto;width:600px}.service-detail-slider__item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.service-detail-slider__point{margin-bottom:30px;text-align:left;line-height:150%;position:relative;width:calc(50% - 10px);padding-left:45px}.service-detail-slider__point:last-child{margin-bottom:40px}.service-detail-slider__digit{margin-bottom:0;position:absolute;left:0}.service-detail-slider .swiper-pagination-service-detail-slider{margin-top:0}.service-detail-warning .top-content__warning{padding-top:0;padding-left:32px;position:relative;max-width:455px}.service-detail-warning .top-content__warning-svg{top:50%;left:0;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}.service-detail-additional{margin-bottom:80px}.service-detail-additional__title{text-align:center}.service-detail-additional .price__item{margin:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;height:90px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:20px 30px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.service-detail-additional .price__title{max-width:215px;width:215px;min-height:10px}.service-detail-additional .price__unit{width:auto;margin:0;height:auto}.service-detail-additional .price__price{height:auto}.service-detail-additional .price__buttons{margin-top:0;border:none;height:auto}.service-detail-additional .border-btn{padding:14px 32px}}@media (min-width:1024px){.service-detail-top{margin-bottom:60px}.service-detail-top .reception-detail-list__description{padding:0 30px}.service-detail-top .reception-detail-list__item{width:calc(33.3% - 14px);margin-right:20px;text-align:center}.service-detail-top .reception-detail-list__item:nth-child(4n){margin-right:20px}.service-detail-top .four-card .reception-detail-list__item{width:calc(25% - 15px)}.service-detail-top .four-card .reception-detail-list__item:nth-child(3){margin-right:20px}.service-detail-top .four-card .reception-detail-list__item:nth-child(4){margin-right:0}.service-detail-top .reception-detail-list__img-wrapper,.service-detail-top .reception-detail-list__title{margin-left:auto;margin-right:auto}.service-detail-top .reception-detail-list__item:nth-child(3n){margin-right:0}.service-detail-slider{margin:50px 0 60px}.service-detail-slider__wrapper{padding:65px 0 35px}.service-detail-slider__list{width:100%;max-width:840px}.service-detail-slider__item{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.service-detail-slider__point{margin-bottom:30px;width:calc(33% - 14px);margin-right:20px;font-size:16px}.service-detail-slider__point:nth-child(3n){margin-right:0}.service-detail-slider__point:last-child{margin-bottom:30px}.service-detail-additional__title{text-align:left}.service-detail-additional .price__title{font-size:16px;max-width:235px;width:235px}}@media (min-width:1440px){.service-detail-top .reception-detail-list__description{padding:0 40px}.service-detail-slider{margin:65px 0}.service-detail-slider__wrapper{padding:85px 0 40px;position:relative}.service-detail-slider__list{max-width:1000px}.service-detail-slider__prev{top:50%;left:55px;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}.service-detail-slider__next{top:50%;left:auto;right:55px;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}.service-detail-card{margin-bottom:80px}.service-detail-additional{margin:80px 0 100px}}.service-detail-additional.price-curtains .price__price{width:230px}.service-detail-additional.price-curtains .price__title{width:130px}@media (max-width:1023px){.service-detail-additional.price-curtains .price__price{width:205px;font-size:14px}}@media (max-width:767px){.service-detail-additional.price-curtains .price__item{text-align:center}.service-detail-additional.price-curtains .price__price,.service-detail-additional.price-curtains .price__title{width:100%;max-width:100%;font-size:14px}}.fur-store-top{margin:40px 0 60px}.fur-store-top__title{margin-bottom:40px;font-size:20px;line-height:150%}.fur-store-top .reception-detail-list__item{background:#fff;border-radius:20px;text-align:center;padding-left:20px;padding-right:20px}.fur-store-top .reception-detail-list__img-wrapper,.fur-store-top .reception-detail-list__title{margin-left:auto;margin-right:auto}.fur-store-top .reception-detail-list__title{font-size:20px;line-height:100%;font-weight:700;margin-bottom:10px}.fur-store-top .reception-detail-list__description{padding:0;opacity:.5}.fur-store-number{margin-bottom:20px}.fur-store-number__item{padding-bottom:40px;margin-bottom:40px;border:none;border-bottom:1px solid #e7e7e7;text-align:center}.fur-store-number__item:last-child{border-bottom:none}.fur-store-number__digit{font-weight:200;font-size:120px;line-height:100%;margin-bottom:20px;opacity:.05}.fur-store-number__text{line-height:180%}.fur-store-gray{margin-bottom:40px;padding-bottom:0!important}.service-detail-card__condition{margin-bottom:20px;font-style:italic;line-height:140%;color:#f94f0d}.fur-store-gray .top-content{margin-top:0}@media (min-width:768px){.fur-store-top{margin:40px 0 70px}.fur-store-top__title{margin-bottom:50px;text-align:center}.fur-store-number__item{padding-bottom:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.fur-store-number__digit{width:180px}.fur-store-number__text{width:calc(100% - 180px)}.fur-store-gray{margin-bottom:60px;padding-bottom:0!important}.service-detail-card__condition{margin-bottom:35px}}@media (min-width:1024px){.fur-store-top{margin:60px 0 70px}.fur-store-top__title{margin-bottom:40px;font-size:24px}.fur-store-top .reception-detail-list__item{-webkit-box-shadow:0 0 34px rgba(0,0,0,.06);box-shadow:0 0 34px rgba(0,0,0,.06)}.fur-store-top .reception-detail-list__title{font-size:20px;line-height:100%;font-weight:700;margin-bottom:10px}.fur-store-top .reception-detail-list__description{padding:0}.fur-store-number__item{margin-bottom:50px}.fur-store-number__digit{width:210px;font-size:150px}.fur-store-number__text{width:calc(100% - 210px);font-size:16px}.fur-store-gray{margin-bottom:80px;padding-bottom:0!important}.service-detail-card__header{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.service-detail-card__title{width:calc(100% - 370px);margin-bottom:0}.service-detail-card__condition{margin-bottom:0;width:270px;font-size:16px}}@media (min-width:1440px){.fur-store-top{margin:55px 0 115px}.fur-store-top__title{margin-bottom:50px;font-size:30px}.fur-store-top .reception-detail-list__item{padding-left:40px;padding-right:40px;height:380px}.fur-store-top .reception-detail-list__title{font-size:20px;line-height:100%;font-weight:700;margin-bottom:10px}.fur-store-top .reception-detail-list__description{padding:0}.fur-store-number{text-align:center}.fur-store-number__item{padding-bottom:40px;width:990px;margin:0 auto 40px}.fur-store-number__digit{width:225px}.fur-store-number__text{width:calc(100% - 225px);font-size:18px}}.fur-top{margin-bottom:60px;border:1px solid #e7e7e7;border-radius:20px;padding:0 30px}.fur-top__col{min-height:212px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:left}.fur-top__col:last-child{border:none;border-top:1px solid #e7e7e7}.fur-top__content{line-height:170%}.fur-top__title{font-weight:600;font-size:16px;color:#f94f0d;margin-bottom:15px;line-height:120%}.fur-recomnend{margin:60px 0}.fur-recomnend__item{background:center;background-size:cover;margin-bottom:20px;min-height:358px;padding:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:20px;position:relative}.fur-recomnend__item:before{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;background:#000;border-radius:20px;content:"";-webkit-transition:opacity .35s;transition:opacity .35s;-webkit-box-shadow:0 3px 30px rgba(0,0,0,.3);box-shadow:0 3px 30px rgba(0,0,0,.3);opacity:0}.fur-recomnend__item:hover:before{opacity:1}.fur-recomnend__content{max-width:235px}.fur-recomnend__title{font-weight:700;font-size:16px;line-height:140%;margin-bottom:18px;position:relative}.fur-recomnend__description{line-height:150%;opacity:.5}.fur-recomnend__link{position:absolute;top:0;bottom:0;left:0;right:0}.fur-recomnend__block-inner{position:absolute;top:0;left:0;width:100%;height:100%;background:center;background-size:cover;border-radius:20px}.fur-recomnend__item:hover .fur-recomnend__block-inner{-webkit-transform:perspective(1000px) translate3d(0,0,21px);transform:perspective(1000px) translate3d(0,0,21px)}@media (min-width:768px){.fur-top{margin-bottom:40px;padding:30px;display:-webkit-box;display:-ms-flexbox;display:flex}.fur-top__col{min-height:170px;padding-top:15px;display:block;width:50%}.fur-top__col:last-child{border:none;border-left:1px solid #e7e7e7;padding-left:30px}.fur-top__content{max-width:285px}.fur-top__title{font-size:20px}.fur-recomnend{margin:80px 0}.fur-recomnend__item{padding:40px}.fur-recomnend__content{max-width:350px}.fur-recomnend__title{font-size:22px}.fur-recomnend__description{font-size:16px}}@media (min-width:1024px){.fur-top{padding:30px 55px}.fur-top__col{padding-top:20px}.fur-top__col:last-child{padding-left:35px}.fur-top__content{max-width:385px}.fur-top__title{font-size:24px}.fur-recomnend__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.fur-recomnend__item{width:calc(50% - 10px);margin-bottom:0}.fur-recomnend__content{max-width:275px}}@media (min-width:1440px){.fur-top{padding:30px 75px}.fur-top__col{padding-top:30px}.fur-top__col:last-child{padding-left:110px}.fur-top__content{max-width:455px}.fur-recomnend{margin:100px 0}.fur-recomnend__content{max-width:275px}}.carpet-banner{background:#e0e9f2;padding-bottom:35px;margin-bottom:60px;position:relative;overflow:hidden}.carpet-banner__top{background:#c8d2dd}.carpet-banner__image{max-width:320px}.carpet-banner__content{margin-top:25px;text-align:center}.carpet-banner__title{font-weight:200;font-size:30px;line-height:100%;margin:0 auto 15px;max-width:285px}.carpet-banner__description{line-height:170%;margin:0 auto 35px;max-width:285px;font-weight:700}@media (min-width:768px){.carpet-banner{padding:50px 0;min-height:370px;margin-bottom:80px}.carpet-banner__top{background:0 0;max-width:71%;position:absolute;top:0;-webkit-transform:translate(-25%,0);transform:translate(-25%,0)}.carpet-banner .row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.carpet-banner__image{max-width:100%}.carpet-banner__content{margin-top:0;text-align:left;width:40%}.carpet-banner__title{margin:0 0 25px;max-width:100%}.carpet-banner__description{line-height:170%;margin:0 0 35px;max-width:100%}.carpet-banner .border-btn{padding:16px 40px}}@media (min-width:1024px){.carpet-banner{padding:70px 0;min-height:450px;margin-bottom:60px}.carpet-banner__top{max-width:65%;-webkit-transform:translate(-5%,0);transform:translate(-5%,0)}.carpet-banner__content{width:30%}.carpet-banner__title{margin-bottom:35px;font-size:40px}.carpet-banner .border-btn{padding:16px 48px}}@media (min-width:1440px){.carpet-banner{padding:70px 0;margin-bottom:100px}.carpet-banner .row{position:relative}.carpet-banner__top{max-width:63%;-webkit-transform:translate(-5%,0);transform:translate(-5%,0);left:0;top:-70px}.carpet-banner__content{width:40%}.carpet-banner__title{font-size:60px}.carpet-banner__description{font-size:16px}.carpet-banner .border-btn{padding:16px 48px}}.for-business-why{text-align:center;margin:40px 0 35px}.for-business-why .blog-detail-digit__name{margin-bottom:15px;font-weight:700}@media (max-width:767px){.for-business-why .blog-detail-digit__item{width:100%;border:none;border-bottom:2px solid #f94f0d;padding-bottom:20px;text-align:center;margin-bottom:20px}.for-business-why .blog-detail-digit__item:last-child{border-bottom:0}.for-business-why .blog-detail-digit__item .blog-detail-digit__bg{left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}}.for-business-how{margin:0 0 60px}.for-business-consult{padding:40px 0;background:#f2f2ee}.for-business-consult__title{font-weight:200;font-size:20px;margin:0 auto 15px;text-align:center;max-width:400px}.for-business-consult__description{line-height:140%;text-align:center;margin:0 auto 30px;max-width:400px}.for-business-consult .orange-border-btn{display:none}.for-business-consult__footer .orange-border-btn{width:100%;max-width:320px;margin:0 auto 20px;display:block}.for-business-consult input[type=checkbox]+label{color:#000;font-size:14px}.for-business-consult form{max-width:400px;margin:0 auto}.for-business-consult .order-cleaning__agree{max-width:320px;margin:0 auto}@media (min-width:768px){.for-business-why{text-align:left;margin:50px 0}.for-business-why .blog-detail-digit__list{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.for-business-why .blog-detail-digit__item{width:calc(50% - 10px);text-align:left;margin-right:0}.for-business-why .blog-detail-digit__text{font-size:12px;line-height:130%}.for-business-why .blog-detail-digit__bg{font-size:94px;top:-20px}.for-business-how{margin:0 0 60px}.for-business-consult{padding:60px 0}.for-business-consult__title{font-size:30px}.for-business-consult__description{line-height:170%;font-size:16px}.for-business-consult .orange-border-btn{padding-top:20px;padding-bottom:20px}}@media (min-width:1024px){.for-business-why{margin:50px 0 80px}.for-business-why .blog-detail-digit__name{margin-bottom:5px}.for-business-why .blog-detail-digit__item{padding-top:30px;width:calc(33% - 14px);margin-right:20px}.for-business-why .blog-detail-digit__item:nth-child(3n){margin-right:0}.for-business-why .blog-detail-digit__bg{top:0}.for-business-how{margin:0 0 80px}.for-business-how .reception-detail-list__title{font-size:14px;padding-right:20px}.for-business-consult__title{font-size:30px;max-width:835px;margin-bottom:40px}.for-business-consult__description{font-size:18px;margin-bottom:40px;max-width:835px}.for-business-consult form{max-width:835px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.for-business-consult input[type=text]{width:265px;padding:20px}.for-business-consult .orange-border-btn{width:260px;margin-bottom:40px}.for-business-consult__footer{width:100%;margin-top:10px;text-align:center}.for-business-consult .order-cleaning__agree{max-width:520px}.for-business-consult .order-cleaning__agree label{-webkit-box-align:center;-ms-flex-align:center;align-items:center}}@media (min-width:1440px){.for-business-why{margin:65px 0 100px}.for-business-why .blog-detail-digit__name{margin-bottom:15px;font-size:20px}.for-business-why .blog-detail-digit__item{padding-top:40px}.for-business-why .blog-detail-digit__bg{top:-15px}.for-business-how{margin:0 0 100px}.for-business-how .reception-detail-list__title{font-size:17px}.for-business-consult{padding:100px 0}.for-business-consult__title{font-size:44px;max-width:1115px;margin-bottom:30px}.for-business-consult__description{margin-bottom:30px;max-width:1115px}.for-business-consult form{max-width:1115px}.for-business-consult input[type=text]{width:265px;padding:20px}.for-business-consult .orange-border-btn{display:block;margin-bottom:30px}.for-business-consult__footer .orange-border-btn{display:none}.for-business-consult__footer{width:100%;text-align:center}}.franchise-top{margin:40px 0}.franchise-top__left{width:320px;margin-bottom:40px;position:relative}.franchise-top__img{width:295px;height:305px;border-radius:12px 62px;margin-bottom:25px;position:relative;z-index:2}.franchise-top__bg{position:absolute;width:195px;height:220px;right:0;bottom:0;background:#f3f0eb;border-radius:10px 27px}.franchise-top__right{text-align:center}.franchise-top__title{line-height:100%}.franchise-top__text{line-height:170%}@media (min-width:768px){.franchise-top{margin:35px 0 70px}.franchise-top .row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.franchise-top__left{margin:0 35px 0 0}.franchise-top__right{text-align:left;max-width:300px}}@media (min-width:1024px){.franchise-top{margin:55px 0 70px}.franchise-top__left{margin:0 40px 0 0;width:535px}.franchise-top__img{width:490px;height:500px;border-radius:12px 82px}.franchise-top__bg{width:322px;height:360px;border-radius:10px 37px}.franchise-top__right{max-width:330px}.franchise-top__title{font-size:50px}.franchise-top__text{font-size:18px}}@media (min-width:1440px){.franchise-top{margin:55px 0 95px}.franchise-top__left{margin:0 55px 0 0;width:660px}.franchise-top__img{width:605px;height:618px}.franchise-top__bg{width:400px;height:448px}.franchise-top__right{max-width:500px}.franchise-top__title{font-size:60px}.franchise-top__text{font-size:22px}}.franchise-why{margin-bottom:70px}.franchise-why h2{text-align:center}.franchise-why .only-four-digit .blog-detail-digit__item{padding-top:20px;padding-bottom:20px;margin-bottom:0}.franchise-why .only-four-digit .blog-detail-digit__text{line-height:150%}.franchise-why__title{color:#f94f0d;margin-bottom:14px;font-size:24px;line-height:120%;font-weight:600}@media (min-width:768px){.franchise-why{margin-bottom:125px}.franchise-why h2{text-align:left}.franchise-why .blog-detail-digit__list{gap:22px}.franchise-why .only-four-digit .blog-detail-digit__item{width:calc(50% - 11px);padding-top:0;padding-bottom:0;min-height:96px}}@media (min-width:1024px){.franchise-why{margin-bottom:150px}.franchise-why .blog-detail-digit__list{gap:20px}.franchise-why .only-four-digit .blog-detail-digit__item{width:calc(50% - 10px);margin-right:0;min-height:108px}.franchise-why__title{margin-bottom:25px}}@media (min-width:1440px){.franchise-why{margin-bottom:250px}.franchise-why .blog-detail-digit__list{gap:60px}.franchise-why .only-four-digit .blog-detail-digit__item{width:calc(50% - 30px);margin-right:0;min-height:126px}.only-four-digit{margin-top:70px}.only-four-digit .blog-detail-digit__text{font-size:16px}}.franchise-require{background:#fafafa;padding:40px 0 50px}.franchise-require h2{text-align:center}.franchise-require__item{margin-bottom:20px;background:#fff;-webkit-box-shadow:0 0 24px rgba(0,0,0,.04);box-shadow:0 0 24px rgba(0,0,0,.04);border-radius:20px;padding:30px;min-height:190px}.franchise-require__name{color:#f94f0d;font-weight:600;font-size:24px;margin-bottom:30px}.franchise-require__text{font-size:16px;line-height:170%}@media (min-width:768px){.franchise-require{padding:50px 0 75px}.franchise-require__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.franchise-require__item{padding:60px 40px;min-height:252px;width:calc(50% - 20px)}}@media (min-width:1024px){.franchise-require{padding:80px 0 90px}.franchise-require__item{padding:60px;min-height:252px}.franchise-require__text{max-width:250px}}@media (min-width:1440px){.franchise-require{padding:90px 0}.franchise-require__list{background:#fff;-webkit-box-shadow:0 0 24px rgba(0,0,0,.04);box-shadow:0 0 24px rgba(0,0,0,.04);border-radius:20px;padding:55px 40px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-left:-60px;margin-right:-60px}.franchise-require__item{margin-bottom:0;-webkit-box-shadow:none;box-shadow:none;padding:0 15px 0 35px;min-height:230px;width:calc(25% - 15px);border:none;border-left:1px solid #e7e7e7;margin-right:20px;border-radius:0}.franchise-require__item:nth-child(4n+1){border-left:none}.franchise-require__item:nth-child(4n){margin-right:0}.franchise-require__name{margin-bottom:55px}}.franchise-condition{padding-bottom:70px;background:#fafafa}.franchise-condition .row{text-align:center}.franchise-condition__title{margin-bottom:20px}.franchise-condition__btn{margin:0 auto 55px;width:240px;padding-left:0;padding-right:0}.franchise-condition__block{max-width:280px;margin:0 auto;text-align:left}.franchise-condition__top{position:relative}.franchise-condition__rub{position:absolute;color:#f94f0d;font-size:30px;line-height:100%}.franchise-condition__wrapper{margin-left:40px}.franchise-condition__cost{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;font-size:30px;line-height:100%;color:#f94f0d;font-weight:200;margin-left:22px}.franchise-condition__number{font-size:100px;font-weight:200}.franchise-condition__thousand{margin:0 0 15px 48px}.franchise-condition__payment{font-size:12px;line-height:100%;letter-spacing:.15em;text-transform:uppercase;margin-top:10px}.franchise-condition__bottom{margin-top:20px;border:none;border-top:1px solid #e7e7e7;padding-top:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.franchise-condition__percent{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#f94f0d;font-weight:200;line-height:100%;font-size:30px}.franchise-condition__value{font-size:100px;line-height:100%;margin-right:15px}.franchise-condition__note{font-size:12px;line-height:100%;letter-spacing:.15em;text-transform:uppercase;margin-top:10px;text-align:center}@media (min-width:768px){.franchise-condition{padding-bottom:200px}.franchise-condition .row{text-align:left;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}.franchise-condition .franchise-condition__title{margin:0 10px 15px 0;font-size:30px;line-height:120%;max-width:280px}.franchise-condition__btn{margin:0}.franchise-condition__block{max-width:345px;margin:0}.franchise-condition__rub{font-size:50px}.franchise-condition__wrapper{margin-left:40px}.franchise-condition__cost{font-size:50px}.franchise-condition__number{font-size:116px}.franchise-condition__thousand{margin:0 0 15px 15px}.franchise-condition__payment{font-size:14px}.franchise-condition__bottom{margin-top:30px;padding-top:15px}.franchise-condition__percent{font-size:50px}.franchise-condition__value{font-size:116px}.franchise-condition__note{font-size:14px;text-align:left}}@media (min-width:1024px){.franchise-condition{padding-bottom:130px}.franchise-condition .franchise-condition__title{margin-right:30px;margin-bottom:25px;font-size:40px;line-height:48px;max-width:350px}.franchise-condition__btn{width:270px}.franchise-condition__block{max-width:470px;width:470px}.franchise-condition__rub{font-size:56px}.franchise-condition__wrapper{margin-left:40px}.franchise-condition__cost{font-size:75px}.franchise-condition__number{font-size:142px}.franchise-condition__thousand{margin:0 0 15px 75px}.franchise-condition__bottom{margin-top:45px;padding-top:45px}.franchise-condition__percent{font-size:75px}.franchise-condition__value{font-size:142px}}@media (min-width:1440px){.franchise-condition{padding-bottom:35px}.franchise-condition .franchise-condition__title{margin-right:90px;margin-bottom:40px;line-height:60px;font-size:50px;max-width:440px}}.franchise-want{margin-bottom:40px;position:relative}.franchise-want__bg{height:270px;background:#fafafa;position:absolute;width:100%}.franchise-want__top{position:relative;z-index:2;background:url(/local/markup/dist/css/../images/franchise/want-1.jpg);background-size:100% auto;border-radius:20px 20px 0 0;height:270px}.franchise-want__bottom{background:#3f434b;border-radius:0 0 20px 20px;padding:30px 20px;text-align:center}.franchise-want__wrapper{margin:0 auto;max-width:485px}.franchise-want__title{font-weight:500;font-size:20px;color:#fff;margin-bottom:15px}.franchise-want__text{line-height:150%;text-align:center;color:#fff;margin-bottom:20px}.franchise-want .orange-border-btn{font-size:16px}@media (min-width:768px){.franchise-want{margin-bottom:80px}.franchise-want__bg{height:380px}.franchise-want__top{border-radius:30px 30px 0 0;height:380px}.franchise-want__bottom{border-radius:0 0 30px 30px;padding:80px 20px}.franchise-want__title{font-size:30px;margin-bottom:40px}.franchise-want__text{font-size:16px;line-height:170%;margin-bottom:30px}}@media (min-width:1024px){.franchise-want__bg{height:425px}.franchise-want__top{height:425px}.franchise-want__bottom{border-radius:0 0 30px 30px;padding:50px 20px}.franchise-want__wrapper{max-width:530px}.franchise-want__title{font-size:42px;margin-bottom:30px}.franchise-want__text{font-size:18px}.franchise-want .orange-border-btn{width:250px;padding-top:19px;padding-bottom:19px}}@media (min-width:1440px){.franchise-want{margin-bottom:190px}.franchise-want__bg{height:245px;top:0;left:0}.franchise-want .row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:relative;max-width:1320px}.franchise-want__wrapper{margin:0;text-align:left}.franchise-want__top{width:550px;height:462px;border-radius:0 41px;left:0;z-index:3;position:absolute}.franchise-want__bottom{margin-top:144px;border-radius:30px;width:1100px;padding:70px 140px 70px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:relative;z-index:2}.franchise-want__text{text-align:left}}.franchise-help{margin-bottom:60px}.franchise-help .row{position:relative;text-align:center}.franchise-help__line{width:205px;height:2px;background:#f94f0d;margin:0 auto 30px}.franchise-help__description{margin-bottom:40px;line-height:170%}.franchise-help__image{height:308px;background:50% 50% no-repeat;background-size:cover;border-radius:10px}.franchise-help__block{padding-top:30px}.franchise-help__name{font-weight:600;font-size:18px;margin-bottom:25px}.franchise-help__text{line-height:170%}.franchise-help .swiper-slide{width:320px}@media (min-width:768px){.franchise-help{margin-bottom:80px}.franchise-help__line{width:260px;margin:0 auto 40px}.franchise-help__description{margin-bottom:55px;font-size:18px}.franchise-help__image{height:440px;border-radius:20px}.franchise-help__block{padding-top:40px}.franchise-help__name{font-size:28px;margin-bottom:30px}.franchise-help__text{font-size:18px}}@media (min-width:1024px){.franchise-help{max-width:827px;margin:0 auto 125px}.franchise-help__line{width:285px;margin:0 auto 45px}.franchise-help__description{margin-bottom:45px}.franchise-help__image{height:460px}.franchise-help__block{padding-top:65px;max-width:600px;margin:0 auto}}@media (min-width:1440px){.franchise-help{max-width:100%;margin:0 0 135px}.franchise-help__title{max-width:870px}.franchise-help__top{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;margin:75px 0 125px}.franchise-help__line{width:220px;margin:0 65px 0 0}.franchise-help__description{margin-bottom:0;width:816px;font-size:24px;text-align:left}.franchise-help__item{display:-webkit-box;display:-ms-flexbox;display:flex}.franchise-help__image-wrapper{width:715px}.franchise-help__image{height:480px}.franchise-help__block{padding:50px 0 0 55px;max-width:450px;margin:0;text-align:left}.franchise-help__prev{left:810px}.franchise-help__next{left:890px}.franchise-help .swiper-pagination-franchise-help{width:715px;margin-left:0}}.franchise-form{background:#fafafa;padding:40px 0}.franchise-form__wrapper{text-align:center;max-width:280px;margin:0 auto}.franchise-form__title{font-size:18px;margin-bottom:30px}.franchise-form__contacts{max-width:170px;margin:0 auto 40px}.franchise-form__contacts-phone{font-size:18px;line-height:150%;margin-bottom:10px;display:inline-block}.franchise-form__contacts-link{font-size:18px;line-height:150%;margin-bottom:10px;text-decoration:underline;display:block}.franchise-form input[type=email],.franchise-form input[type=text]{border:1px solid #e7e7e7;margin-bottom:30px}.franchise-form input[type=email].error,.franchise-form input[type=text].error{border:1px solid #f94f0d}.franchise-form textarea{margin-bottom:30px;border:1px solid #e7e7e7;height:190px;background:#fff;padding:15px 10px;font-size:16px;width:100%}.franchise-form .form__error{position:absolute;right:0;bottom:15px;font-size:12px;color:#f94f0d}.franchise-form input[type=checkbox]+label{color:#000}.franchise-form .order-cleaning__agree{margin-bottom:30px;text-align:left}.franchise-form .orange-border-btn{width:280px}@media (min-width:768px){.franchise-form{padding:75px 0}.franchise-form__wrapper{text-align:center;max-width:712px;margin:0 auto}.franchise-form__title{font-size:30px;line-height:150%;margin-bottom:40px}.franchise-form__contacts{max-width:100%;margin:0 auto 60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.franchise-form__contacts-phone{font-size:22px;margin:0 10px}.franchise-form__contacts-link{font-size:22px;margin:0 10px}.franchise-form form{display:block;max-width:550px;margin:0 auto}.franchise-form input[type=email],.franchise-form input[type=text]{margin-bottom:50px;padding:22px 20px}.franchise-form textarea{margin-bottom:45px;height:150px;padding:22px 20px}.franchise-form .form__error{bottom:25px;font-size:14px}.franchise-form .order-cleaning__agree{margin:0 auto 45px;width:515px}.franchise-form input[type=checkbox]+label{font-size:14px}.franchise-form .orange-border-btn{width:255px;padding-top:20px;padding-bottom:20px}}@media (min-width:1024px){.franchise-form{padding:100px 0}.franchise-form__wrapper{max-width:830px}.franchise-form__title{font-size:38px;margin-bottom:60px}.franchise-form__contacts-phone{font-size:24px;margin:0 10px}.franchise-form__contacts-link{font-size:24px}}.wash-detail{background:#fafafa;padding-top:40px;margin-bottom:60px}.wash-detail.is-open{border-radius:0 0 60px 60px}.wash-detail .row{text-align:center}.wash-detail__img-wrapper{margin-bottom:20px}.wash-detail__img{max-height:285px}.wash-detail__description-title{font-weight:700}.wash-detail__description-title-service{color:#000}.wash-detail__description{padding:30px 0 45px;opacity:.7;display:none}.wash-detail-service .wash-detail__description{opacity:1}.wash-detail__description-service{opacity:1}.wash-detail__description li{margin-bottom:15px;padding-left:12px;position:relative;color:#000}.wash-detail__description li:before{content:"•";font-size:14px;line-height:104%;opacity:.7;position:absolute;top:0;left:0}.wash-detail__title{margin:15px 0 20px;font-weight:700;font-size:18px;line-height:140%}.wash-detail__volume{margin-bottom:25px}.wash-detail__volume-word{font-size:14px;line-height:100%;opacity:.5}.wash-detail__volume-value{font-size:14px;line-height:100%;font-weight:600}.wash-detail__price{margin-bottom:20px;font-weight:700;font-size:16px}.wash-detail .basket__buttons{margin:0 auto 25px}.wash-detail .orange-border-btn{width:210px}.wash-detail__bottom{margin-top:30px;text-align:left}.wash-detail__toggle{margin-left:-20px;margin-right:-20px;padding:15px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;background:#f5f5f5}.wash-detail__toggle-button{width:16px;height:8px}.wash-detail.is-open .wash-detail__toggle-button{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.wash-detail .loyalty-details{margin:30px 0;width:100%}.wash-detail .loyalty-details__list{background:#fff}.wash-detail .loyalty-details__item{padding:0}.wash-detail .loyalty-details__header{text-align:left;padding-left:15px;padding-right:15px}.wash-detail .loyalty-details__header .loyalty-details__header-number{width:48px;height:28px;background:#f94f0d;border-radius:50px;font-size:16px;line-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;position:absolute;top:50%;right:55px;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);color:#fff}.wash-detail .loyalty-details__header-close{right:15px}.wash-detail .loyalty-details__header.is-open .loyalty-details__header-number{display:none}.wash-detail .loyalty-details__body{padding:0;border:none;font-size:inherit}.wash-detail .price{margin-bottom:0}.wash-detail .price__item{background:0 0;border-radius:0;margin:0}.wash-detail .price__item:first-child{padding-top:0}.wash-detail .price__item:nth-child(2n){background:#f5f5f5}@media (min-width:768px){.wash-detail{padding:65px 0 55px;margin-bottom:80px;border-radius:0 0 80px 80px}.wash-detail .top__back{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wash-detail .top__back.hidden-xs{display:-webkit-box;display:-ms-flexbox;display:flex}.wash-detail.is-open{border-radius:0 0 80px 80px}.wash-detail .row{text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:700px}.wash-detail-service .row{max-width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.wash-detail__left{width:200px;margin-left:40px;margin-right:50px}.wash-detail__left .top__back{display:none}.wash-detail__left-service{margin:0;width:380px}.wash-detail__img-wrapper{margin-bottom:0;height:385px;position:relative}.wash-detail__img-wrapper-service{width:380px;height:277px}.wash-detail__img{max-height:385px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.wash-detail__description-title{font-weight:600;font-size:22px;line-height:100%;margin-bottom:30px}.wash-detail__description{padding:0}.wash-detail__description-service{display:-webkit-box;display:-ms-flexbox;display:flex;gap:0 40px;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:600px}.wash-detail__description-service li{width:272px;font-size:16px;line-height:150%}.wash-detail__bottom .wash-detail__description{display:block!important}.wash-detail__right{width:calc(100% - 290px)}.wash-detail__right-service{width:260px}.wash-detail__title{margin:65px 0 40px;font-size:22px}.wash-detail__title-service{margin-top:0}.wash-detail__volume{margin-bottom:40px}.wash-detail__volume-value,.wash-detail__volume-word{font-size:16px}.wash-detail__basket{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}.wash-detail__price{margin-bottom:0;font-size:24px;line-height:100%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.wash-detail .basket__buttons{margin:0 25px 0 0;width:125px;height:38px}.wash-detail .basket__input[type=text]{line-height:36px;font-size:20px;width:43px}.wash-detail .basket__minus,.wash-detail .basket__plus{width:40px}.wash-detail__basket .orange-border-btn{width:250px;padding-top:20px;padding-bottom:20px}.wash-detail__bottom{margin-top:50px;text-align:left;width:100%}.wash-detail__toggle{display:none}.wash-detail .loyalty-details{margin-top:50px;margin-bottom:0}.wash-detail .loyalty-details__header{padding-left:45px;padding-right:45px}.wash-detail .loyalty-details__header-close{right:45px}.wash-detail .loyalty-details__header .loyalty-details__header-number{right:85px}}@media (min-width:1024px){.wash-detail{padding:80px 0 65px;border-radius:0 0 110px 110px}.wash-detail .row{max-width:750px}.wash-detail.is-open{border-radius:0 0 110px 110px}.wash-detail__left{width:220px;margin-left:0;margin-right:70px}.wash-detail__img-wrapper{margin-bottom:0;height:422px;position:relative}.wash-detail__img-wrapper-service{width:495px;height:333px}.wash-detail__img{max-height:422px}.wash-detail__description-title{font-size:22px;line-height:100%}.wash-detail__right{width:calc(100% - 290px)}.wash-detail__right-service{width:280px}.wash-detail__title{margin:65px 0 40px;font-size:28px}}@media (min-width:1024px){.wash-detail{padding:85px 0 100px}.wash-detail .row{max-width:1300px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.wash-detail__left{width:420px;margin:0}.wash-detail__left .top__back{display:-webkit-box;display:-ms-flexbox;display:flex}.wash-detail__left-service{margin-left:20px}.wash-detail__img-wrapper{margin-bottom:0;height:540px;width:250px}.wash-detail__img-wrapper-service{width:495px;height:333px}.wash-detail__img{max-height:540px}.wash-detail__description-title{margin-bottom:20px}.wash-detail__right{width:420px;-ms-flex-item-align:center;align-self:center}.wash-detail__right-service{width:280px}.wash-detail__right .top__back{display:none}.wash-detail__title{margin:0 0 40px;font-size:28px}.wash-detail__bottom-service{margin-left:20px}}@media (min-width:1440px){.wash-detail__description.visible-lg{display:block}.wash-detail__left-service{width:325px;margin-left:0}.wash-detail__img-wrapper-service{margin-top:73px}.wash-detail__description-title-service{font-size:28px}.wash-detail__description-service li{margin-bottom:5px}.wash-detail .loyalty-details{margin-top:60px}}.top__back.hidden-xs{display:none}.not-found-page{margin:25px 0 25px;color:#000}.not-found-page__title{margin-bottom:25px;text-transform:uppercase;font-size:16px;line-height:140%}.not-found-page__note{margin:30px 0 20px;opacity:.5;line-height:150%}.not-found-page__btn{width:212px;font-size:14px;line-height:100%;margin:0 auto 20px;display:block}.not-found-page__link{font-size:16px;line-height:160%;color:#f94f0d;text-decoration:underline}.not-found-page__link:hover{text-decoration:none}@media (min-width:768px){.not-found-page{margin:185px 0 185px}.not-found-page__title{margin-bottom:50px;font-size:22px;line-height:120%}.not-found-page__img{max-width:545px}.not-found-page__note{margin:0 0 25px;font-size:16px;line-height:160%}}@media (min-width:1024px){.not-found-page{margin:50px 0 50}.not-found-page__title{margin-bottom:50px;font-size:22px;line-height:120%}}@media (min-width:1440px){.not-found-page{margin:180px 0 180px}.not-found-page__title{margin-bottom:30px;font-size:26px}.not-found-page__img{max-width:720px}.not-found-page__note{margin:0 0 25px;font-size:16px;line-height:160%}}.automation{padding:40px 0;text-align:left}.automation__title{margin-bottom:25px;font-weight:700;font-size:30px;line-height:120%}.automation__item{margin-bottom:20px;padding:30px 25px;background:#fff;border-radius:15px;-webkit-box-shadow:0 0 34px rgba(0,0,0,.06);box-shadow:0 0 34px rgba(0,0,0,.06)}.automation__subtitle{margin-bottom:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:600;font-size:16px;line-height:120%;width:245px}.automation__img{width:50px;height:50px;margin-right:25px}.automation__type{margin-bottom:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.automation__type:last-child{margin-bottom:0}.automation__type-left{width:115px;height:50px;border:none;border-right:1px solid rgba(249,79,13,.5);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.automation__type-left-word{font-size:14px;line-height:170%;opacity:.5}.automation__type-right{width:calc(100% - 125px);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}.automation__logo{margin:10px 8px 10px 0}.automation__logo:last-child{margin-right:0}.automation__logo-wide{margin-right:30px}.year-result{padding-top:0}.year-result__item{padding:25px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.year-result__prop{width:50%;padding-right:15px;font-weight:600;font-size:16px;line-height:120%}.year-result__value{width:50%;font-weight:500;font-size:30px;line-height:100%;color:#f94f0d}@media (min-width:768px){.automation{padding:60px 0 60px}.automation__title{margin-bottom:40px;font-size:40px}.automation__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%}.automation__item{margin-bottom:0;width:calc(50% - 10px);padding:30px 25px;-webkit-box-shadow:0 0 34px rgba(0,0,0,.06);box-shadow:0 0 34px rgba(0,0,0,.06);border-radius:20px}.automation__subtitle{font-size:20px;width:275px}.automation__img{width:60px;height:60px;margin-right:15px}.year-result{padding-top:0}.year-result__item{padding:40px 25px}.year-result__prop{width:100%;font-size:20px;margin-bottom:12px}}@media (min-width:1024px){.automation{padding:80px 0 80px}.automation__subtitle{font-size:20px;width:100%}.automation__img{margin-right:35px}.automation__logo{margin-right:20px}.year-result{padding-top:0}.year-result__item{padding:35px 30px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.year-result__prop{width:auto;margin-bottom:0}.year-result__value{width:auto}}@media (min-width:1440px){.automation{padding:100px 0}.automation__title{margin-bottom:45px;font-size:50px}.automation__item{padding:30px 40px}.automation__subtitle{margin-bottom:30px;font-size:22px}.automation__type{margin-bottom:15px}.automation__type:last-child{margin-bottom:0}.automation__type-left{width:110px;height:50px}.automation__type-left-word{font-size:16px}.automation__type-right{width:calc(100% - 130px)}.automation__logo{margin:0 8px 0 0}.automation__logo:last-child{margin-right:0}.automation__logo-wide{margin-right:10px}.year-result{padding-top:0}.year-result__item{padding:35px 50px 35px 40px}.year-result__prop{font-size:22px}}.popular-services{margin:40px 0 30px}.popular-services__list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.popular-services__item{position:relative;height:160px;padding:30px 15px 15px 30px;border-radius:20px;width:100%;margin-bottom:10px}.popular-services__inner{position:absolute;top:0;left:0;right:0;bottom:0;border-radius:20px;overflow:hidden;z-index:2}.popular-services__title{position:relative;z-index:5;font-weight:600;font-size:14px;max-width:130px}.popular-services__image-bg{position:absolute;top:0;right:0;bottom:0;left:0;background:right no-repeat;background-size:auto 100%;-webkit-transform:none;transform:none;border-radius:20px 20px 20px 0;z-index:4}.popular-services__image{position:absolute;top:50%;left:165px;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);max-width:120px;max-height:102px;-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s;z-index:4}.popular-services__price{position:absolute;bottom:15px;font-size:12px;z-index:5}.popular-services__cost{opacity:.5}.popular-services__value{font-weight:700}.popular-services .orange__more{bottom:15px;right:15px;width:24px;height:24px}.popular-services .orange__more svg{width:4px;height:8px}.popular-services__link{position:absolute;top:0;left:0;right:0;bottom:0;-webkit-transition:background 1s;transition:background 1s;z-index:20}.popular-services__seven,.popular-services__six,.popular-services__three,.popular-services__two{height:242px;width:calc(50% - 5px)}.popular-services__three .popular-services__image,.popular-services__two .popular-services__image{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);top:93px;height:98px;left:50%;right:auto}.popular-services__seven .popular-services__image,.popular-services__six .popular-services__image{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);top:77px;left:50%;right:auto}.popular-services__eight,.popular-services__eight .popular-services__inner{background:linear-gradient(249.79deg,#eaf2ff .68%,#828c9e 101.13%)}.popular-services__eight .popular-services__title,.popular-services__nine .popular-services__title{max-width:160px}@media (min-width:768px){.popular-services{margin:60px 0 40px}.popular-services__h2{font-size:30px;margin-bottom:20px}.popular-services__item:hover .popular-services__inner{-webkit-transform:perspective(1000px);transform:perspective(1000px);top:-4px;left:-4px;right:-4px;bottom:-4px}.popular-services__item:hover:before{opacity:1}.popular-services__item:before{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;background:#000;border-radius:25px;content:"";-webkit-transition:opacity .35s;transition:opacity .35s;-webkit-box-shadow:0 3px 30px rgba(0,0,0,.3);box-shadow:0 3px 30px rgba(0,0,0,.3);opacity:0}.popular-services__item{width:calc(50% - 10px);padding:30px;margin-bottom:20px}.popular-services__title{font-size:20px;max-width:140px}.popular-services .popular-services__image{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:95px;max-height:165px;height:auto}.popular-services__price{bottom:30px;font-size:14px}.popular-services .orange__more{bottom:30px;right:30px;width:34px;height:34px}.popular-services .orange__more svg{width:7px;height:10px}.popular-services__one,.popular-services__six,.popular-services__three,.popular-services__two{height:333px}.popular-services__five,.popular-services__four{height:308px}.popular-services__five .popular-services__image,.popular-services__four .popular-services__image{max-height:100px}.popular-services__eight,.popular-services__nine,.popular-services__seven{width:calc(33.333% - 7px);height:178px}.popular-services__eight .popular-services__image,.popular-services__nine .popular-services__image,.popular-services__seven .popular-services__image{max-height:59px;max-width:96px}.popular-services__three .popular-services__image{max-height:136px;max-width:136px}.popular-services__one{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.popular-services__two{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.popular-services__three{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.popular-services__four{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.popular-services__five{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.popular-services__six{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.popular-services__seven{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.popular-services__seven .popular-services__title{max-width:160px}.popular-services__eight{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.popular-services__nine{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}}@media (min-width:1024px){.popular-services{margin:80px 0 60px}.popular-services__h2{font-size:40px;margin-bottom:30px}.popular-services__item{width:calc(33.333% - 7px);height:245px}.popular-services .popular-services__image{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:140px;max-height:90px;height:auto}.popular-services__five,.popular-services__four,.popular-services__three,.popular-services__two{width:calc(25% - 15px);height:422px}.popular-services__three .popular-services__image,.popular-services__two .popular-services__image{max-height:177px;max-width:145px}.popular-services__five .popular-services__image,.popular-services__four .popular-services__image{max-height:135px;max-width:105px}.popular-services__one,.popular-services__six{height:260px;width:calc(50% - 10px)}.popular-services__one .popular-services__image,.popular-services__six .popular-services__image{max-width:132px;max-height:188px;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);left:auto;right:140px}.popular-services__one{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.popular-services__two{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.popular-services__three{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.popular-services__four{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.popular-services__five{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.popular-services__six{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.popular-services__seven{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.popular-services__eight{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.popular-services__nine{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}}@media (min-width:1440px){.popular-services{margin:100px 0 100px}.popular-services__h2{font-size:50px;margin-bottom:35px}.popular-services__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.popular-services__one-column,.popular-services__three-column{width:453px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.popular-services__two-column{width:264px;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.popular-services__item{width:100%;height:254px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.popular-services .popular-services__image{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:145px;max-height:170px}.popular-services__five,.popular-services__four,.popular-services__three,.popular-services__two{width:calc(50% - 10px);height:414px}.popular-services__eight,.popular-services__nine,.popular-services__seven{height:216px}.popular-services__nine,.popular-services__six,.popular-services__three,.popular-services__two{margin:0}.popular-services__one .popular-services__image{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);left:auto;right:115px}.popular-services__seven .popular-services__image{max-width:115px;max-height:72px}.popular-services__eight .popular-services__image{max-width:125px;max-height:80px}.popular-services__five .popular-services__image,.popular-services__four .popular-services__image{max-width:102px;max-height:135px}.popular-services__six .popular-services__image{max-height:184px;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);left:auto;right:140px}}.popular-service{margin:40px 0 30px}.popular-service__list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.popular-service__item{position:relative;height:160px;padding:30px 15px 15px 30px;border-radius:20px;width:100%;margin-bottom:10px}.popular-service__inner{position:absolute;top:0;left:0;right:0;bottom:0;border-radius:20px;overflow:hidden;z-index:2}.popular-service__title{position:relative;z-index:5;font-weight:600;font-size:14px;max-width:120px;height:51px;overflow:hidden}.popular-service__image-bg{position:absolute;top:0;right:0;bottom:0;left:0;background:right no-repeat;background-size:auto 100%;-webkit-transform:none;transform:none;border-radius:20px 20px 20px 0;z-index:4}.popular-service__frame{position:absolute;top:50%;right:16.7%;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);max-width:218px;min-width:102px;height:100px;width:32%;-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s;z-index:4}.popular-service__image{max-width:100%;max-height:100%;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.popular-service__price{position:absolute;bottom:15px;font-size:12px;z-index:5}.popular-service__cost{opacity:.5}.popular-service__value{font-weight:700}.popular-service .orange__more{bottom:15px;right:15px;width:24px;height:24px}.popular-service .orange__more svg{width:4px;height:8px}.popular-service__link{position:absolute;top:0;left:0;right:0;bottom:0;-webkit-transition:background 1s;transition:background 1s;z-index:20}.popular-service__four,.popular-service__seven,.popular-service__six,.popular-service__three{height:320px;width:calc(50% - 5px)}.popular-service__four .popular-service__frame,.popular-service__seven .popular-service__frame,.popular-service__six .popular-service__frame,.popular-service__three .popular-service__frame{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);top:96px;left:50%;right:auto;width:62%;height:167px}@media (min-width:768px){.popular-service{margin:60px 0 40px}.popular-service__h2{font-size:30px;margin-bottom:20px}.popular-service__item:hover .popular-service__inner{-webkit-transform:perspective(1000px);transform:perspective(1000px);top:-4px;left:-4px;right:-4px;bottom:-4px}.popular-service__item:hover:before{opacity:1}.popular-service__item:before{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;background:#000;border-radius:25px;content:"";-webkit-transition:opacity .35s;transition:opacity .35s;-webkit-box-shadow:0 3px 30px rgba(0,0,0,.3);box-shadow:0 3px 30px rgba(0,0,0,.3);opacity:0}.popular-service__item{width:calc(50% - 10px);height:302px;padding:30px;margin-bottom:20px}.popular-service__title{font-size:20px;max-width:100%;height:48px}.popular-service .popular-service__frame{top:93px;width:80%;left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0);max-width:calc(100% - 60px);height:135px}.popular-service__price{bottom:30px;font-size:14px}.popular-service .orange__more{bottom:30px;right:30px;width:34px;height:34px}.popular-service .orange__more svg{width:7px;height:10px}.popular-service__five,.popular-service__four,.popular-service__six{height:270px;width:calc(33.333% - 7px)}.popular-service__five .popular-service__title,.popular-service__four .popular-service__title,.popular-service__six .popular-service__title{height:72px}.popular-service__five .popular-service__frame,.popular-service__four .popular-service__frame,.popular-service__six .popular-service__frame{top:106px;height:95px}.popular-service__one{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.popular-service__two{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.popular-service__three{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.popular-service__four{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.popular-service__five{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.popular-service__six{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.popular-service__seven{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.popular-service__eight{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.popular-service__nine{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}@media (min-width:1024px){.popular-service{margin:80px 0 60px}.popular-service__h2{font-size:40px;margin-bottom:30px}.popular-service__item{width:calc(33.333% - 7px);height:270px}.popular-service__item .popular-service__title{width:100%;height:48px;max-width:275px}.popular-service .popular-service__frame{top:93px;left:50%;-webkit-transform:translate(-50%,0);transform:translate(-50%,0);width:240px;height:100px}.popular-service__eight,.popular-service__seven,.popular-service__three,.popular-service__two{width:calc(25% - 15px);height:500px}.popular-service__eight .popular-service__title,.popular-service__seven .popular-service__title,.popular-service__three .popular-service__title,.popular-service__two .popular-service__title{height:72px}.popular-service__eight .popular-service__frame,.popular-service__seven .popular-service__frame,.popular-service__three .popular-service__frame,.popular-service__two .popular-service__frame{width:134px;height:304px;top:117px}.popular-service__nine,.popular-service__one{height:270px;width:calc(50% - 10px)}.popular-service__nine .popular-service__title,.popular-service__one .popular-service__title{max-width:275px}.popular-service__nine .popular-service__frame,.popular-service__one .popular-service__frame{width:50%;height:147px;-webkit-transform:translate(-45%,0);transform:translate(-45%,0)}.popular-service__one{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.popular-service__two{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.popular-service__three{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.popular-service__four{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.popular-service__five{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.popular-service__six{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.popular-service__seven{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.popular-service__eight{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.popular-service__nine{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}@media (min-width:1440px){.popular-service{margin:100px 0 100px}.popular-service__h2{font-size:50px;margin-bottom:35px}.popular-service__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.popular-service__one-column,.popular-service__three-column{width:430px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.popular-service__two-column{width:310px;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.popular-service__item{width:100%;height:270px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;margin-bottom:20px}.popular-service .popular-service__frame{top:93px;left:50%;-webkit-transform:translate(-40%,0);transform:translate(-40%,0);width:234px;height:147px}.popular-service .popular-service__title{height:48px;max-width:275px}.popular-service__eight,.popular-service__seven,.popular-service__three,.popular-service__two{width:calc(50% - 10px);height:440px}.popular-service__eight .popular-service__title,.popular-service__seven .popular-service__title,.popular-service__three .popular-service__title,.popular-service__two .popular-service__title{height:72px;max-width:100%}.popular-service__eight .popular-service__frame,.popular-service__seven .popular-service__frame,.popular-service__three .popular-service__frame,.popular-service__two .popular-service__frame{top:144px;height:187px;width:147px;-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}.popular-service__five,.popular-service__four,.popular-service__six{height:230px}.popular-service__five .popular-service__frame,.popular-service__four .popular-service__frame,.popular-service__six .popular-service__frame{height:107px;width:114px;-webkit-transform:translate(-30%,0);transform:translate(-30%,0)}.popular-service__nine,.popular-service__six,.popular-service__three,.popular-service__two{margin-bottom:0}}.before-after{margin:40px auto;position:relative}.before-after__title{text-align:center}.before-after__description{margin-bottom:30px;text-align:center;font-size:14px;line-height:150%}.before-after__main{position:relative}.before-after__image{-o-object-fit:cover;object-fit:cover;border-radius:20px}.before-after-swiper-pagination{margin-top:15px;padding:14px 0;line-height:0}.before-after-slider__next,.before-after-slider__prev{display:-webkit-box;display:-ms-flexbox;display:flex;bottom:-50px;top:auto;width:34px;height:34px;border-radius:30px;background:#f94f0d;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:0}.before-after-slider__next svg,.before-after-slider__prev svg{width:8px;height:14px}.before-after-slider__prev{left:0}.before-after-slider__next{right:0}@media (min-width:768px){.before-after{width:688px}.before-after-swiper-pagination{margin-top:30px}.before-after-slider__next,.before-after-slider__prev{bottom:-65px}}@media (min-width:1024px){.before-after{margin:60px auto;width:940px}.before-after__description{margin-bottom:40px;font-size:18px}.before-after__wrapper{margin:0 auto;width:798px}.before-after-swiper-pagination{margin-top:36px}.before-after-slider__next,.before-after-slider__prev{top:50%;bottom:0;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}}@media (min-width:1440px){.before-after{width:100%}.before-after__description{margin-bottom:60px}.before-after__wrapper{width:1016px}.before-after-swiper-pagination{margin-top:30px}.before-after-slider__next,.before-after-slider__prev{width:60px;height:60px}.before-after-slider__next svg,.before-after-slider__prev svg{width:13px;height:22px}}.twentytwenty-handle{width:34px;height:34px;margin-left:-17px;margin-top:-17px;background:#fff;border:none;-webkit-box-shadow:none;box-shadow:none}.twentytwenty-left-arrow:before,.twentytwenty-right-arrow:before{display:none}.twentytwenty-left-arrow,.twentytwenty-right-arrow{margin:0;top:0;width:50%;height:100%;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.twentytwenty-left-arrow svg,.twentytwenty-right-arrow svg{width:9px;height:14px}.twentytwenty-left-arrow{left:0}.twentytwenty-right-arrow{left:50%}.twentytwenty-right-arrow svg{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.twentytwenty-horizontal .twentytwenty-handle:before{margin-bottom:17px;-webkit-box-shadow:none;box-shadow:none}.twentytwenty-horizontal .twentytwenty-handle:after{margin-top:17px;-webkit-box-shadow:none;box-shadow:none}@media (min-width:1440px){.twentytwenty-handle{width:60px;height:60px;margin-left:-30px;margin-top:-30px}.twentytwenty-left-arrow svg,.twentytwenty-right-arrow svg{width:13px;height:22px}.twentytwenty-horizontal .twentytwenty-handle:before{margin-bottom:30px}.twentytwenty-horizontal .twentytwenty-handle:after{margin-top:30px}}.twentytwenty-handle-after,.twentytwenty-handle-before{height:9999px;position:absolute;width:100%}.twentytwenty-handle-before{bottom:50%}twentytwenty-handle-after{top:50%}@media (max-width:1439px){.twentytwenty-handle-after,.twentytwenty-handle-before{margin-left:-3px;width:40px}}.select-cleaning__title{font-weight:700;line-height:120%;font-size:30px;padding:50px 0 20px}.select-cleaning__tabs{margin-bottom:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:20px}.select-cleaning__link{padding-bottom:10px;border:none;border-bottom:2px solid transparent;font-weight:600;font-size:16px;line-height:120%}.select-cleaning__link.active{border-bottom:2px solid #f94f0d}.select-cleaning__container{display:none}.select-cleaning__container.active{display:block}@media (min-width:768px){.select-cleaning__title{padding:80px 0 40px}.select-cleaning__tabs{margin-bottom:40px;gap:40px}.select-cleaning__link{font-size:20px}}@media (min-width:1024px){.select-cleaning__title{padding:66px 0 33px}.select-cleaning__tabs{margin-bottom:50px}}.loyalty-details{margin-bottom:130px}.loyalty-details__title{text-align:center;margin-bottom:40px;padding:0 50px}.loyalty-details__list{-webkit-box-shadow:0 2px 2px rgba(0,0,0,.1),0 0 24px rgba(0,0,0,.04);box-shadow:0 2px 2px rgba(0,0,0,.1),0 0 24px rgba(0,0,0,.04);border-radius:20px}.loyalty-details__item{background:#fff;-webkit-box-shadow:0 2px 0 rgba(0,0,0,.1);box-shadow:0 2px 0 rgba(0,0,0,.1);border-radius:20px;margin-bottom:2px;padding:0 15px}.loyalty-details__item:last-child{-webkit-box-shadow:none;box-shadow:none}.loyalty-details__header{padding:25px 55px 25px 10px;font-weight:600;font-size:20px;line-height:170%;position:relative;cursor:pointer}.loyalty-details__header-close{position:absolute;top:50%;right:0;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);width:24px;height:24px}.loyalty-details__header-close:after,.loyalty-details__header-close:before{position:absolute;background:#000;content:" "}.loyalty-details__header-close:before{top:10px;left:0;height:4px;width:24px}.loyalty-details__header-close:after{top:0;left:10px;height:24px;width:4px}.loyalty-details__header.is-open .loyalty-details__header-close:after,.loyalty-details__header.is-open .loyalty-details__header-close:before{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.loyalty-details__header.is-open .loyalty-details__header-close:after,.loyalty-details__header.is-open .loyalty-details__header-close:before{background:#f94f0d}.loyalty-details__body{display:none;border:none;border-top:1px solid #f0f0f0;padding:25px 10px 30px;font-size:12px;line-height:170%}.loyalty-details__body ol{margin:0;padding-left:15px}.loyalty-details__body li{line-height:170%}@media (min-width:768px){.loyalty-details{margin-bottom:110px}.loyalty-details__title{margin-bottom:60px}.loyalty-details__item{padding:0 45px}.loyalty-details__header{padding:40px 90px 40px 0;font-weight:600;font-size:22px}.loyalty-details__body{padding:35px 0 60px;font-size:16px}.loyalty-details__body ol{padding-left:15px}}@media (min-width:1024px){.loyalty-details{margin-bottom:130px}.loyalty-details__title{margin-bottom:80px}.loyalty-details__item{padding:0 45px}.loyalty-details__header{padding:40px 90px 40px 0;font-size:30px;text-align:left}.loyalty-details__body{font-size:18px}.loyalty-details__body ol{padding-left:25px}}@media (min-width:1440px){.loyalty-details{margin-left:-60px;margin-right:-60px}.loyalty-details__header{font-size:40px}.loyalty-details__body{font-size:22px}.loyalty-details__body ol{padding-left:25px}}
/* End */


/* Start:/local/templates/bianca/template_styles.css?17399531828278*/
.small-basket__count.is-alive {
    animation-name: cart-animation;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-direction: normal;
}

@keyframes cart-animation {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    50% {
        transform: translateY(0);
    }
    60% {
        transform: translateY(-6px);
    }
    80% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}
.card__img.to-basket, .wash-detail__img.to-basket{
    max-width: 50px;
    max-height: 50px;
}

.section-list-without-promo{
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .section-list-without-promo{
        margin-bottom: 100px;
    }
}
.text-page{
    margin: 40px 0;
    text-align: left;
    line-height: 150% ;
    color: #060606;
}
.text-page *{
    line-height: 150% ;
}
@media (min-width: 1024px) {
    .text-page{
        font-size: 18px;
    }
}
.section-list-without-description{
    margin-top: 60px;
}
@media(min-width: 1440px){
    .section-list-without-description{
        margin-top: 80px;
    }
}
.main-page-h1{
    display: none;
}

.reception-detail-banner{
    margin-top: 150px;
}

@media (min-width: 1024px) {
    .main-delivery {
        margin-top: 60px;
    }
}
@media (min-width: 1440px) {
    .main-delivery {
        margin-top: 60px;
    }
}
.header__social{
    justify-content: flex-end;
}
.header__social a{
    margin-left: 8px;
}
.small-basket{
    right: auto;
    left: 0;
    border-radius: 0 41px 0 0;
}
@media (min-width: 768px){
    .main-chemistry__title{
        display: block;
    }
}
@media (min-width: 1440px){
    .main-chemistry__aroma{
        height: 370px;
        padding-top: 30px;
    }
    .main-chemistry__wash .main-chemistry__title, .main-chemistry__condition .main-chemistry__title{
        font-size: 20px;
    }
    .main-chemistry__water{
        height: 370px;
    }
    .main-chemistry__image{
        top: 100px;
    }
}
.main-chemistry{
    margin-bottom: 20px;
}
@media (min-width: 1024px){
    .main-chemistry{
        margin-bottom: 50px;
    }
    .for-business-how .reception-detail-list__title{
        padding-right: 0;
    }
}
@media (min-width: 1440px){
    .main-chemistry{
        margin-bottom: 80px;
    }
}
.reception-detail-list__item{
    min-height: 267px;
    height: auto;
    padding-bottom: 40px;
}

.mobile-panel{
    display: none;
}
@media (max-width: 767px){
    .mobile-panel-body .mobile-panel {
        display: flex;
    }
    .mobile-panel-body .header{
        top: 80px;
        -webkit-transition: top 2s;
        transition: top 1s;
    }
    .after-mobile-panel-close .header{
        top: 0;
    }
    .mobile-panel-body .page__content{
        padding-top: 160px;
        -webkit-transition: padding-top 2s;
        transition: padding-top 1s;
    }
    .after-mobile-panel-close .page__content{
        padding-top: 80px;
    }
    .mobile-panel-body .chose-city{
        top: 160px;
    }
    .after-mobile-panel-close .chose-city{
        top: 80px;
    }
    .mobile-panel-body .burger{
        height: calc(100vh - 160px);
    }
}
.mobile-panel-body .mobile-panel{
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 6000;
    background: #fff;
    padding: 11px 20px 11px 15px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.after-mobile-panel-close .mobile-panel{
    display: none;
}
.mobile-panel__left {
    display: flex;
    align-items: center;
}
.mobile-panel__right {
    display: flex;
    align-items: center;
}
.mobile-panel__logo{
    width: 50px;
    margin-right: 8px;
    line-height: 0;
}
.mobile-panel__logo svg{
    width: 50px;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}
.mobile-panel__text-wrapper{
    width: 160px;
}
.mobile-panel__title{
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 100%;
}
.mobile-panel__text{
    font-weight: 600;
    font-size: 8px;
    line-height: 100%;
    color:#262626;
    margin: 4px 0;
    opacity: 0.75;
}
.mobile-panel__star-list{
    display: flex;
    margin-right: 2px;
}
.mobile-panel__star-item{
    width: 15px;
    height: 15px;
}
.mobile-panel-btn{
    width: 80px;
    height: 20px;
    padding: 3px 3px;
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    margin-right: 8px;

}
.mobile-panel__close{
    border: 1px solid #F94F0D;
    border-radius: 60px;
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
}
.mobile-panel__close-svg{
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);

}
.one-point_arrival-empty{
    position: static;
    margin-left: 0;
    margin-top: 40px;
}
@media(min-width: 1440px){
        .wash-detail__description.visible-lg{
            display: block;
        }
}
@media (max-width: 767px) {
    .top__back.hidden-xs{
        display: none;
    }
}

.wash-detail .promo__icon{
    background: #f94f0d;
    width: 49px;
    height: 30px;
    font-size: 11px;
    line-height: 100%;
    position: relative;
    margin: 0 auto;
    top: 0;
    left: 0;
}
.wash-detail__price.old-price{
    text-decoration: line-through;
    opacity: .5;
    font-weight: normal;
}
.wash-detail__right{
    position: relative;
}
.price__header-custom{
    width: 100%;
}
@media(min-width: 768px){
    .wash-detail__price.old-price{
        margin-left: 25px;
    }
    .wash-detail .promo__icon{
        margin: 0 0 40px 0;
    }
    .wash-detail__price{
        font-size: 22px;
    }
    .price__header-custom{
        margin: 0 20px;
        width: calc(100% - 40px);
        overflow: hidden;
    }
}
@media (min-width: 1024px){
    .wash-detail .promo__icon{
        margin: 0;
        position: absolute;
        top: -15px;
        left: -55px;
    }
    .wash-detail__price{
        font-size: 24px;
    }
    .main-points, .one-point {
        position: relative;
        z-index: 2;
    }
}
.card-hidden{
   display: none;
 }
.about-why__image{
    height: auto;
}
@media (min-width: 768px) and (max-width: 1023px){
    .promo__item .promo__name {
        height: 100px;
    }
}
@media (min-width: 1024px) and (max-width: 1439px){
    .promo__item .promo__name {
        width: 350px;
        height: 88px;
    }
}
.reception-item__phone{
    z-index: 40;
    position: relative;
}
.price__header-link{
    display: block;
}
.footer__icons{
    margin: 0 auto 20px;
    width: 185px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__icons a{
    line-height: 0;
}
.footer__icons svg{
    width: 35px;
    height: 35px;
}
.promo__item .promo__img-fone{
    background-size: cover;
}

@media (min-width: 1024px){
    .order-item__name {
        font-size: 16px;
        max-width: 212px;
        width: 212px;
    }
}
.footer_links.row{
    margin-top: 20px;
    opacity: 0.4;
    display: flex;
    gap: 10px;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: space-around;
}
.footer_links a{
    text-decoration: underline;
}
@media (min-width: 1024px){
    .footer_links.row{
        justify-content: space-between;
    }
}

.dev-bottom__buttons a {
    margin-right: 15px;
    padding-right: 25px;
    padding-left: 25px;
    min-width: 112px;
}

@media (min-width: 1024px) {
    .dev-bottom__buttons a {
        margin-right: 25px;
        padding-right: 30px;
        padding-left: 30px;
    }
}

.loyalty-details__body a {
    color: #f94f0d;
    text-decoration: underline;
}

.loyalty-details__body a:hover {
    text-decoration: none;
}
/* End */
/* /local/markup/dist/libs/remodal/remodal.css?17403783131695 */
/* /local/markup/dist/libs/remodal/remodal-default-theme.css?17403783126041 */
/* /local/markup/dist/libs/slick-slider/slick.css?17403783131895 */
/* /local/markup/dist/libs/slick-slider/slick-theme.css?17403783133243 */
/* /local/markup/dist/libs/chosen/chosen.min.css?17403783099962 */
/* /local/markup/dist/libs/swiper/swiper.min.css?174037831419789 */
/* /local/markup/dist/libs/microtip.css?17403782628537 */
/* /local/markup/dist/css/style.css?1751349262204925 */
/* /local/templates/bianca/template_styles.css?17399531828278 */
