/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0!important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
     -moz-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
     -moz-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  -o-transition: -o-transform 0.1s ease;
  -moz-transition: transform 0.1s ease, -moz-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease, -moz-transform 0.1s ease, -o-transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
     -moz-transform: scale(1.3, 1.3);
       -o-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute!important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
     -moz-transition-duration: inherit;
       -o-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
     -moz-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
       -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
     -moz-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
       -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  -moz-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  -moz-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: opacity,-o-transform;
  -moz-transition-property: transform,opacity,-moz-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform,-moz-transform,-o-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
     -moz-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
     -moz-transform-origin: top left;
      -ms-transform-origin: top left;
       -o-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: opacity,-o-transform;
  -moz-transition-property: transform,opacity,-moz-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform,-moz-transform,-o-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
     -moz-transform-origin: 0;
      -ms-transform-origin: 0;
       -o-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-transition-timing-function: linear;
     -moz-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: -webkit-calc(50% - 50px);
  top: -moz-calc(50% - 50px);
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding:max(0px)) {
  .fancybox-caption {
    padding: 75px 44px 25px 44px;
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  -webkit-animation: a 1s linear infinite;
     -moz-animation: a 1s linear infinite;
          animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes a {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@-moz-keyframes a {
  to {
    -moz-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}

@keyframes a {
  to {
    -webkit-transform: rotate(1turn);
       -moz-transform: rotate(1turn);
         -o-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
     -moz-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
       -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
     -moz-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
     -moz-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
     -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
     -moz-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
     -moz-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-1turn);
     -moz-transform: rotate(-1turn);
      -ms-transform: rotate(-1turn);
       -o-transform: rotate(-1turn);
          transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(1turn);
     -moz-transform: rotate(1turn);
      -ms-transform: rotate(1turn);
       -o-transform: rotate(1turn);
          transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
     -moz-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
     -moz-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1) translateZ(0);
     -moz-transform: scaleX(1) translateZ(0);
          transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
     -moz-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
     -moz-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translateZ(0) scale(1);
     -moz-transform: translateZ(0) scale(1);
          transform: translateZ(0) scale(1);
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: -webkit-calc(100% - 8px);
  max-height: -moz-calc(100% - 8px);
  max-height: calc(100% - 8px);
  max-width: -webkit-calc(50% - 4px);
  max-width: -moz-calc(50% - 4px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before,
.daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
       transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  -moz-transform: rotate(135deg);
   -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
       transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week,
.daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */

.datepicker--cells {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.datepicker--cell {
  border-radius: 4px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
          justify-content: center;
  height: 32px;
  z-index: 1;
}

.datepicker--cell.-focus- {
  background: #f0f0f0;
}

.datepicker--cell.-current- {
  color: #4EB5E6;
}

.datepicker--cell.-current-.-focus- {
  color: #4a4a4a;
}

.datepicker--cell.-current-.-in-range- {
  color: #4EB5E6;
}

.datepicker--cell.-in-range- {
  background: rgba(92, 196, 239, 0.1);
  color: #4a4a4a;
  border-radius: 0;
}

.datepicker--cell.-in-range-.-focus- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell.-disabled- {
  cursor: default;
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-in-range- {
  color: #a1a1a1;
}

.datepicker--cell.-disabled-.-current-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-range-from- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 4px 0 0 4px;
}

.datepicker--cell.-range-to- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 0 4px 4px 0;
}

.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
  color: #fff;
  background: #5cc4ef;
}

.datepicker--cell.-range-from-.-range-to- {
  border-radius: 4px;
}

.datepicker--cell.-selected- {
  border: none;
}

.datepicker--cell.-selected-.-focus- {
  background: #45bced;
}

.datepicker--cell:empty {
  cursor: default;
}

.datepicker--days-names {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px 0 3px;
}

.datepicker--day-name {
  color: #FF9A19;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-flex: 1;
  -ms-flex: 1;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}

.-only-timepicker- .datepicker--content,
.datepicker--body,
.datepicker-inline .datepicker--pointer {
  display: none;
}

.datepicker--cell-day {
  width: 14.28571%;
}

.datepicker--cells-months {
  height: 170px;
}

.datepicker--cell-month {
  width: 33.33%;
  height: 25%;
}

.datepicker--cells-years,
.datepicker--years {
  height: 170px;
}

.datepicker--cell-year {
  width: 25%;
  height: 33.33%;
}

.datepickers-container {
  position: absolute;
  left: 0;
  top: 0;
}

.datepicker {
  background: #fff;
  border: 1px solid #dbdbdb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  width: 250px;
  position: absolute;
  left: -100000px;
  opacity: 0;
  transition: opacity 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  -webkit-transition: opacity 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, left 0s 0.3s, -o-transform 0.3s ease;
  -moz-transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s, -moz-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease, -moz-transform 0.3s ease, -o-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  z-index: 100;
}

.datepicker.-from-top- {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
   -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
       transform: translateY(-8px);
}

.datepicker.-from-right- {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
   -ms-transform: translateX(8px);
    -o-transform: translateX(8px);
       transform: translateX(8px);
}

.datepicker.-from-bottom- {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
   -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
       transform: translateY(8px);
}

.datepicker.-from-left- {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
   -ms-transform: translateX(-8px);
    -o-transform: translateX(-8px);
       transform: translateX(-8px);
}

.datepicker.active {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
   -ms-transform: translate(0);
    -o-transform: translate(0);
       transform: translate(0);
  transition: opacity 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
  -webkit-transition: opacity 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, left 0s 0s, -o-transform 0.3s ease;
  -moz-transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s, -moz-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease, -moz-transform 0.3s ease, -o-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
}

.datepicker-inline .datepicker {
  border-color: #d7d7d7;
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
   -ms-transform: none;
    -o-transform: none;
       transform: none;
}

.datepicker--content {
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  padding: 4px;
}

.datepicker--pointer {
  position: absolute;
  background: #fff;
  border-top: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  width: 10px;
  height: 10px;
  z-index: -1;
}

.datepicker--nav-action:hover,
.datepicker--nav-title:hover {
  background: #f0f0f0;
}

.-top-center- .datepicker--pointer,
.-top-left- .datepicker--pointer,
.-top-right- .datepicker--pointer {
  top: -webkit-calc(100% - 4px);
  top: -moz-calc(100% - 4px);
  top: calc(100% - 4px);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
   -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
       transform: rotate(135deg);
}

.-right-bottom- .datepicker--pointer,
.-right-center- .datepicker--pointer,
.-right-top- .datepicker--pointer {
  right: -webkit-calc(100% - 4px);
  right: -moz-calc(100% - 4px);
  right: calc(100% - 4px);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
   -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
       transform: rotate(225deg);
}

.-bottom-center- .datepicker--pointer,
.-bottom-left- .datepicker--pointer,
.-bottom-right- .datepicker--pointer {
  bottom: -webkit-calc(100% - 4px);
  bottom: -moz-calc(100% - 4px);
  bottom: calc(100% - 4px);
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
   -ms-transform: rotate(315deg);
    -o-transform: rotate(315deg);
       transform: rotate(315deg);
}

.-left-bottom- .datepicker--pointer,
.-left-center- .datepicker--pointer,
.-left-top- .datepicker--pointer {
  left: -webkit-calc(100% - 4px);
  left: -moz-calc(100% - 4px);
  left: calc(100% - 4px);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
       transform: rotate(45deg);
}

.-bottom-left- .datepicker--pointer,
.-top-left- .datepicker--pointer {
  left: 10px;
}

.-bottom-right- .datepicker--pointer,
.-top-right- .datepicker--pointer {
  right: 10px;
}

.-bottom-center- .datepicker--pointer,
.-top-center- .datepicker--pointer {
  left: -webkit-calc(50% - 10px / 2);
  left: -moz-calc(50% - 10px / 2);
  left: calc(50% - 10px / 2);
}

.-left-top- .datepicker--pointer,
.-right-top- .datepicker--pointer {
  top: 10px;
}

.-left-bottom- .datepicker--pointer,
.-right-bottom- .datepicker--pointer {
  bottom: 10px;
}

.-left-center- .datepicker--pointer,
.-right-center- .datepicker--pointer {
  top: -webkit-calc(50% - 10px / 2);
  top: -moz-calc(50% - 10px / 2);
  top: calc(50% - 10px / 2);
}

.datepicker--body.active {
  display: block;
}

.datepicker--nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #efefef;
  min-height: 32px;
  padding: 4px;
}

.-only-timepicker- .datepicker--nav {
  display: none;
}

.datepicker--nav-action,
.datepicker--nav-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  cursor: pointer;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
          justify-content: center;
}

.datepicker--nav-action {
  width: 32px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker--nav-action.-disabled- {
  visibility: hidden;
}

.datepicker--nav-action svg {
  width: 32px;
  height: 32px;
}

.datepicker--nav-action path {
  fill: none;
  stroke: #9c9c9c;
  stroke-width: 2px;
}

.datepicker--nav-title {
  border-radius: 4px;
  padding: 0 8px;
}

.datepicker--buttons,
.datepicker--time {
  border-top: 1px solid #efefef;
  padding: 4px;
}

.datepicker--nav-title i {
  font-style: normal;
  color: #9c9c9c;
  margin-left: 5px;
}

.datepicker--nav-title.-disabled- {
  cursor: default;
  background: 0 0;
}

.datepicker--buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
}

.datepicker--button {
  color: #4EB5E6;
  cursor: pointer;
  border-radius: 4px;
  -webkit-flex: 1;
  -ms-flex: 1;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
     -moz-box-align: center;
          align-items: center;
  height: 32px;
}

.datepicker--button:hover {
  color: #4a4a4a;
  background: #f0f0f0;
}

.datepicker--time {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
     -moz-box-align: center;
          align-items: center;
  position: relative;
}

.datepicker--time.-am-pm- .datepicker--time-sliders {
  -webkit-flex: 0 1 138px;
  -ms-flex: 0 1 138px;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
          flex: 0 1 138px;
  max-width: 138px;
}

.-only-timepicker- .datepicker--time {
  border-top: none;
}

.datepicker--time-sliders {
  -webkit-flex: 0 1 153px;
  -ms-flex: 0 1 153px;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
          flex: 0 1 153px;
  margin-right: 10px;
  max-width: 153px;
}

.datepicker--time-label {
  display: none;
  font-size: 12px;
}

.datepicker--time-current {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-flex: 1;
  -ms-flex: 1;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  font-size: 14px;
  text-align: center;
  margin: 0 0 0 10px;
}

.datepicker--time-current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.datepicker--time-current-hours,
.datepicker--time-current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}

.datepicker--time-current-hours:after,
.datepicker--time-current-minutes:after {
  content: '';
  background: #f0f0f0;
  border-radius: 4px;
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.datepicker--time-current-hours.-focus-:after,
.datepicker--time-current-minutes.-focus-:after {
  opacity: 1;
}

.datepicker--time-current-ampm {
  text-transform: uppercase;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #9c9c9c;
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.datepicker--time-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
     -moz-box-align: center;
          align-items: center;
  font-size: 11px;
  height: 17px;
  background: -webkit-gradient(linear, left top, right top, from(#dedede), to(#dedede)) left 0.5% 1px no-repeat;
  background: -webkit-linear-gradient(left, #dedede, #dedede) left 0.5% 1px no-repeat;
  background: -moz-linear-gradient(left, #dedede, #dedede) left 0.5% 1px no-repeat;
  background: linear-gradient(to right, #dedede, #dedede) left 0.5% 1px no-repeat;
}

.datepicker--time-row:first-child {
  margin-bottom: 4px;
}

.datepicker--time-row input[type=range] {
  background: 0 0;
  cursor: pointer;
  -webkit-flex: 1;
  -ms-flex: 1;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.datepicker--time-row input[type=range]::-ms-tooltip {
  display: none;
}

.datepicker--time-row input[type=range]:hover::-webkit-slider-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:hover::-moz-range-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:hover::-ms-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type=range]:focus {
  outline: 0;
}

.datepicker--time-row input[type=range]:focus::-webkit-slider-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]:focus::-moz-range-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]:focus::-ms-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  margin-top: -6px;
}

.datepicker--time-row input[type=range]::-moz-range-thumb {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}

.datepicker--time-row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -ms-transition: background 0.2s;
  transition: background 0.2s;
}

.datepicker--time-row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-moz-range-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-fill-lower {
  background: 0 0;
}

.datepicker--time-row input[type=range]::-ms-fill-upper {
  background: 0 0;
}

.datepicker--time-row span {
  padding: 0 12px;
}

.datepicker--time-icon {
  color: #9c9c9c;
  border: 1px solid;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 5px -1px 0;
  width: 1em;
  height: 1em;
}

.datepicker--time-icon:after,
.datepicker--time-icon:before {
  content: '';
  background: currentColor;
  position: absolute;
}

.datepicker--time-icon:after {
  height: 0.4em;
  width: 1px;
  left: -webkit-calc(50% - 1px);
  left: -moz-calc(50% - 1px);
  left: calc(50% - 1px);
  top: -webkit-calc(50% + 1px);
  top: -moz-calc(50% + 1px);
  top: calc(50% + 1px);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
   -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
       transform: translateY(-100%);
}

.datepicker--time-icon:before {
  width: 0.4em;
  height: 1px;
  top: -webkit-calc(50% + 1px);
  top: -moz-calc(50% + 1px);
  top: calc(50% + 1px);
  left: -webkit-calc(50% - 1px);
  left: -moz-calc(50% - 1px);
  left: calc(50% - 1px);
}

.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #ccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: 0 0;
  border: none;
}

@font-face {
  font-family: "Circe";
  src: url(../fonts/CRC25.otf);
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Circe";
  src: url(../fonts/CRC35.otf);
  font-weight: 350;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Circe";
  src: url(../fonts/CRC55.otf);
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Circe";
  src: url(../fonts/CRC65.otf);
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Phil";
  src: url(../fonts/Philosopher-Regular.ttf);
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

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

a,
input,
textarea,
button {
  border: none;
  outline: none;
  background: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-family: "Circe";
  text-decoration: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: "Phil";
  color: #000;
  background: #fff;
  line-height: 1;
  font-weight: 400;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

main {
  max-width: 100%;
  overflow-x: hidden;
}

.title {
  font-family: "Phil";
  font-size: 46px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: #000000;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
}

header .wrapper {
  max-width: 1360px;
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0 23px;
}

.header_lang {
  margin-right: 15px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.header_lang ul {
  position: relative;
}

.header_lang ul li {
  position: absolute;
  left: 0;
  z-index: 1;
  top: 20px;
  display: none;
}

.header_lang ul li span {
  font-weight: 400;
}

.header_lang li.current-lang {
  display: block;
  position: static;
}

.header_lang li {
  display: none;
}

.header_lang a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.header_lang svg {
  width: 14px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.header_lang .active {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header_lang:hover > span {
  color: #293694;
}

.header_burger {
  margin-right: 20px;
  display: none;
}

.header_logo {
  width: 144px;
  margin-right: 15px;
}

.header_nav-wrap {
  margin: 0 auto;
}

.header_nav-wrap::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.header_nav-wrap::-webkit-scrollbar-thumb {
  width: 0px;
  height: 0px;
}

.header_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_nav a {
  font-family: "Circe";
  font-size: 8px;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  margin: 0 15px;
}

.header_nav a:hover {
  color: #293694;
}

.header_nav li {
  position: relative;
  padding: 10px 0;
}

.header_nav li ul {
  position: absolute;
  width: 130px;
  top: 30px;
  left: -10px;
  padding: 15px 25px 5px;
  z-index: 1;
  background: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  display: none;
}

.header_nav li ul li {
  padding: 0;
}

.header_nav li ul li a {
  margin: 0 0 10px;
  display: block;
}

.header_place {
  width: 10px;
  margin-right: 20px;
  cursor: pointer;
}

.header_phone {
  font-family: "Circe";
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.025em;
  margin-right: 20px;
  text-transform: uppercase;
}

.header_phone:hover {
  color: #293694;
}

.header_phone svg {
  display: none;
}

.header_btn {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 10px 5px;
  border: 1px solid #AAAAAA;
  margin-right: 20px;
}

.header_btn:hover {
  color: #293694;
}

.header_age {
  font-family: "Circe";
  font-weight: 350;
  font-size: 11px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #333333;
  border: 0.5px solid #333333;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menu-layer {
  position: fixed;
  width: 100%;
  height: 100vh;
  cursor: pointer;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 98;
  display: none;
}

footer {
  padding: 100px 0 50px;
  background: #fff;
}

.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -15px;
}

.footer_col {
  width: -webkit-calc(100% / 4 - 30px);
  width: -moz-calc(100% / 4 - 30px);
  width: calc(100% / 4 - 30px);
  margin: 0 15px 50px;
  max-width: 170px;
}

.footer_title {
  font-family: "Circe";
  font-weight: 350;
  font-size: 14px;
  letter-spacing: -0.02em;
  opacity: 0.9;
  margin-bottom: 35px;
}

.footer_menu a {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 15px;
}

.footer_menu a:hover {
  color: #293694;
}

.footer_menu span {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 15px;
}

.footer_soc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer_soc a {
  margin: 0 15px 0 0;
}

.footer_soc a:hover {
  color: #293694;
}

.footer_map {
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: calc(100% - 30px);
  font-family: "Circe";
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: #484848;
  margin: 0 15px 30px;
}

.footer ul li a {
  font-weight: 350;
  font-size: 13px;
  text-transform: lowercase;
  opacity: 0.9;
  display: block;
  margin-bottom: 15px;
}

.footer ul li a:hover {
  color: #293694;
}

.footer_last {
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
  max-width: 450px;
  padding-left: 5px;
  margin: -5px 15px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer_logo {
  width: 104px;
  margin-right: 54px;
}

.footer_logo img {
  max-width: 104px;
}

.footer_btn {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 10px 5px;
  border: 1px solid #AAAAAA;
  margin-right: 20px;
}

.footer_btn:hover {
  color: #293694;
}

.footer_btn2 {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid #D7EDDE;
  margin-left: 0;
}

.footer_btn2:hover {
  color: #293694;
}

.footer_subscr {
  width: 300px;
  font-family: "Circe";
  font-size: 13px;
  letter-spacing: -0.02em;
}
.subscr-title {
  font-weight: 700;  
  color: #484848;
  margin: -37px 0 24px;
}
.subscr-email {
  opacity: 0.7;
}
.subscr-email input {
  border: 1px solid #999;
  padding: 0 5px;
  margin-left: 5px;
}
.subscr-agree {
  display: flex;
  padding: 10px 0;
  opacity: 0.7;
}
.subscr-agree input {
  margin-right: 5px;
}
.subscr-btn {
  width: 92px;
  padding: 6px 10px 5px;
  border: 1px solid #AAAAAA;
  cursor: pointer;
}
.subscr-btn:hover {
  color: #293694;
}
.subscr-btn input {
  font-size: 8px;
  letter-spacing: 0.1em;  
}

.footer_inps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

.footer_inps a {
  width: 170px;
  padding: 10px 0;
  border-bottom: 1px solid #D7EDDE;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #000;
  opacity: 0.6;
  margin-right: 30px;
}

.footer_inps a:last-child {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.block-sliders {
  position: relative;
  padding: 150px 0 80px;
}

.slider .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible !important;
}

.slider .owl-stage-outer {
  overflow: visible !important;
}

.slider .slide {
  height: 100%;
}

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

.slider .owl-dots {
  margin-top: 30px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider .owl-dots .owl-dot {
  margin: 0 6px !important;
  width: 8px;
  height: 8px;
}

.slider .owl-dots .owl-dot span {
  background: #BFC3DF;
  opacity: 0.5;
  width: 6px;
  height: 6px;
  margin: 0 6px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.slider .owl-dots .owl-dot.active span {
  width: 8px;
  height: 8px;
  background: #BFC3DF;
  opacity: 1;
}

.slider-big {
  max-width: 716px;
  margin: 0 auto 20px;
}

.slider-sm {
  max-width: 408px;
  margin: 0 auto;
}

.block-faq {
  padding: 210px 0 0;
}

.faq_title {
  margin: 0 0 110px auto;
  max-width: 1030px;
}

.faq {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1030px;
  margin: 0 0 50px auto;
  border-bottom: 1px solid #BFC3DF;
}

.faq:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq_cat {
  font-family: "Circe";
  font-size: 21px;
  line-height: 31px;
  letter-spacing: -0.02em;
  width: 320px;
  margin-right: 30px;
}

.faq_items {
  width: -webkit-calc(100% - 350px);
  width: -moz-calc(100% - 350px);
  width: calc(100% - 350px);
  margin-left: auto;
  max-width: 650px;
}

.faq-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid #BFC3DF;
  cursor: pointer;
}

.faq-item:hover span {
  color: #293694;
}

.faq-item:nth-child(1) {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item span {
  font-family: "Circe";
  font-weight: 350;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.02em;
  color: #636363;
  width: -webkit-calc(100% - 53px);
  width: -moz-calc(100% - 53px);
  width: calc(100% - 53px);
  margin-right: 40px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.faq-item svg {
  margin-top: 8px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.faq-item .rotate {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-item_text {
  margin-top: 20px;
  font-family: "Circe";
  font-weight: 350;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #636363;
  width: 100%;
  display: none;
}

.block-map {
  background: rgba(53, 164, 91, 0.1);
  padding: 200px 0 0;
  position: relative;
}

.map_title {
  margin-bottom: 30px;
}

.map_text {
  font-family: "Circe";
  font-weight: 350;
  font-size: 13px;
  line-height: 169.5%;
  letter-spacing: -0.01em;
  color: #333333;
  max-width: 450px;
  margin-bottom: 200px;
}

.map_img {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  right: -70px;
}

.map_img img {
  max-width: none;
  width: 100%;
  margin-bottom: -5px;
}

.map_links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 320px;
  padding: 40px 0;
}

.map_line {
  position: absolute;
  top: 0;
  right: 0;
  height: 1px;
  background: #BABECA;
  width: 100vw;
}

.map_icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}

.map_inf {
  font-family: "Circe";
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #9EA1AB;
}

.block-sales {
  padding: 170px 0 100px;
}

.sales {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.sales_title {
  font-size: 36px;
  line-height: 134.4%;
  margin-bottom: 50px;
}

.sales_items {
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: calc(100% - 30px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 -15px;
  margin: 0;
}

.sales_items .owl-dots {
  margin-top: 30px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sales_items .owl-dots .owl-dot {
  margin: 0 6px !important;
  width: 8px;
  height: 8px;
}

.sales_items .owl-dots .owl-dot span {
  background: #BFC3DF;
  opacity: 0.5;
  width: 6px;
  height: 6px;
  margin: 0 6px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.sales_items .owl-dots .owl-dot.active span {
  width: 8px;
  height: 8px;
  background: #BFC3DF;
  opacity: 1;
}

.sale, .master {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
  margin: 0 15px 50px;
  max-width: 360px;
  opacity: 0.4;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: 0;
  width: auto;
  max-width: none;
}

.sale:hover {
  opacity: 1;
}

.sale:nth-child(1) {
  opacity: 1;
}

.sale_img, .master_img {
  margin-bottom: 30px;
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.sale_img img {
  width: 100%;
  max-width: none;
}

.sale_num {
  width: 80px;
  height: 85px;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  font-family: "Circe";
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #4AC0E8;
  background: url('../img/icons/sale.png');
  background-position: top left;
  background-size: 120px 115px;
  padding: 60px 0 0 30px;
}

.sale_title {
  font-family: "Phil";
  font-size: 24px;
  line-height: 135.9%;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  max-width: 300px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.sale_title:hover {
  color: #293694;
}

.sale_text {
  font-family: "Circe";
  font-weight: 350;
  font-size: 16px;
  line-height: 148%;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.76);
  max-width: 300px;
}

.sale_text-for-popUp {
  display: none;
}

.block-services {
  background: rgba(179, 232, 249, 0.4);
  padding: 90px 0 70px;
  border-bottom: 1px solid #BABECA;
}

.services-slider .owl-dots {
  margin-top: 30px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services-slider .owl-dots .owl-dot {
  margin: 0 6px !important;
  width: 8px;
  height: 8px;
}

.services-slider .owl-dots .owl-dot span {
  background: #BFC3DF;
  opacity: 0.5;
  width: 6px;
  height: 6px;
  margin: 0 6px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.services-slider .owl-dots .owl-dot.active span {
  width: 8px;
  height: 8px;
  background: #BFC3DF;
  opacity: 1;
}

.services-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.services-slide_left {
  width: -webkit-calc(100% - 330px - 30px);
  width: -moz-calc(100% - 330px - 30px);
  width: calc(100% - 330px - 30px);
  max-width: 750px;
  padding-bottom: 50px;
}

.services-slide_right {
  width: 330px;
  margin-left: 30px;
}

.services-slide_title {
  margin-bottom: 25px;
}

.services-slide_text {
  font-family: "Circe";
  font-weight: 350;
  font-size: 13px;
  line-height: 169.5%;
  letter-spacing: -0.01em;
  color: #4F4F4F;
}

.block-services-nav {
  padding: 40px 0;
  background: rgba(179, 232, 249, 0.4);
}

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

.services-nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.6;
  cursor: pointer;
}

.services-nav-item:hover {
  opacity: 1;
}

.services-nav-item:hover .services-nav-item_icon img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}

.services-nav-item_icon {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services-nav-item_icon img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  height: 80px;
}

.services-nav-item_title {
  text-align: center;
  font-family: "Circe";
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #3E4454;
}

.block-offer {
  height: 100vh;
  max-height: 870px;
  min-height: 700px;
}

.block-offer .wrapper {
  height: 100%;
}

.block-offer-new {
  position: relative;
  margin-bottom: 100px;
}

.block-offer-new .offer_soc {
  position: absolute;
  z-index: 98;
  width: 20px;
  background: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  right: -webkit-calc((100vw - 1170px) / 2);
  right: -moz-calc((100vw - 1170px) / 2);
  right: calc((100vw - 1170px) / 2);
}

.block-offer-new .offer_soc a {
  opacity: 1;
}

.block-offer-new .offer_soc img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.block-offer-new .offer_btn {
  color: #fff;
  margin: 30px 0 0;
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid #D7EDDE;
}

.block-offer-new .offer_btn:hover {
  color: #fff;
  border-bottom: 1px solid transparent;
}

.block-offer-new .offer_btn::before {
  display: none;
}

.offer {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1040px;
  height: 100%;
  margin: 0 0 0 auto;
}

.offer_left {
  max-width: 520px;
}

.offer_title {
  font-family: "Phil";
  font-size: 60px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.offer_text {
  font-family: "Circe";
  font-weight: 300;
  font-size: 13px;
  line-height: 200%;
  letter-spacing: -0.015em;
  margin: 0 0 80px 40px;
  max-width: 360px;
}

.offer_btn {
  margin: 0 0 0 40px;
  font-size: 9px;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  position: relative;
}

.offer_btn:hover {
  color: #293694;
}

.offer_btn::before {
  content: '';
  position: absolute;
  display: block;
  top: -57px;
  left: -55px;
  width: 100px;
  height: 100px;
  background: url('../img/icons/btn.png');
  background-size: 100% 100%;
}

.offer_right {
  width: 860px;
  position: absolute;
  bottom: 15vh;
  right: 30px;
}

.offer_right img {
  width: 100%;
}

.offer_soc {
  width: 20px;
  margin-left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offer_soc a {
  opacity: 0.3;
  margin: 33px 0;
}

.offer_soc a:hover {
  opacity: 1;
}

.offer_soc a img {
  -webkit-transform: scale(1.2);
     -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
       -o-transform: scale(1.2);
          transform: scale(1.2);
}

.block-about-inf3 .about-inf2_text p {
  margin-bottom: 15px;
}

.agr030 {
  position: absolute;
  right: 9000px;
}

.block-about-video {
  position: relative;
}

.block-about-video .play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  width: 152px;
  height: 152px;
}

.block-about-inf {
  padding: 130px 0 170px;
}

.about-inf {
  max-width: 1040px;
  margin-left: auto;
}

.about-inf_title {
  font-size: 60px;
}

.about-inf_text {
  font-family: "Circe";
  font-weight: 350;
  font-size: 16px;
  line-height: 180%;
  max-width: 590px;
  margin-left: 100px;
  margin-top: 35px;
  letter-spacing: -0.015em;
}

.about-inf_text p {
  margin-top: 30px;
}

.about-inf_text p:nth-child(1) {
  margin-top: 0;
}

.block-about-trgs {
  background: rgba(41, 54, 148, 0.5);
  padding: 40px 0 165px;
}

.about-trgs {
  position: relative;
  max-width: 1040px;
  margin: 0 0 0 auto;
}

.about-trgs_img {
  position: absolute;
  left: -34px;
  top: -178px;
  max-width: 815px;
}

.about-trgs_title {
  position: relative;
  z-index: 1;
  font-size: 36px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  max-width: 190px;
  margin-bottom: 110px;
}

.about-trgs_content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about-trg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 130px;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  font-family: "Circe";
  font-weight: 300;
}

.about-trg_num {
  font-size: 130px;
  line-height: 100%;
}

.about-trg_text {
  font-size: 20px;
  line-height: 120%;
}

.block-about-inf2 {
  padding: 130px 0 0;
}

.akciya_page .block-about-inf2 {
  padding: 0 0 70px;
}

.about-inf2 {
  max-width: 1040px;
  margin: 0 0 0 auto;
}

.about-inf2_title {
  font-size: 36px;
  margin-bottom: 60px;
  max-width: 400px;
}

.about-inf2_text {
  max-width: 690px;
  font-family: "Circe";
  font-weight: 350;
  font-size: 13px;
  line-height: 200%;
  letter-spacing: -0.015em;
}

.about-inf2_video {
  margin-top: 55px;
} 

.block-docs,
.block-partners {
  padding: 0 0 130px;
}

.docs_title,
.partners_title {
  font-size: 36px;
  max-width: 1040px;
  margin: 0 0 60px auto;
}

.docs,
.partners {
  max-width: 950px;
  margin: 0 0 0 auto;
}

.docs .owl-stage-outer,
.partners .owl-stage-outer {
  overflow: visible !important;
}

.docs .owl-outer,
.partners .owl-outer {
  overflow: visible !important;
}

.docs .owl-item,
.partners .owl-item {
  opacity: 0.1;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.docs .owl-dots,
.partners .owl-dots {
  margin-top: 30px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.docs .owl-dots .owl-dot,
.partners .owl-dots .owl-dot {
  margin: 0 6px !important;
  width: 8px;
  height: 8px;
}

.docs .owl-dots .owl-dot span,
.partners .owl-dots .owl-dot span {
  background: #BFC3DF;
  opacity: 0.5;
  width: 8px;
  height: 8px;
  margin: 0 6px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.docs .owl-dots .owl-dot.active span,
.partners .owl-dots .owl-dot.active span {
  width: 8px;
  height: 8px;
  background: #BFC3DF;
  opacity: 1;
}

.partners .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.block-services-about {
  padding: 210px 0 35px;
}

.services-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 1090px;
  margin: 0 auto;
}

.services-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 25px;
  width: -webkit-calc(100% / 2 - 50px);
  width: -moz-calc(100% / 2 - 50px);
  width: calc(100% / 2 - 50px);
}

.services-item:nth-child(4n-3) {
  margin-top: 60px;
}

.services-item:nth-child(4n-2) .services-item_img {
  max-width: 350px;
}

.services-item:nth-child(4n-1) {
  margin-top: 160px;
  margin-bottom: 80px;
}

.services-item:nth-child(4n-1) .services-item_img {
  max-width: 350px;
}

.services-item:nth-child(4n) {
  margin-top: 50px;
}

.services-item_img {
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 40px;
  width: 100%;
}

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

.services-item_content {
  max-width: 380px;
}

.services-item_title {
  font-family: "Phil";
  font-size: 20px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
}

.services-item_text {
  font-family: "Circe";
  font-weight: 350;
  font-size: 13px;
  line-height: 200%;
  letter-spacing: -0.015em;
  margin-top: 15px;
}

.services-item_text-for-popUp {
  display: none;
}

.services-item_btn, .studiya-item_btn {
  display: inline-block;
  margin: 55px 0 0 40px;
  font-size: 9px;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  position: relative;
}

.services-item_btn:hover, .studiya-item_btn:hover {
  color: #293694;
}

.services-item_btn::before, .studiya-item_btn::before{
  content: '';
  position: absolute;
  display: block;
  top: -57px;
  left: -55px;
  width: 100px;
  height: 100px;
  background: url('../img/icons/btn.png');
  background-size: 100% 100%;
}

.block-services-offer {
  padding: 100px 0;
}

.services-offer {
  max-width: none;
}

.services-offer .offer_title {
  margin-bottom: 5px;
}

.services-offer .offer_price {
  font-family: "Circe";
  font-size: 24px;
  line-height: 200%;
  letter-spacing: -0.015em;
  margin-bottom: 60px;
}

.services-offer .offer_left {
  max-width: 500px;
}

.services-offer .offer_left .offer_right {
  display: none;
}

.services-offer .offer_right {
  position: static;
}

.block-presents {
  padding: 100px 0 0;
}

.presents_title {
  max-width: 500px;
  margin-bottom: 60px;
}

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

.present {
  position: relative;
  width: -webkit-calc(100% / 2 - 45px);
  width: -moz-calc(100% / 2 - 45px);
  width: calc(100% / 2 - 45px);
  padding: 75px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.present:nth-child(1) {
  margin-top: 80px;
}

.present:nth-child(1) .bg {
  background: url('../img/photo/29.png');
  background-size: 100% 100%;
  right: 0;
}

.present:nth-child(1) .present_img {
  bottom: 10px;
}

.present:nth-child(2) {
  margin-left: 100px;
  width: -webkit-calc(100% / 2 - 145px);
  width: -moz-calc(100% / 2 - 145px);
  width: calc(100% / 2 - 145px);
}

.present:nth-child(2) .bg {
  background: url('../img/photo/30.png');
  background-size: 100% 100%;
  left: -100px;
}

.present:nth-child(2) .present_img {
  bottom: 80px;
}

.present .bg {
  position: absolute;
  top: 0;
  width: 640px;
  height: 425px;
  opacity: 0.5;
}

.present_title {
  font-family: "Phil";
  font-size: 24px;
  line-height: 27px;
  margin-bottom: 30px;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  position: relative;
  z-index: 1;
}

.present_text {
  position: relative;
  z-index: 1;
  font-family: "Circe";
  font-weight: 350;
  font-size: 13px;
  line-height: 155%;
  letter-spacing: -0.015em;
  max-width: 280px;
  margin-bottom: 340px;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}

.present_img {
  position: absolute;
  z-index: 1;
  left: 0;
}

.present_btn {
  margin: 0 auto;
  font-size: 9px;
  letter-spacing: 0.225em;
  text-transform: uppercase !important;
  position: relative;
  z-index: 2;
}

.present_btn:hover {
  color: #293694;
}

.present_btn::before {
  content: '';
  position: absolute;
  display: block;
  top: -57px;
  left: -55px;
  width: 100px;
  height: 100px;
  background: url('../img/icons/btn.png');
  background-size: 100% 100%;
}

.block-services-about-2 {
  background: url('../img/photo/39.png');
  background-position: center center;
  background-size: auto 100%;
  margin-bottom: 70px;
}

.block-services-about-2 .about-inf,
.block-services-about-2 .about-inf_title {
  color: #fff;
}

.block-services-about-2 .about-inf_trgs {
  margin: 70px 0 130px 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-inf-trg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}

.about-inf-trg_num {
  font-family: "Circe";
  font-weight: 300;
  font-size: 96px;
  letter-spacing: -0.02em;
  margin-right: 30px;
}

.about-inf-trg_text {
  font-family: "Circe";
  font-weight: 350;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  max-width: 170px;
}

.popUp,
.popUp-buy,
.popUp-serts,
.popUp-reg,
.popUp-call,
.popUp-club,
.popUp-order,
.popUp-freeze,
.popUp-buy-new {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  overflow-y: scroll;
  display: none;
}

.popUp::-webkit-scrollbar,
.popUp-buy::-webkit-scrollbar,
.popUp-serts::-webkit-scrollbar,
.popUp-reg::-webkit-scrollbar,
.popUp-call::-webkit-scrollbar,
.popUp-club::-webkit-scrollbar,
.popUp-order::-webkit-scrollbar,
.popUp-freeze::-webkit-scrollbar,
.popUp-buy-new::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.popUp::-webkit-scrollbar-thumb,
.popUp-buy::-webkit-scrollbar-thumb,
.popUp-serts::-webkit-scrollbar-thumb,
.popUp-reg::-webkit-scrollbar-thumb,
.popUp-call::-webkit-scrollbar-thumb,
.popUp-club::-webkit-scrollbar-thumb,
.popUp-order::-webkit-scrollbar-thumb,
.popUp-freeze::-webkit-scrollbar-thumb,
.popUp-buy-new::-webkit-scrollbar-thumb {
  width: 0px;
  height: 0px;
}

.popUp_layer,
.popUp-buy_layer,
.popUp-serts_layer,
.popUp-reg_layer,
.popUp-call_layer,
.popUp-club_layer,
.popUp-order_layer,
.popUp-freeze_layer,
.popUp-buy-new_layer {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popUp_content-wrap,
.popUp-buy_content-wrap,
.popUp-serts_content-wrap,
.popUp-reg_content-wrap,
.popUp-call_content-wrap,
.popUp-club_content-wrap,
.popUp-order_content-wrap,
.popUp-freeze_content-wrap,
.popUp-buy-new_content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 50px 0;
  margin: 0 auto;
  z-index: 99;
  max-width: 1028px;
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: calc(100% - 30px);
}

.popUp_content,
.popUp-buy_content,
.popUp-serts_content,
.popUp-reg_content,
.popUp-call_content,
.popUp-club_content,
.popUp-order_content,
.popUp-freeze_content,
.popUp-buy-new_content {
  padding: 90px 60px;
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.popUp_content img,
.popUp-buy_content img,
.popUp-serts_content img,
.popUp-reg_content img,
.popUp-call_content img,
.popUp-club_content img,
.popUp-order_content img,
.popUp-freeze_content img,
.popUp-buy-new_content img {
  width: 272px;
  height: 272px;
  border-radius: 50%;
  float: left;
  margin: 0 50px 30px 0;
}

.popUp_content h3,
.popUp-buy_content h3,
.popUp-serts_content h3,
.popUp-reg_content h3,
.popUp-call_content h3,
.popUp-club_content h3,
.popUp-order_content h3,
.popUp-freeze_content h3,
.popUp-buy-new_content h3 {
  font-family: "Circe";
  font-size: 8px;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.4;
  margin-bottom: 20px;
}

.popUp_content h2,
.popUp-buy_content h2,
.popUp-serts_content h2,
.popUp-reg_content h2,
.popUp-call_content h2,
.popUp-club_content h2,
.popUp-order_content h2,
.popUp-freeze_content h2,
.popUp-buy-new_content h2 {
  font-family: "Phil";
  font-size: 36px;
  line-height: 125%;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.popUp_content .inf,
.popUp-buy_content .inf,
.popUp-serts_content .inf,
.popUp-reg_content .inf,
.popUp-call_content .inf,
.popUp-club_content .inf,
.popUp-order_content .inf,
.popUp-freeze_content .inf,
.popUp-buy-new_content .inf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.popUp_content .inf p,
.popUp-buy_content .inf p,
.popUp-serts_content .inf p,
.popUp-reg_content .inf p,
.popUp-call_content .inf p,
.popUp-club_content .inf p,
.popUp-order_content .inf p,
.popUp-freeze_content .inf p,
.popUp-buy-new_content .inf p {
  margin-right: 30px;
  width: auto;
}

.popUp_content .inf p span,
.popUp-buy_content .inf p span,
.popUp-serts_content .inf p span,
.popUp-reg_content .inf p span,
.popUp-call_content .inf p span,
.popUp-club_content .inf p span,
.popUp-order_content .inf p span,
.popUp-freeze_content .inf p span,
.popUp-buy-new_content .inf p span {
  display: block;
}

.popUp_content p,
.popUp-buy_content p,
.popUp-serts_content p,
.popUp-reg_content p,
.popUp-call_content p,
.popUp-club_content p,
.popUp-order_content p,
.popUp-freeze_content p,
.popUp-buy-new_content p {
  font-family: "Circe";
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.015em;
}

.popUp_content p span,
.popUp-buy_content p span,
.popUp-serts_content p span,
.popUp-reg_content p span,
.popUp-call_content p span,
.popUp-club_content p span,
.popUp-order_content p span,
.popUp-freeze_content p span,
.popUp-buy-new_content p span {
  font-weight: 700;
}

.popUp_content button,
.popUp-buy_content button,
.popUp-serts_content button,
.popUp-reg_content button,
.popUp-call_content button,
.popUp-club_content button,
.popUp-order_content button,
.popUp-freeze_content button,
.popUp-buy-new_content button,
.popUp_content .popUp-pay-form_btn-wrap,
.popUp-buy_content .popUp-pay-form_btn-wrap,
.popUp-serts_content .popUp-pay-form_btn-wrap,
.popUp-reg_content .popUp-pay-form_btn-wrap,
.popUp-call_content .popUp-pay-form_btn-wrap,
.popUp-club_content .popUp-pay-form_btn-wrap,
.popUp-order_content .popUp-pay-form_btn-wrap,
.popUp-freeze_content .popUp-pay-form_btn-wrap,
.popUp-buy-new_content .popUp-pay-form_btn-wrap,
.akciya_page .btn-order {
  margin: 40px 0 0 40px;
  position: relative;
}

.popUp_content button:hover input,
.popUp-buy_content button:hover input,
.popUp-serts_content button:hover input,
.popUp-reg_content button:hover input,
.popUp-call_content button:hover input,
.popUp-club_content button:hover input,
.popUp-order_content button:hover input,
.popUp-freeze_content button:hover input,
.popUp-buy-new_content button:hover input,
.popUp_content .popUp-pay-form_btn-wrap:hover input,
.popUp-buy_content .popUp-pay-form_btn-wrap:hover input,
.popUp-serts_content .popUp-pay-form_btn-wrap:hover input,
.popUp-reg_content .popUp-pay-form_btn-wrap:hover input,
.popUp-call_content .popUp-pay-form_btn-wrap:hover input,
.popUp-club_content .popUp-pay-form_btn-wrap:hover input,
.popUp-order_content .popUp-pay-form_btn-wrap:hover input,
.popUp-freeze_content .popUp-pay-form_btn-wrap:hover input,
.popUp-buy-new_content .popUp-pay-form_btn-wrap:hover input {
  color: #293694;
}

.popUp_content button::before,
.popUp-buy_content button::before,
.popUp-serts_content button::before,
.popUp-reg_content button::before,
.popUp-call_content button::before,
.popUp-club_content button::before,
.popUp-order_content button::before,
.popUp-freeze_content button::before,
.popUp-buy-new_content button::before,
.popUp_content .popUp-pay-form_btn-wrap::before,
.popUp-buy_content .popUp-pay-form_btn-wrap::before,
.popUp-serts_content .popUp-pay-form_btn-wrap::before,
.popUp-reg_content .popUp-pay-form_btn-wrap::before,
.popUp-call_content .popUp-pay-form_btn-wrap::before,
.popUp-club_content .popUp-pay-form_btn-wrap::before,
.popUp-order_content .popUp-pay-form_btn-wrap::before,
.popUp-freeze_content .popUp-pay-form_btn-wrap::before,
.popUp-buy-new_content .popUp-pay-form_btn-wrap::before, 
.akciya_page .btn-order::before {
  content: '';
  position: absolute;
  display: block;
  top: -57px;
  left: -55px;
  width: 100px;
  height: 100px;
  background: url('../img/icons/btn.png');
  background-size: 100% 100%;
}
.akciya_page .btn-order::before {
  top: unset;
  left: unset;
  margin: -50px 0px 0 -50px;
}

.popUp_content .popUp-pay-form_btn-wrap input,
.popUp-buy_content .popUp-pay-form_btn-wrap input,
.popUp-serts_content .popUp-pay-form_btn-wrap input,
.popUp-reg_content .popUp-pay-form_btn-wrap input,
.popUp-call_content .popUp-pay-form_btn-wrap input,
.popUp-club_content .popUp-pay-form_btn-wrap input,
.popUp-order_content .popUp-pay-form_btn-wrap input,
.popUp-freeze_content .popUp-pay-form_btn-wrap input,
.popUp-buy-new_content .popUp-pay-form_btn-wrap input {
  display: block;
  font-family: "Circe";
  font-size: 8px;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.popUp_cross,
.popUp-buy_cross,
.popUp-serts_cross,
.popUp-reg_cross,
.popUp-call_cross,
.popUp-club_cross,
.popUp-order_cross,
.popUp-freeze_cross,
.popUp-buy-new_cross {
  width: 27px;
  height: 27px;
  margin-left: auto;
  margin-bottom: 30px;
  cursor: pointer;
}

.popUp_cross svg path,
.popUp-buy_cross svg path,
.popUp-serts_cross svg path,
.popUp-reg_cross svg path,
.popUp-call_cross svg path,
.popUp-club_cross svg path,
.popUp-order_cross svg path,
.popUp-freeze_cross svg path,
.popUp-buy-new_cross svg path {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.popUp_cross:hover svg path,
.popUp-buy_cross:hover svg path,
.popUp-serts_cross:hover svg path,
.popUp-reg_cross:hover svg path,
.popUp-call_cross:hover svg path,
.popUp-club_cross:hover svg path,
.popUp-order_cross:hover svg path,
.popUp-freeze_cross:hover svg path,
.popUp-buy-new_cross:hover svg path {
  fill: #293694;
}

.popUp-pay-wrap {
  max-width: 1275px;
}

.popUp-pay .title {
  margin-bottom: 100px;
}

.popUp-pay_sum {
  font-weight: 350;
  font-size: 18px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
}

.popUp-pay_price {
  font-weight: 350;
  line-height: 122.4%;
  letter-spacing: -0.02em;
  font-size: 36px;
}

.popUp-pay_inf {
  font-weight: 350;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.02em;
  opacity: 0.5;
}

.popUp-pay-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -15px 25px;
  border-bottom: 0.5px solid #E0E0E0;
}

.popUp-pay-item {
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
  max-width: 530px;
  margin: 0 15px 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popUp-pay-item_img {
  margin: 0 40px 0 0;
  width: 178px;
  height: 178px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  cursor: pointer;
}

.popUp-pay-item_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border: 5px solid transparent;
}

.popUp-pay-item_title {
  font-family: "Phil";
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.popUp-pay-item_text {
  font-weight: 350;
  font-size: 13px;
  line-height: 200%;
  letter-spacing: -0.015em;
  max-width: 215px;
  margin-bottom: 15px;
}

.popUp-pay-item_inps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popUp-pay-item_inp {
  width: 49px;
  height: 49px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 20px;
}

.popUp-pay-item_btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popUp-pay-item_btns button {
  width: 17px;
  height: 17px;
  margin: 5px 0;
}

.popUp-pay-item_btns button::before {
  display: none;
}

.popUp-pay-item_price {
  margin-left: auto;
  font-weight: 350;
  font-size: 18px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
}

.popUp-pay-item_select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  height: 49px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px 15px;
  margin-right: auto;
  position: relative;
}

.popUp-pay-item_select input {
  width: -webkit-calc(100% - 11px);
  width: -moz-calc(100% - 11px);
  width: calc(100% - 11px);
}

.popUp-pay-item_select svg {
  width: 11px;
}

.popUp-pay-item_drop {
  display: none;
  position: absolute;
  z-index: 1;
  top: 47px;
  left: 0;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 5px 0;
}

.popUp-pay-item_drop span {
  display: block;
  padding: 10px 15px;
}

.popUp-pay-item--active .popUp-pay-item_img img {
  border: 5px solid rgba(53, 164, 91, 0.3);
  opacity: 1;
}

.popUp-pay-form {
  margin-top: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 880px;
}

.popUp-pay-form_inp {
  margin: 0 80px 40px 0;
  font-family: "Circe";
  font-weight: 350;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #484848;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 9px;
  width: 360px;
}

.popUp-pay-form_btn::before {
  background: url('../img/icons/btn-green.png') !important;
}

.popUp-reg .contacts-form,
.popUp-call .contacts-form,
.popUp-club .contacts-form,
.popUp-freeze .contacts-form,
.popUp-order .contacts-form {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 700px;
  margin-bottom: 0;
}

.popUp-reg .contacts-form_inp,
.popUp-call .contacts-form_inp,
.popUp-club .contacts-form_inp,
.popUp-freeze .contacts-form_inp,
.popUp-order .contacts-form_inp {
  width: -webkit-calc(100% / 2 - 35px);
  width: -moz-calc(100% / 2 - 35px);
  width: calc(100% / 2 - 35px);
  margin-right: 0;
}

.popUp-reg .contacts-form_inp-left,
.popUp-call .contacts-form_inp-left,
.popUp-club .contacts-form_inp-left,
.popUp-freeze .contacts-form_inp-left,
.popUp-order .contacts-form_inp-left {
  margin-right: 70px;
}

.popUp-reg .contacts-form_inp-width,
.popUp-call .contacts-form_inp-width,
.popUp-club .contacts-form_inp-width,
.popUp-freeze .contacts-form_inp-width,
.popUp-order .contacts-form_inp-width {
  width: 100%;
}

.popUp-freeze .contacts-form_inp:nth-child(4) {
  width: -webkit-calc(100% / 2 - 35px);
  width: -moz-calc(100% / 2 - 35px);
  width: calc(100% / 2 - 35px);
}

.popUp-pay-form-sum {
  display: none;
}

.wpcf7-not-valid-tip,
.wpcf7-form-control.wpcf7-text.wine-name,
div.wpcf7 .ajax-loader {
  display: none !important;
}

.wpcf7-response-output {
  border: none !important;
  color: red;
}

.btn-only-reg {
  text-transform: lowercase;
}

.popUp_check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: "Circe";
  font-weight: 400 !important;
  font-size: 13px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.popUp_check span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 5px 0 0;
  font-weight: 400 !important;
  width: 12.8px;
  height: 12.8px;
}

.popUp_check input {
  position: static;
  right: 0;
}

.popUp-reg .contacts-form_inp {
  width: -webkit-calc(100% / 2 - 35px);
  width: -moz-calc(100% / 2 - 35px);
  width: calc(100% / 2 - 35px);
}

.popUp-reg .contacts-form_inp:nth-child(3) {
  margin-right: 70px;
}

.popUp-reg .contacts-form_inp:nth-child(4) {
  width: -webkit-calc(100% / 2 - 35px);
  width: -moz-calc(100% / 2 - 35px);
  width: calc(100% / 2 - 35px);
}

.popUp-reg--title {
  display: none;
}

.popUp-reg--select {
  position: relative;
  width: -webkit-calc(100% / 2 - 35px);
  width: -moz-calc(100% / 2 - 35px);
  width: calc(100% / 2 - 35px);
  display: inline-block;
}

.popUp-reg--select input {
  width: 100% !important;
}

.popUp-reg--drop {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  padding: 5px 15px;
  top: 30px;
  left: 0;
  display: none;
}

.popUp-reg--drop div {
  font-size: 14px;
  margin: 10px 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}

.popUp-reg--drop div:hover {
  color: #293694;
}

.btn-order-link {
  position: relative;
  margin: 40px 0 0 40px;
  font-size: 14px;
  display: block;
}

.btn-order-link::before {
  content: '';
  position: absolute;
  display: block;
  top: -57px;
  left: -55px;
  width: 100px;
  height: 100px;
  background: url(../img/icons/btn.png);
  background-size: 100% 100%;
}

.block-sales-page {
  margin: 180px 0 80px;
}

.block-sales-page .title {
  margin: 0 0 50px 100px;
}

.sales-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sales-page-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 120px;
}

.sales-page-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.sales-page-item:nth-child(even) .sales-page-item_img {
  margin: 0 0 0 90px;
}

.sales-page-item_img {
  margin-right: 90px;
  width: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.sales-page-item_img img {
  width: 100%;
}

.sales-page-item_content {
  width: -webkit-calc(50% - 90px);
  width: -moz-calc(50% - 90px);
  width: calc(50% - 90px);
}

.sales-page-item_title {
  font-family: "Phil";
  font-size: 36px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.sales-page-item_text {
  font-family: "Circe";
  font-weight: 350;
  font-size: 13px;
  line-height: 200%;
  letter-spacing: -0.015em;
  max-width: 440px;
}

.sales-page-item_text p {
  margin-bottom: 30px;
}

.sales-page-item_text p span {
  font-size: 18px;
  line-height: 140%;
  font-weight: 700;
}

.sales-page-item_text-for-popUp {
  display: none;
}

.sales-page-item_btn {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid #D7EDDE;
  margin-top: 30px;
}

.sales-page-item_btn:hover {
  color: #293694;
}

.block-specialists {
  margin: 180px 0 80px;
  overflow: hidden;
}

.block-specialists .title {
  margin: 0 0 50px 100px;
}

.specialist {
display: -webkit-box;
  display: -ms-flexbox;
    display: flex;
margin: 0;
width: 100%;
}

.specialist_img {
  position: relative;
  border-radius: 50%;
  margin-bottom: 20px;
  width: 100%;
  max-width: 540px;
}

.specialist_img img {
  /*-webkit-filter: grayscale(1);
          filter: grayscale(1);*/
  border-radius: 50%;
  width: 100%;
}

.specialist_img::after {
  content: '';
  display: block;
  position: absolute;
  width: 204px;
  height: 238px;
  bottom: -40px;
  right: -90px;
}

.specialist_desc {
  padding-bottom: 15px;
  padding-left: 30px;
}

.specialist_desc p {
  padding-bottom: 10px;
  line-height: 1.2;
}

.specialist_desc p span {
  font-weight: 600;
}

.specialist_job {
  font-family: "Circe";
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.015em;
  padding-bottom: 30px;
}

.specials__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 8px;
  padding: 29px 0 41px 0;
}

.specials__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.specialists_items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0;
    padding-bottom: 50px;
}

.specialists_items.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 15px;
}

label {
    cursor: pointer;
}

input {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

.specials__label {
    padding: 10px 14px;
    color: #FFFFFF;
    position: relative;
    z-index: 20;
}

.block-specialists .specials__label {
    border: none !important;
    background: #484848 !important;
}

.block-specialists .specials__label.but_active {
    border: 1px solid #cccfcf !important;
    background: #010d0d !important;
    border-radius: 12px;
}

.specials__input {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.specials__fon {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
    z-index: 19;
    border-radius: 12px;
}

.block-specialists .specialists_items[for=sale__input__all] {
    display: block;
}

.block-specialists .specialists_items.dispnone {
    display: none !important;
}

.master {
  opacity: 1;
}

.master .sale_title {
  margin-bottom: 10px;
}

.block-404 {
  margin: 100px 0 50px;
}

.b404 {
  margin-left: 100px;
}

.b404 .offer_left {
  width: 450px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.b404 .offer_btn::before {
  background: url('../img/icons/btn-green.png');
}

.block-studio {
  background-position: center center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  padding: 200px 0;
}

.block-studio .about-inf_title {
  color: #fff;
}

.block-studio .about-inf_text {
  margin-left: 0;
  color: #fff;
}

.block-studio .about-inf_btn {
  margin: 105px 0 -55px;
}
.block-studio .about-inf_btn button {
  width: 180px;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.block-studio .about-inf_btn img {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 180px;
  max-width: none;
}

.block-studio .about-inf_btn span {
  position: relative;
  z-index: 1;
}

.block-studio-slider .owl-dots {
  margin-top: -50px !important;
  margin-bottom: 50px !important;
  position: relative;
  z-index: 9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-studio-slider .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  background: #fff !important;
  opacity: 0.4;
}

.block-studio-slider .owl-dots .owl-dot.active span {
  width: 10px;
  height: 10px;
  opacity: 1;
}

.block-prices {
  background: rgba(224, 224, 224, 0.2);
  margin-top: -50px;
  padding: 120px 0 80px;
  overflow: hidden;
}

.block-prices .title {
  margin: 0 0 40px 130px;
}

.prices_inf, .prices_inf2 {
  font-family: "Circe";
  font-weight: 350;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  margin: 40px 0 0 130px;
}

.prices_iframe {
  margin: 40px 0 0 130px;
}

.prices-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
  margin: 0 0 0 130px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.prices-item_title {
  font-family: "Circe";
  font-weight: 350;
  font-size: 22px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
}

.prices-item_title span {
  opacity: 0.7;
}

.prices-item_arrow {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.prices-item_content {
  width: 100%;
  margin: 40px 0;
  display: none;
}

.prices-item_content button {
  margin: 40px 0 0 40px;
  position: relative;
}

.prices-item_content button:hover input {
  color: #293694;
}

.prices-item_content button::before {
  content: '';
  position: absolute;
  display: block;
  top: -57px;
  left: -55px;
  width: 100px;
  height: 100px;
  background: url('../img/icons/btn.png');
  background-size: 100% 100%;
}

.prices-item_slider {
  max-width: 830px;
  width: 100%;
  margin-bottom: 60px;
  overflow: visible !important;
}

.prices-item_slider .owl-stage,
.prices-item_slider .owl-stage-outer {
  overflow: visible !important;
}

.prices-item_tables {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: -webkit-calc(100% + 30px);
  width: -moz-calc(100% + 30px);
  width: calc(100% + 30px);
  margin: 0 -15px;
}

.prices-item_table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: -webkit-calc(50% - 30px);
  width: -moz-calc(50% - 30px);
  width: calc(50% - 30px);
  margin: 0 15px;
}

.prices-item_list {
  max-width: -webkit-calc(100% - 160px);
  max-width: -moz-calc(100% - 160px);
  max-width: calc(100% - 160px);
  margin-right: 30px;
  margin-bottom: 30px;
}

.prices-item_list li {
  font-family: "Circe";
  font-weight: 350;
  font-size: 15px;
  line-height: 190%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.76);
}

.prices-item_desc {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
}

.prices-item_time {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 350;
  font-size: 16px;
  letter-spacing: -0.015em;
}

.prices-item_num {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 12px 12px;
}

.prices-item_plus {
  margin-top: 30px;
  font-family: "Circe";
  font-weight: 350;
  font-size: 15px;
  line-height: 190%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.76);
  width: 100%;
  margin-top: auto;
  margin-bottom: 40px;
}

.prices-item_plus span {
  font-weight: 600;
}

.prices-item button {
  height: 20px;
  margin-top: auto;
}

.prices-item-active .prices-item_arrow {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.prices-item_text {
  font-size: 14px;
  line-height: 135%;
  font-weight: 350;
  margin-bottom: 30px;
}

.block-about-inf3 .about-inf2_text {
  margin-left: 80px;
}

.akciya_page .block-about-inf3 .about-inf2_text {
  margin-left: 0;
}

.block-club {
  margin: 100px 0 0;
}

.block-club .title {
  margin: 0 0 100px 100px;
}

.club {
  margin: 0 0 0px 85px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.club-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 15px 100px;
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
}

.club-card_img {
  margin-right: 30px;
  width: 127px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.club-card_img img {
  margin-bottom: -3px;
}

.club-card_title {
  font-family: "Phil";
  font-size: 24px;
  line-height: 135.9%;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}

.club-card_text {
  font-weight: 350;
  font-size: 15px;
  line-height: 190%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.76);
}

.club-card_btn {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid #D7EDDE;
  margin-top: 30px;
}

.club-card_btn:hover {
  color: #293694;
}

.block-bar-offer {
  padding-top: 150px;
}

.block-bar-offer .services-offer {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}

.block-bar-offer .services-offer .offer_left {
  margin-left: 100px;
}

.block-bar-offer .services-offer .offer_left .offer_title {
  margin-bottom: 50px;
}

.block-bar-offer .services-offer .offer_left .offer_text {
  margin-bottom: 0;
}

.block-bar-offer .services-offer .offer_left .offer_text p {
  margin-bottom: 20px;
}

.block-bar-offer .services-offer .offer_right {
  max-width: 650px;
}

.offer_left .btn_cont {
  display: none;
}

.offer_right .btn_cont {
  margin: 125px 0 -157px;
}

.block-bar {
  padding: 100px 0;
  background: rgba(224, 224, 224, 0.2);
}

.block-bar .title {
  margin-left: 100px;
  margin-bottom: 60px;
}

.bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 -30px;
  max-width: 940px;
  padding-left: 100px;
}

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

.bar-menu a {
  width: 48%;
}

.bar-item {
  margin: 0 30px 45px;
  max-width: 360px;
  width: -webkit-calc(100% / 2 - 60px);
  width: -moz-calc(100% / 2 - 60px);
  width: calc(100% / 2 - 60px);
  position: relative;
}

.bar-item:nth-child(2) {
  -webkit-transform: translate(170px, -70px);
     -moz-transform: translate(170px, -70px);
      -ms-transform: translate(170px, -70px);
       -o-transform: translate(170px, -70px);
          transform: translate(170px, -70px);
}

.bar-item_img {
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.bar-item_img img {
  width: 100%;
  margin-bottom: -3px;
}

.bar-item_inf {
  position: absolute;
  top: -63px;
  right: -75px;
  width: 185px;
  height: 240px;
  background: url('../img/photo/62.png');
  background-size: 100% 100%;
  padding: 85px 0 0 70px;
}

.bar-item_inf span {
  display: block;
  font-family: "Phil";
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.02em;
}

.bar-item_inf span:nth-child(2) {
  margin-left: 10px;
}

.bar-item_btn {
  position: absolute;
  z-index: 1;
  right: -30px;
  bottom: 0;
  font-family: "Circe";
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: url('../img/photo/63.png');
  background-size: 100% 100%;
  width: 142px;
  height: 134px;
  padding-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-mapframe {
  width: 100%;
  height: 500px;
}

.block-mapframe iframe {
  width: 100%;
  height: 100%;
}

.block-contacts {
  margin: 180px 0 80px;
  overflow: hidden;
}

.contacts .title {
  margin: 0 0 50px 100px;
}

.contacts_infs {
  margin: 0 0 100px 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 820px;
}

.contacts_inf {
  width: 190px;
}

.contacts_subtitle {
  font-family: "Circe";
  font-weight: 350;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.015em;
  color: #000000;
  opacity: 0.6;
  margin-bottom: 30px;
}

.contacts ul {
  font-weight: 350;
  font-size: 16px;
  line-height: 37px;
  letter-spacing: -0.02em;
}

.contacts ul li span {
  color: #BFC3DF;
}

.contacts_title {
  font-family: "Phil";
  font-size: 36px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
  width: 100%;
}

.contacts-form {
  margin: 0 0 100px 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.contacts-form_inp {
  margin: 0 80px 40px 0;
  font-family: "Circe";
  font-weight: 350;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: #484848;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 9px;
  width: 370px;
  max-width: 820px;
}

.contacts-form_inp:nth-child(3) {
  margin-right: 0;
}

.contacts-form_inp:nth-child(4) {
  width: 100%;
  margin-right: 0;
}

.contacts-form .contacts-form_inp-width {
  width: 100%;
}

.contacts-form_btn-wrap {
  margin: 50px -webkit-calc(100% - 140px) 0 40px;
  margin: 50px -moz-calc(100% - 140px) 0 40px;
  margin: 50px calc(100% - 140px) 0 40px;
}

.contacts-form_btn-wrap input {
  font-family: "Circe";
  font-size: 8px;
  letter-spacing: 0.225em;
  text-transform: uppercase;
}

.contacts-form_btn,
.contacts-form_btn-wrap {
  font-size: 9px;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  position: relative;
}

.contacts-form_btn:hover,
.contacts-form_btn-wrap:hover {
  color: #293694;
}

.contacts-form_btn::before,
.contacts-form_btn-wrap::before {
  content: '';
  position: absolute;
  display: block;
  top: -57px;
  left: -55px;
  width: 100px;
  height: 100px;
  background: url('../img/icons/btn-green.png');
  background-size: 100% 100%;
}

.contacts-way {
  max-width: 820px;
  margin: 0 0 50px 100px;
}

.contacts-way_items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contacts-way_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 350;
  font-size: 13px;
  letter-spacing: -0.015em;
}

.contacts-way_item svg {
  height: 21px;
  width: 21px;
  margin-right: 10px;
}

.contacts-way_item svg path,
.contacts-way_item svg polygon {
  fill: rgba(0, 0, 0, 0.1);
}

.block-populars {
  padding: 80px 0;
}

.block-populars .title {
  font-size: 36px;
  max-width: 350px;
  margin-bottom: 60px;
}

.populars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -10px;
}

.populars .owl-stage-outer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.populars .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.populars .owl-item {
  height: 100%;
}

.populars .owl-dots {
  margin-top: 30px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.populars .owl-dots .owl-dot {
  margin: 0 6px !important;
  width: 8px;
  height: 8px;
}

.populars .owl-dots .owl-dot span {
  background: #BFC3DF;
  opacity: 0.5;
  width: 6px;
  height: 6px;
  margin: 0 6px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.populars .owl-dots .owl-dot.active span {
  width: 8px;
  height: 8px;
  background: #BFC3DF;
  opacity: 1;
}

.popular {
  margin: 0 10px 20px;
  width: -webkit-calc(100% / 4 - 20px);
  width: -moz-calc(100% / 4 - 20px);
  width: calc(100% / 4 - 20px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: auto;
}

.popular_img {
  width: 100%;
  max-height: 276px;
  cursor: pointer;
}

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

.popular_content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 25px 50px;
  background: rgba(224, 224, 224, 0.2);
}

.popular_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 122.4%;
  text-align: center;
  letter-spacing: -0.02em;
  max-width: 190px;
  margin-bottom: 20px;
}

.popular_price {
  margin-top: auto;
  font-weight: 350;
  font-size: 18px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.popular_btn {
  margin: 55px 0 0 40px;
  font-size: 9px;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  position: relative;
}

.popular_btn:hover {
  color: #293694;
}

.popular_btn::before {
  content: '';
  position: absolute;
  display: block;
  top: -57px;
  left: -55px;
  width: 100px;
  height: 100px;
  background: url('../img/icons/btn.png');
  background-size: 100% 100%;
}

.popular-rotate {
  display: none;
  padding: 75px 25px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #e4f8eb;
}

.popular-rotate_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
  max-width: 200px;
}

.popular-rotate_line {
  height: 1px;
  width: 90px;
  background: rgba(0, 0, 0, 0.1);
  margin: 30px 0 60px;
}

.popular-rotate_text {
  font-weight: 350;
  font-size: 13px;
  line-height: 122.4%;
  letter-spacing: -0.02em;
  max-width: 200px;
}

.popular-rotate_text p {
  margin-bottom: 20px;
}

.popular-rotate_text p span {
  display: block;
  font-weight: 700;
}

.block-prices-page .title {
  font-size: 36px;
  max-width: 350px;
  margin-bottom: 60px;
  margin-left: 100px;
}

.prices-page-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px 40px;
}

.prices-page-nav::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.prices-page-nav::-webkit-scrollbar-thumb {
  width: 0px;
  height: 0px;
}

.prices-page-nav_item {
  width: -webkit-calc(100% / 6 - 10px);
  width: -moz-calc(100% / 6 - 10px);
  width: calc(100% / 6 - 10px);
  margin: 0 5px;
  cursor: pointer;
}

.prices-page-nav_item-new .prices-page-nav_title {
  opacity: 1;
}

.prices-page-nav_item-new .prices-page-nav_img img {
  opacity: 1;
}

.prices-page-nav_title {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9EA1AB;
  opacity: 0.7;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  margin-bottom: 10px;
}

.prices-page-nav_img img {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.prices-page-nav_item--active .prices-page-nav_title {
  color: #000;
  opacity: 1;
}

.prices-page-nav_item--active .prices-page-nav_img img {
  opacity: 1;
  border: 4px solid rgba(53, 164, 91, 0.3);
}

.prices-page-item {
  padding: 20px 0;
  border-bottom: 1px solid #e4f8eb;
}

.prices-page-item_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.prices-page-item_new {
  margin-left: auto;
  margin-right: 80px;
  color: #ec7979;
}

.prices-page-item_arrow {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.prices-page-item_top-active .prices-page-item_arrow {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.prices-page-item_table-wrap {
  margin-top: 20px;
  display: none;
}

.prices-page-item_table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.prices-page-item_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 20px 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  width: 100%;
}

.prices-page-item_col:nth-child(1) {
  width: 260px;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: -0.02em;
  width: -webkit-calc(100% - 122px);
  width: -moz-calc(100% - 122px);
  width: calc(100% - 122px);
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 10px;
}

.prices-page-item_col:nth-child(2) {
  width: 70px;
  font-weight: 350;
  font-size: 16px;
  letter-spacing: -0.02em;
  opacity: 0.5;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
     -moz-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.prices-page-item_col:nth-child(3) {
  width: 95px;
  font-weight: 350;
  font-size: 16px;
  letter-spacing: -0.02em;
  opacity: 0.5;
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
     -moz-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.prices-page-item_col:nth-child(4) {
  width: 122px;
  font-weight: 350;
  font-size: 16px;
  letter-spacing: -0.02em;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 10px;
}

.prices-page-item_col:nth-child(5) {
  width: 110px;
  font-size: 18px;
  text-align: right;
  letter-spacing: -0.02em;
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
     -moz-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.prices-page-item_col:nth-child(5) span {
  font-size: 13px;
  display: block;
  text-align: right;
  margin-bottom: 5px;
}

.prices-page-item_col:nth-child(6) {
  width: 110px;
  font-size: 18px;
  text-align: right;
  letter-spacing: -0.02em;
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
     -moz-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.prices-page-item_col:nth-child(6) span {
  font-size: 13px;
  display: block;
  text-align: right;
  margin-bottom: 5px;
}

.prices-page-item_col:nth-child(7) {
  width: 100px;
  padding-bottom: 3px;
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
     -moz-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.prices-page-item_col:nth-child(8) {
  width: 80px;
  font-size: 8px;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 2px;
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
     -moz-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.prices-page-item_col:nth-child(8) svg {
  margin-top: -1px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.prices-page-item_col:nth-child(9) {
  width: 100%;
  padding: 15px 0 0;
  margin-top: 20px;
  font-weight: 350;
  font-size: 16px;
  line-height: 148%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: none;
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
     -moz-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.prices-page-item_col button {
  font-size: 9px;
  letter-spacing: 0.225em;
  text-transform: uppercase;
  position: relative;
  margin: 0 0 0 25px;
}

.prices-page-item_col button:hover {
  color: #293694;
}

.prices-page-item_col button::before {
  content: '';
  position: absolute;
  display: block;
  top: -25px;
  left: -25px;
  width: 50px;
  height: 50px;
  background: url('../img/icons/btn-green.png');
  background-size: 100% 100%;
}

.prices-page-item_sale {
  background: #B3E8F9;
  border-radius: 26px;
  width: 100%;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-tarifs {
  padding: 80px 0;
  margin-bottom: 80px;
  background: #d5e9ef;
}

.tarifs_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.tarifs_top .title {
  margin-right: auto;
}

.tarifs_top .tab {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  margin-right: 60px;
  font-family: "Circe";
  margin-bottom: 5px;
  cursor: pointer;
}

.tarifs_top .tab img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: none;
  width: 90px;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.tarifs_top .tab-active img {
  opacity: 1;
}

.tarifs {
  margin-top: 30px;
}

.tarif {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 30px;
}

.tarif:last-child {
  margin-bottom: 0;
}

.tarif_slider {
  width: -webkit-calc(100% / 2 - 60px);
  width: -moz-calc(100% / 2 - 60px);
  width: calc(100% / 2 - 60px);
  margin: 0 60px 40px 0;
}

.tarif_slider .owl-dots {
  margin-top: -40px !important;
  position: relative;
}

.tarif_slider .owl-dots .owl-dot {
  margin: 0 !important;
}

.tarif_slider .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #fff;
  margin: 0 4px !important;
}

.tarif_slider .owl-dots .active span {
  background: #a0b2d4 !important;
}

.tarif_content {
  font-family: "Circe";
  width: -webkit-calc(100% / 2 - 230px);
  width: -moz-calc(100% / 2 - 230px);
  width: calc(100% / 2 - 230px);
  margin: 0 30px 0 0;
}

.tarif_inf {
  color: #a1a2a2;
  font-size: 20px;
}

.tarif_title {
  font-size: 42px;
  color: #7989a8;
  font-family: "Phil";
  margin-bottom: 10px;
  font-weight: 700;
}

.tarif_name {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tarif_price {
  color: #7a8aa9;
  font-size: 29px;
  font-weight: 700;
  display: none;
}

.tarif_price span {
  font-size: 21px;
  color: #a1a2a2;
  text-decoration: line-through;
}

.tarif_price-active {
  display: block;
}

.tarif_btn {
  width: 200px;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.tarif_btn span {
  position: relative;
  z-index: 1;
}

.tarif_btn img {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 200px;
  max-width: none;
}

.cf7sg-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: none !important;
  color: red;
}
.wpcf7-response-output {
  display: none!important;
}

body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

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

.wrapper {
  max-width: 1230px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.question-page .about-inf {
  margin-top: 75px;
}
.question-page .about-inf_text {
  font-size: 18px;
  line-height: 1.5;
}
.question-page .form-block .contacts-form {
  max-width: 1040px;
  margin-left: auto;
  margin-top: 75px;
}
.contacts_title .title-span {
  display: block;
  font-size: 21px;
  margin-top: -5px;
}
.load-file {
  font-size: 14px;
  cursor: pointer;
}
.load-file, .date__container input {
  color: #484848;
  font-family: "Circe";
  font-weight: 350;
  font-size: 13px;
  line-height: 20px;
}
.question-page .popUp_check {
  margin-top: 25px;
  max-width: 580px;
}

@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }

  .daterangepicker .ranges ul {
    width: 140px;
  }

  .daterangepicker.single .ranges ul {
    width: 100%;
  }

  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }

  .daterangepicker.single .ranges,
  .daterangepicker.single .drp-calendar {
    float: left;
  }

  .daterangepicker {
    direction: ltr;
    text-align: left;
  }

  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }

  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }

  .daterangepicker .ranges,
  .daterangepicker .drp-calendar {
    float: left;
  }
}

@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }

  .daterangepicker .ranges {
    float: left;
  }

  .daterangepicker.rtl .ranges {
    float: right;
  }

  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}

@media screen and (min-width: 1440px) {
  .map_img {
    right: 0;
    width: -webkit-calc((100vw - 1170px) / 2 + 670px);
    width: -moz-calc((100vw - 1170px) / 2 + 670px);
    width: calc((100vw - 1170px) / 2 + 670px);
  }
}

@media screen and (min-width: 1500px) {
  .block-services-about-2 {
    background-size: 100% auto;
  }

  .block-studio {
    background-size: 100% auto;
  }
}

@media screen and (max-width: 1400px) {
  .map {
    position: relative;
  }

  .map_img {
    right: auto;
    left: 500px;
    width: 940px;
  }
}

@media screen and (max-width: 1300px) {
  .header_nav a {
    margin: 0 7.5px;
  }

  .header_nav li ul {
    left: -17.5px;
  }

  .bar-item:nth-child(2) {
    -webkit-transform: translate(100px, -70px);
       -moz-transform: translate(100px, -70px);
        -ms-transform: translate(100px, -70px);
         -o-transform: translate(100px, -70px);
            transform: translate(100px, -70px);
  }
}

@media screen and (max-width: 1200px) {
  .title {
    font-size: 40px;
  }

  .header {
    padding: 10px 0;
  }

  .footer_last {
    max-width: 325px;
  }

  .footer_inps {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 30px;
  }

  .footer_inps a {
    width: auto;
  }

  .footer_inps a:last-child {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
       -moz-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }

  .block-sliders {
    padding: 110px 0 60px;
  }

  .slider-big {
    max-width: 550px;
  }

  .slider-sm {
    max-width: 350px;
  }

  .block-faq {
    padding: 150px 0 0;
  }

  .faq_title {
    margin: 0 0 80px;
  }

  .faq_cat {
    width: 270px;
  }

  .faq_items {
    width: -webkit-calc(100% - 300px);
    width: -moz-calc(100% - 300px);
    width: calc(100% - 300px);
  }

  .block-map {
    padding: 150px 0 0;
  }

  .map_img {
    left: 400px;
    width: 800px;
  }

  .block-sales {
    padding: 100px 0;
  }

  .sales_title {
    font-size: 36px;
  }

  .block-services {
    padding: 70px 0;
  }

  .block-offer-new .offer_soc {
    right: 30px;
  }

  .offer_right {
    right: -40px;
  }

  .block-about-inf {
    padding: 100px 0 140px;
  }

  .about-inf_title {
    font-size: 46px;
  }

  .block-about-trgs {
    padding: 40px 0 135px;
  }

  .about-trgs_img {
    max-width: 747px;
  }

  .about-trgs_title {
    font-size: 36px;
    margin-bottom: 80px;
  }

  .block-about-inf2 {
    padding: 100px 0 0;
  }

  .about-inf2_title {
    font-size: 36px;
  }

  .block-docs,
  .block-partners {
    padding: 0 0 100px;
  }

  .docs_title,
  .partners_title {
    font-size: 36px;
  }

  .block-services-about {
    padding: 150px 0 35px;
  }

  .services-offer .offer_title {
    font-size: 50px;
  }

  .popUp-pay-item_img {
    margin: 0 20px 0 0;
  }

  .block-sales-page {
    margin: 150px 0 0;
  }

  .sales-page-item {
    margin-bottom: 100px;
  }

  .block-specialists {
    margin: 150px 0 0;
  }

  .b404 .offer_left {
    width: 350px;
  }

  .block-studio {
    padding: 150px 0;
  }

  .block-prices {
    padding: 100px 0 80px;
  }

  .block-prices .title {
    margin: 0 0 40px;
  }

  .prices_inf {
    margin: 40px 0 0;
  }

  .prices-item {
    margin: 0;
  }

  .block-club {
    margin: 90px 0 0;
  }

  .block-club .title {
    margin: 0 0 100px;
  }

  .club {
    margin: 0 -15px 0px;
  }

  .block-bar-offer .services-offer .offer_left {
    margin-left: 0;
    margin-right: 30px;
  }

  .block-bar-offer .services-offer .offer_left .offer_title {
    margin-bottom: 40px;
  }

  .block-bar-offer .services-offer .offer_right {
    max-width: 500px;
  }

  .block-bar .title {
    margin-left: 0;
  }

  .bar {
    padding-left: 0;
  }

  .bar-item:nth-child(2) {
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
  }

  .offer_right .btn_cont {
    margin: 100px 0 -124px;
  }

  .block-contacts {
    margin: 150px 0 0;
  }

  .contacts_title {
    font-size: 30px;
  }

  .popular-rotate {
    padding: 30px 20px 0;
  }

  .popular-rotate_line {
    margin: 20px 0 40px;
  }

  .block-prices-page .title {
    margin-left: 0;
  }

  .tarif_content {
    width: -webkit-calc(100% / 2 - 170px);
    width: -moz-calc(100% / 2 - 170px);
    width: calc(100% / 2 - 170px);
  }

  .tarif_btn {
    font-size: 16px;
    width: 140px;
  }

  .tarif_btn img {
    bottom: -30px;
    width: 140px;
  }

  .wrapper {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1150px) {
  .header_burger {
    display: block;
  }

  .header_logo {
    margin-right: auto;
  }

  .header_nav-wrap {
    position: fixed;
    z-index: 99;
    top: 0;
    left: -100%;
    height: 100vh;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    width: 290px;
    background: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
  }

  .header_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: -webkit-calc(100vh - 100px);
    min-height: -moz-calc(100vh - 100px);
    min-height: calc(100vh - 100px);
    margin: 50px 0;
  }

  .header_nav a {
    font-size: 12px;
  }

  .header_nav li {
    padding: 15px 0;
    text-align: center;
  }

  .header_nav li ul {
    position: static;
    box-shadow: none;
    padding: 20px 0 0;
    width: auto;
  }

  .header_nav li ul li a {
    margin: 0 0 15px;
    opacity: 0.6;
  }

  .header_nav li ul li:last-child a {
    margin: 0;
  }

  .header_nav-active {
    left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .title {
    font-size: 34px;
  }

  .footer_last {
    max-width: 860px;
    width: 100%;
    margin: -45px 5px 25px;
  }

  .footer_subscr {
    margin: 50px 5px -25px;
  }

  .footer_btn2 {
    margin-left: 0;
  }

  .block-sliders {
    padding: 80px 0 40px;
  }

  .slider-big {
    max-width: 450px;
  }

  .slider-sm {
    max-width: 300px;
  }

  .block-faq {
    padding: 100px 0 0;
  }

  .faq_title {
    margin: 0 0 60px;
  }

  .faq {
    margin: 0 0 30px;
  }

  .faq_cat {
    font-size: 18px;
    line-height: 26px;
  }

  .block-map {
    padding: 100px 0 0;
  }

  .map_text {
    margin-bottom: 150px;
  }

  .map_img {
    left: 350px;
    width: 700px;
  }

  .block-sales {
    padding: 80px 0;
  }

  .block-offer {
    min-height: 600px;
  }

  .offer_title {
    font-size: 48px;
  }

  .block-about-inf {
    padding: 80px 0 120px;
  }

  .about-inf_title {
    font-size: 40px;
  }

  .about-trgs_img {
    max-width: 719px;
  }

  .about-trg_num {
    font-size: 110px;
  }

  .block-about-inf2 {
    padding: 80px 0 0;
  }

  .block-docs,
  .block-partners {
    padding: 0 0 80px;
  }

  .block-services-about {
    padding: 120px 0 35px;
  }

  .services-item:nth-child(4n-2) .services-item_img {
    max-width: 250px;
  }

  .services-item:nth-child(4n-1) .services-item_img {
    max-width: 250px;
  }

  .services-item_content {
    max-width: 300px;
  }

  .services-offer .offer_title {
    font-size: 40px;
  }

  .services-offer .offer_price {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .services-offer .offer_text {
    margin-bottom: 60px;
  }

  .block-services-about-2 {
    margin-bottom: 60px;
  }

  .block-services-about-2 .about-inf_trgs {
    margin: 50px 0 60px 100px;
  }

  .about-inf-trg {
    margin-right: 30px;
  }

  .about-inf-trg_num {
    font-size: 80px;
    margin-right: 20px;
  }

  .about-inf-trg_text {
    font-size: 16px;
    max-width: 140px;
  }

  .popUp-pay-wrap {
    max-width: 600px;
  }

  .popUp-pay-item {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
  }

  .popUp-pay-form_inp {
    margin: 0 0 40px 0;
    width: 100%;
  }

  .b404 .offer_left {
    width: 300px;
  }

  .block-studio {
    padding: 150px 0;
  }

  .block-bar-offer .services-offer .offer_left .offer_text {
    margin-left: 0;
  }

  .block-bar {
    padding: 80px 0;
  }

  .block-bar .title {
    margin-bottom: 40px;
  }

  .bar {
    margin: 0;
  }

  .bar-item {
    width: 360px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin: 0 0 45px;
  }

  .bar-item:nth-child(1) {
    margin-right: -webkit-calc(100% - 360px);
    margin-right: -moz-calc(100% - 360px);
    margin-right: calc(100% - 360px);
  }

  .bar-item:nth-child(2) {
    margin: 0 auto 45px;
  }

  .bar-item:nth-child(3) {
    margin-left: -webkit-calc(100% - 360px);
    margin-left: -moz-calc(100% - 360px);
    margin-left: calc(100% - 360px);
  }

  .contacts_title {
    font-size: 28px;
  }

  .contacts-form_inp {
    margin: 0 0 40px 0;
    width: 100%;
  }

  .prices-page-item_col:nth-child(1) {
    width: -webkit-calc(100% - 135px);
    width: -moz-calc(100% - 135px);
    width: calc(100% - 135px);
  }

  .prices-page-item_col:nth-child(4) {
    margin-bottom: 10px;
  }

  .tarifs_top .tab {
    font-size: 24px;
  }

  .tarifs_top .tab img {
    width: 80px;
    left: -5px;
    bottom: -3px;
  }

  .tarif_title {
    font-size: 34px;
  }

  .tarif_name {
    font-size: 24px;
  }

  .tarif_price {
    font-size: 24px;
  }

  .tarif_price span {
    font-size: 18px;
  }

  .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wrapper {
    max-width: 900px;
  }
}

@media screen and (max-width: 920px) {
  .footer_btn {
    margin-right: 0;
  }

  .block-sliders {
    padding: 60px 0 40px;
  }

  .sales_title {
    font-size: 28px;
  }

  .sale_img {
    margin-bottom: 20px;
  }

  .sale_title {
    font-size: 18px;
    max-width: 200px;
  }

  .sale_text {
    font-size: 14px;
    max-width: 200px;
  }

  .services-slide_left {
    width: -webkit-calc(100% - 250px - 30px);
    width: -moz-calc(100% - 250px - 30px);
    width: calc(100% - 250px - 30px);
  }

  .services-slide_right {
    width: 250px;
  }

  .block-services-nav .wrapper {
    max-width: none;
  }

  .offer_text {
    margin: 0 0 50px 0;
  }

  .block-about-video .play {
    -webkit-transform: scale(0.7);
       -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
         -o-transform: scale(0.7);
            transform: scale(0.7);
  }

  .block-about-inf {
    padding: 80px 0 100px;
  }

  .about-inf_text {
    margin-left: 30px;
    margin-top: 30px;
  }

  .about-inf_text p {
    margin-top: 15px;
  }

  .block-about-trgs {
    padding: 40px 0 115px;
  }

  .about-trgs_img {
    top: -140px;
    max-width: 606px;
  }

  .about-trgs_title {
    margin-bottom: 60px;
  }

  .about-trg_num {
    font-size: 95px;
  }

  .about-trg_text {
    font-size: 16px;
  }

  .about-inf2_title {
    margin-bottom: 40px;
  }

  .block-services-about {
    padding: 120px 0 35px;
  }

  .services-offer .offer_title {
    font-size: 32px;
  }

  .services-offer .offer_price {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .presents_title {
    margin-bottom: 40px;
  }

  .present {
    padding: 50px 0 0;
    width: -webkit-calc(100% / 2 - 20px);
    width: -moz-calc(100% / 2 - 20px);
    width: calc(100% / 2 - 20px);
  }

  .present:nth-child(1) {
    margin-top: 60px;
  }

  .present:nth-child(2) {
    margin-left: 50px;
    width: -webkit-calc(100% / 2 - 70px);
    width: -moz-calc(100% / 2 - 70px);
    width: calc(100% / 2 - 70px);
  }

  .present:nth-child(2) .bg {
    left: -50px;
  }

  .block-services-about-2 .about-inf_trgs {
    margin: 40px 0 60px 30px;
  }

  .block-sales-page {
    margin: 130px 0 0;
  }

  .block-sales-page .title {
    margin: 0 0 50px 30px;
  }

  .sales-page-item {
    margin-bottom: 80px;
  }

  .sales-page-item:nth-child(even) .sales-page-item_img {
    margin: 0 0 0 30px;
  }

  .sales-page-item_img {
    margin: 0 30px 0 0;
  }

  .sales-page-item_content {
    width: -webkit-calc(50% - 30px);
    width: -moz-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .sales-page-item_title {
    font-size: 27px;
  }

  .block-specialists {
    margin: 130px 0 0;
  }

  .block-specialists .title {
    margin: 0 0 50px 30px;
  }

  .specialist_img::after {
    width: 160px;
    height: 190px;
    right: -70px;
    bottom: -30px;
  }

  .b404 .offer_left {
    width: 230px;
  }

  .b404 .offer_price {
    margin-bottom: 50px;
  }

  .block-studio {
    padding: 130px 0;
  }

  .block-prices .title {
    margin: 0 0 20px;
  }

  .prices-item_title {
    font-size: 18px;
  }

  .prices-item_content {
    margin: 40px 0 0;
  }

  .prices-item_tables {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .prices-item_table {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    margin: 0 15px 50px;
  }

  .prices-item_list {
    width: -webkit-calc(100% - 160px);
    width: -moz-calc(100% - 160px);
    width: calc(100% - 160px);
  }

  .block-about-inf3 .about-inf2_text {
    margin-left: 0;
  }

  .block-club {
    margin: 80px 0 0;
  }

  .block-club .title {
    margin: 0 0 70px;
  }

  .club {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .club-card {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
    margin: 0 15px 70px;
  }

  .block-bar-offer .services-offer .offer_right {
    max-width: 360px;
  }

  .block-contacts {
    margin: 130px 0 0;
  }

  .contacts .title {
    margin: 0 0 50px 30px;
  }

  .contacts_infs {
    margin: 0 0 50px 30px;
  }

  .contacts-form {
    margin: 0 0 80px 30px;
  }

  .contacts-way {
    margin: 0 0 50px 30px;
  }

  .block-populars .title {
    font-size: 28px;
    max-width: 300px;
  }

  .popular {
    width: -webkit-calc(100% / 3 - 20px);
    width: -moz-calc(100% / 3 - 20px);
    width: calc(100% / 3 - 20px);
  }

  .block-prices-page .title {
    font-size: 28px;
    max-width: 300px;
  }

  .prices-page-nav {
    overflow-x: scroll;
    margin: 0 -webkit-calc((100vw - 100%) / 2 * (-1)) 40px;
    margin: 0 -moz-calc((100vw - 100%) / 2 * (-1)) 40px;
    margin: 0 calc((100vw - 100%) / 2 * (-1)) 40px;
    padding: 0 -webkit-calc((100vw - 100%) / 2);
    padding: 0 -moz-calc((100vw - 100%) / 2);
    padding: 0 calc((100vw - 100%) / 2);
    width: 100vw;
  }

  .prices-page-nav_item {
    width: 165px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin: 0;
    padding: 0 5px;
  }

  .tarif {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .tarif_slider {
    margin: 0 0 40px;
    width: 100%;
  }

  .tarif_content {
    width: auto;
    max-width: -webkit-calc(100% - 170px);
    max-width: -moz-calc(100% - 170px);
    max-width: calc(100% - 170px);
  }

  .wrapper {
    max-width: 720px;
  }
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 30px;
  }

  .header_burger {
    margin-top: 12px;
  }

  .header_place {
    display: none;
  }

  .header_phone {
    margin: 0 0 0 20px;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
       -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .header_phone svg {
    display: block;
  }

  .header_phone span {
    display: none;
  }

  .header_btn {
    display: none;
  }

  footer .wrapper {
    max-width: 490px;
  }

  .footer_col {
    width: -webkit-calc(100% / 3 - 30px);
    width: -moz-calc(100% / 3 - 30px);
    width: calc(100% / 3 - 30px);
  }

  .footer_last {
    max-width: none;
  }

  .footer_btn2 {
    margin-top: 0;
    margin-left: 20px;
  }

  .block-sliders {
    padding: 40px 0 40px;
  }

  .slider-big {
    max-width: 400px;
  }

  .slider-sm {
    max-width: 200px;
  }

  .block-faq {
    padding: 70px 0 0;
  }

  .faq_title {
    margin: 0 0 40px;
  }

  .faq {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    border-bottom: none;
  }

  .faq_cat {
    width: 100%;
    margin-bottom: 30px;
  }

  .faq_items {
    width: 100%;
  }

  .faq-item {
    padding: 25px 0;
  }

  .block-map {
    padding: 70px 0 0;
  }

  .map_text {
    margin-bottom: 400px;
  }

  .map_img {
    left: 70px;
    width: 600px;
    bottom: 178px;
  }

  .map_img img {
    margin-bottom: 0;
  }

  .map_links {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .map_line {
    right: -20px;
  }

  .map_link {
    margin: 0 50px;
  }

  .block-sales {
    padding: 70px 0;
  }

  .sales {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .sales_title {
    width: 100%;
    max-width: none;
    margin: 0 0 30px;
  }

  .sales_items {
    max-width: none;
    width: 100%;
  }

  .sale {
    max-width: none;
  }

  .block-services-nav {
    padding: 0;
  }

  .block-services-nav .wrapper {
    padding: 0;
  }

  .services-nav {
    width: 100%;
    padding: 40px 20px;
    overflow-x: scroll;
  }

  .services-nav-item {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding-right: 50px;
  }

  .block-offer-new .offer_soc {
    display: none;
  }

  .offer_left {
    max-width: 280px;
  }

  .offer_title {
    font-size: 34px;
  }

  .offer_right {
    right: -75px;
  }

  .block-about-inf3 {
    padding-top: 100px !important;
  }
  
  .akciya_page .block-about-inf3 {
    padding-top: 0 !important;
  }

  .akciya_page .block-services-offer {
    padding-bottom: 70px;
  }

  .akciya_page .block-about-inf2 {
    padding: 0 0 70px;
  }

  .block-about-video .play {
    -webkit-transform: scale(0.6);
       -moz-transform: scale(0.6);
        -ms-transform: scale(0.6);
         -o-transform: scale(0.6);
            transform: scale(0.6);
  }

  .block-about-inf {
    padding: 60px 0 100px;
  }

  .about-inf_text {
    margin-left: 0;
    font-size: 14px;
  }

  .block-studio .about-inf_btn {
    margin: 75px 0 -100px;
  }

  .block-studio .about-inf_btn button {
    width: 155px;
    font-size: 14px;
  }

  .block-studio .about-inf_btn img {
    width: 155px;
  }

  .block-about-trgs {
    padding: 40px 0 95px;
  }

  .about-trgs_img {
    max-width: 526px;
  }

  .about-trgs_title {
    margin-bottom: 40px;
    max-width: 160px;
  }

  .about-trg {
    max-width: 100px;
  }

  .about-trg_num {
    font-size: 85px;
  }

  .about-trg_text {
    font-size: 14px;
  }

  .block-about-inf2 {
    padding: 60px 0 0;
  }

  .block-docs,
  .block-partners {
    padding: 0 0 60px;
  }

  .docs_title,
  .partners_title {
    margin-bottom: 40px;
  }

  .block-services-about {
    padding: 120px 0 35px;
  }

  .services-items {
    margin: 0 -15px;
  }

  .services-item {
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
    margin: 0 15px 60px;
  }

  .services-item:nth-child(4n-3) {
    margin-top: 0;
  }

  .services-item:nth-child(4n-2) .services-item_img {
    max-width: none;
  }

  .services-item:nth-child(4n-1) {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .services-item:nth-child(4n-1) .services-item_img {
    max-width: none;
  }

  .services-item:nth-child(4n) {
    margin-top: 0;
  }

  .services-offer .offer_left {
    max-width: none;
  }

  .services-offer .offer_left .offer_right {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }

  .services-offer .offer_right {
    display: none;
  }

  .services-offer .offer_text {
    max-width: none;
  }

  .offer_left .btn_cont {
    display: block;
    margin: 90px 0 -30px
  }

  .present_title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .block-services-about-2 .about-inf_trgs {
    margin: 40px 0;
  }

  .about-inf-trg_num {
    font-size: 65px;
  }

  .about-inf-trg_text {
    font-size: 14px;
    line-height: 130%;
    max-width: 120px;
  }

  .popUp_content,
  .popUp-buy_content,
  .popUp-serts_content,
  .popUp-reg_content,
  .popUp-call_content,
  .popUp-club_content,
  .popUp-order_content,
  .popUp-freeze_content,
  .popUp-buy-new_content {
    padding: 40px 30px 90px;
  }

  .popUp-pay-wrap {
    max-width: 530px;
  }

  .popUp-pay .title {
    margin-bottom: 50px;
  }

  .popUp-pay-item {
    margin-bottom: 50px;
  }

  .popUp-pay-item_text {
    max-width: none;
  }

  .block-sales-page {
    margin: 100px 0 0;
  }

  .block-sales-page .title {
    margin: 0 auto 50px;
    max-width: 440px;
  }

  .sales-page-item {
    margin-bottom: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .sales-page-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sales-page-item:nth-child(even) .sales-page-item_img {
    margin: 0 0 35px;
  }

  .sales-page-item_img {
    margin: 0 0 35px;
    width: 100%;
    max-width: 440px;
  }

  .sales-page-item_content {
    width: 100%;
    max-width: 440px;
  }

  .sales-page-item_title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .block-specialists {
    margin: 100px 0 0;
  }

  .block-specialists .title {
    margin: 0 auto 50px;
    max-width: 440px;
  }

  .specialist {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .specialist_desc {
    padding-bottom: 45px;
    padding-left: 0;
  }

  .specialists_items.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px;
  }

  .sale__list {
    gap: 12px;
  }

  .block-studio {
    padding: 120px 0;
  }

  .block-prices {
    padding: 80px 0;
  }

  .block-club {
    margin: 70px 0 0;
  }

  .block-club .title {
    margin: 0 auto 50px;
  }

  .block-bar-offer .services-offer .offer_left {
    margin: 0;
  }

  .block-bar-offer .services-offer .offer_left .offer_right {
    display: none;
  }

  .block-bar-offer .services-offer .offer_left .offer_title {
    margin-bottom: 25px;
  }

  .block-bar-offer .services-offer .offer_right {
    max-width: none;
  }

  .block-bar {
    padding: 60px 0 20px;
  }

  .block-contacts {
    margin: 100px 0 0;
  }

  .contacts .title {
    margin: 0 auto 50px;
  }

  .contacts_infs {
    margin: 0 auto 50px;
  }

  .contacts_inf {
    width: 170px;
  }

  .contacts_title {
    font-size: 24px;
  }

  .contacts-form {
    margin: 0 auto 80px;
  }

  .contacts-way {
    margin: 0 auto 50px;
  }

  .block-populars {
    padding: 60px 0;
  }

  .block-populars .title {
    margin-bottom: 40px;
  }

  .popular {
    width: -webkit-calc(100% / 2 - 20px);
    width: -moz-calc(100% / 2 - 20px);
    width: calc(100% / 2 - 20px);
  }

  .popular-rotate {
    padding: 75px 25px 0;
  }

  .block-prices-page .title {
    margin-bottom: 40px;
  }

  .prices-page-item_col:nth-child(2) {
    width: 95px;
  }

  .prices-page-item_col:nth-child(3) {
    width: 95px;
  }

  .prices-page-item_col:nth-child(5) {
    width: -webkit-calc(100% / 2);
    width: -moz-calc(100% / 2);
    width: calc(100% / 2);
    text-align: left;
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .prices-page-item_col:nth-child(5) span {
    text-align: left;
  }

  .prices-page-item_col:nth-child(6) {
    width: -webkit-calc(100% / 2);
    width: -moz-calc(100% / 2);
    width: calc(100% / 2);
    text-align: left;
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
       -moz-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .prices-page-item_col:nth-child(6) span {
    text-align: left;
  }

  .prices-page-item_col:nth-child(7) {
    margin-top: 15px;
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
       -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin-left: -webkit-calc(100% - 95px - 95px - 100px);
    margin-left: -moz-calc(100% - 95px - 95px - 100px);
    margin-left: calc(100% - 95px - 95px - 100px);
  }

  .prices-page-item_col:nth-child(8) {
    margin-top: 15px;
  }

  .block-tarifs {
    padding: 60px 0;
    margin-bottom: 60px;
  }

  .tarifs_top .tab {
    font-size: 18px;
  }

  .tarifs_top .tab img {
    width: 60px;
  }

  .tarif_inf {
    font-size: 16px;
  }

  .tarif_title {
    font-size: 30px;
  }

  .tarif_name {
    font-size: 18px;
  }

  .tarif_price {
    font-size: 18px;
  }

  .tarif_price span {
    font-size: 16px;
  }

  .wrapper {
    max-width: 600px;
  }

  .akciya_page .services-offer {
  -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }

  .akciya_page .services-offer .offer_right {
    display: block;
    margin-bottom: 45px;
  }

}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: -webkit-calc(100% - 10px);
    max-width: -moz-calc(100% - 10px);
    max-width: calc(100% - 10px);
  }
}

@media screen and (max-width: 576px) {
  .title {
    font-size: 27px;
    line-height: 122.4%;
    letter-spacing: -0.02em;
    color: #333333;
  }

  .header {
    padding: 5px 0;
  }

  .header_lang ul li {
    top: 15px;
  }

  .header_logo {
    margin: 0 auto;
  }

  .header_phone {
    margin: 0;
  }

  /*.header_age {
    display: none;
  }*/

  footer {
    padding: 30px 0;
  }

  .footer_col {
    margin: 0 15px 30px;
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
  }

  .footer_col:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .footer_col:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .footer_col:nth-child(3) {
    /*display: none;*/
  }

  .footer_col:nth-child(4) {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    max-width: none;
  }

  .footer_col:nth-child(6) {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
       -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .footer_col:nth-child(7) {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
       -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .footer_title {
    margin-bottom: 20px;
  }

  .footer_soc {
    margin-left: 15px;
  }

  .footer_map {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .footer_last {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -moz-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
    margin: -15px 30px 45px 10px;
  }

  .footer_subscr {
    margin: 40px 0px -15px;
  }

  .footer_btn2 {
    margin-right: 0;
  }

  .footer_inps {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer_inps a {
    font-size: 12px;
  }

  .block-sliders {
    padding: 20px 0 40px;
  }

  .slider-big {
    max-width: 100%;
    margin: 0;
  }

  .slider-sm {
    display: none !important;
  }

  .block-faq {
    padding: 40px 0 0;
  }

  .faq_title {
    margin: 0 0 30px;
  }

  .faq-item span {
    font-size: 13px;
    line-height: 169.5%;
  }

  .block-map {
    padding: 40px 0 0;
  }

  .map_text {
    margin-bottom: 0;
  }

  .map_img {
    position: static;
    margin-bottom: -3px;
  }

  .map_links {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }

  .map_link {
    margin: 0;
  }

  .block-sales {
    padding: 40px 0 50px;
  }

  .sale_num {
    font-size: 14px;
    width: 60px;
    height: 65px;
    background-size: 90px 95px;
    padding: 47px 0 0 20px;
  }

  .sale_text {
    font-size: 13px;
    line-height: 169.5%;
  }

  .block-services {
    padding: 40px 0;
  }

  .services-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .services-slide_left {
    width: 100%;
    padding: 0;
    margin: 0 0 30px;
  }

  .services-slide_right {
    width: 100%;
    margin: 0;
  }

  .services-nav {
    padding: 30px 20px;
  }

  .block-offer {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .block-offer-new .offer_btn {
    margin-top: 20px;
  }

  .offer {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 0 50px;
  }

  .offer_left {
    max-width: none;
  }

  .offer_title {
    margin: -70px 0 30px;
    max-width: 280px;
    font-size: 27px;
  }

  .offer_text {
    max-width: 450px;
  }

  .offer_right {
    position: static;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
       -moz-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0 -20px;
    width: -webkit-calc(100% + 40px);
    width: -moz-calc(100% + 40px);
    width: calc(100% + 40px);
  }

  .offer_soc {
    display: none;
  }

  .block-about-video .play {
    -webkit-transform: scale(0.5);
       -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
         -o-transform: scale(0.5);
            transform: scale(0.5);
  }

  .block-about-inf {
    padding: 40px 0 80px;
  }

  .block-about-trgs {
    padding: 40px 0 40px;
  }

  .about-trgs_img {
    top: auto;
    bottom: -30px;
    width: 526px;
  }

  .about-trgs_title {
    color: #fff;
    margin-bottom: 20px;
  }

  .about-trgs_content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 400px;
    margin: 0 auto -40px;
  }

  .about-trg {
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
    max-width: none;
    margin: 0 15px 40px;
  }

  .block-about-inf2 {
    padding: 40px 0 0;
  }

  .about-inf2_title {
    max-width: 330px;
    margin-bottom: 20px;
  }

  .block-docs,
  .block-partners {
    padding: 0 0 40px;
  }

  .docs_title,
  .partners_title {
    margin-bottom: 30px;
  }

  .block-services-about {
    padding: 160px 0 35px;
  }

  .services-item {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
  }

  .services-item_img {
    margin-bottom: 35px;
  }

  .services-item_content {
    max-width: 380px;
  }

  .services-item_btn {
    margin-top: 20px;
  }

  .block-services-offer {
    padding: 80px 0;
  }

  .services-offer .offer_title {
    font-size: 27px;
    margin-bottom: 15px;
  }

  .block-presents {
    padding: 20px 0;
  }

  .presents {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .present {
    width: 100%;
  }

  .present:nth-child(1) {
    margin-top: 0;
  }

  .present:nth-child(1) .bg {
    right: 0;
    width: -webkit-calc(100% + 30px);
    width: -moz-calc(100% + 30px);
    width: calc(100% + 30px);
    left: -15px;
    background-size: 100% auto;
    background-position: right bottom;
  }

  .present:nth-child(1) .present_img {
    bottom: 0;
    max-width: 250px;
  }

  .present:nth-child(2) {
    width: 100%;
    margin: 80px 0 0;
  }

  .present:nth-child(2) .bg {
    right: 0;
    width: -webkit-calc(100% + 30px);
    width: -moz-calc(100% + 30px);
    width: calc(100% + 30px);
    left: -15px;
    background-size: 100% auto;
    background-position: right bottom;
  }

  .present:nth-child(2) .present_img {
    bottom: 0;
    max-width: 200px;
  }

  .present:nth-child(2) .present_text {
    margin-bottom: 300px;
  }

  .present .bg {
    width: 100%;
    height: 270px;
  }

  .present_text {
    margin-bottom: 200px;
  }

  .present_btn {
    margin-right: 50px;
  }

  .about-inf-trg {
    margin-right: 20px;
  }

  .about-inf-trg_num {
    margin-right: 10px;
    font-size: 60px;
  }

  .about-inf-trg_text {
    max-width: 100px;
  }

  .popUp_content,
  .popUp-buy_content,
  .popUp-serts_content,
  .popUp-reg_content,
  .popUp-call_content,
  .popUp-club_content,
  .popUp-order_content,
  .popUp-freeze_content,
  .popUp-buy-new_content {
    padding: 20px 30px 70px;
  }

  .popUp_content img,
  .popUp-buy_content img,
  .popUp-serts_content img,
  .popUp-reg_content img,
  .popUp-call_content img,
  .popUp-club_content img,
  .popUp-order_content img,
  .popUp-freeze_content img,
  .popUp-buy-new_content img {
    margin: 0 auto 30px;
    float: none;
    display: block;
    width: 100%;
    height: auto;
    max-width: 272px;
  }

  .popUp_content h3,
  .popUp-buy_content h3,
  .popUp-serts_content h3,
  .popUp-reg_content h3,
  .popUp-call_content h3,
  .popUp-club_content h3,
  .popUp-order_content h3,
  .popUp-freeze_content h3,
  .popUp-buy-new_content h3 {
    text-align: center;
    margin-bottom: 15px;
  }

  .popUp_content h2,
  .popUp-buy_content h2,
  .popUp-serts_content h2,
  .popUp-reg_content h2,
  .popUp-call_content h2,
  .popUp-club_content h2,
  .popUp-order_content h2,
  .popUp-freeze_content h2,
  .popUp-buy-new_content h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    font-size: 27px;
  }

  .popUp_content p,
  .popUp-buy_content p,
  .popUp-serts_content p,
  .popUp-reg_content p,
  .popUp-call_content p,
  .popUp-club_content p,
  .popUp-order_content p,
  .popUp-freeze_content p,
  .popUp-buy-new_content p {
    width: 100%;
    margin-bottom: 20px;
  }

  .popUp_cross,
  .popUp-buy_cross,
  .popUp-serts_cross,
  .popUp-reg_cross,
  .popUp-call_cross,
  .popUp-club_cross,
  .popUp-order_cross,
  .popUp-freeze_cross,
  .popUp-buy-new_cross {
    margin-bottom: 20px;
  }

  .popUp-pay-wrap {
    max-width: 380px;
  }

  .popUp-pay .title {
    margin-bottom: 30px;
  }

  .popUp-pay_price {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .popUp-pay-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 30px;
  }

  .popUp-pay-item_img {
    margin: 0 0 20px;
  }

  .popUp-pay-item_text {
    max-width: 320px;
  }

  .popUp-reg .contacts-form_inp,
  .popUp-call .contacts-form_inp,
  .popUp-club .contacts-form_inp,
  .popUp-freeze .contacts-form_inp,
  .popUp-order .contacts-form_inp {
    width: 100%;
  }

  .popUp-freeze .contacts-form_inp:nth-child(4) {
    width: 100%;
  }

  .popUp-reg .contacts-form_inp {
    width: 100%;
  }

  .popUp-reg .contacts-form_inp:nth-child(4) {
    width: 100%;
  }

  .popUp-reg--select {
    width: 100%;
  }

  .sales-page-item_title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .sales-page-item_text p {
    margin-bottom: 10px;
  }

  .sales-page-item_text p span {
    font-size: 14px;
  }

  .sales-page-item_btn {
    margin-top: 20px;
  }

  .specialist_img::after {
    width: 120px;
    height: 140px;
    right: -30px;
    bottom: -20px;
  }

  .specialist_btn {
    margin-top: 20px;
  }

  .block-404 {
    padding: 150px 0 0;
    margin: 0;
  }

  .b404 .offer_price {
    font-size: 14px;
  }

  .block-studio {
    padding: 160px 0;
  }

  .block-prices {
    padding: 60px 0;
  }

  .block-prices .title {
    margin: 0;
  }

  .prices-item_title {
    font-size: 16px;
  }

  .prices-item_arrow svg {
    width: 12px;
  }

  .prices-item_content {
    margin: 20px 0 0;
  }

  .prices-item_slider {
    margin-bottom: 20px;
  }

  .prices-item_table {
    margin: 0 15px 30px;
  }

  .prices-item_list li {
    font-size: 14px;
  }

  .prices-item_plus {
    font-size: 14px;
  }

  .club-card_title {
    font-size: 18px;
  }

  .club-card_text {
    font-size: 14px;
  }

  .club-card_btn {
    margin-top: 20px;
  }

  .block-bar-offer {
    padding-top: 170px;
    padding-bottom: 20px;
  }

  .block-bar {
    padding: 40px 0 20px;
  }

  .offer_left .btn_cont {
    margin: 75px 0 45px
  }

  .bar-item {
    margin: 0 auto 45px 0 !important;
  }

  .bar-item_inf span {
    font-size: 18px;
  }

  .bar-item_btn {
    right: -28px;
  }

  .contacts_infs {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .contacts_inf {
    width: 100%;
    margin-bottom: 30px;
  }

  .contacts_subtitle {
    margin-bottom: 15px;
  }

  .contacts_title {
    font-size: 22px;
  }

  .contacts-way_items {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .contacts-way_item {
    margin-bottom: 25px;
    width: 100%;
  }

  .contacts-form_inp {
    margin: 0 0 35px 0;
  }

  .question-page .popUp_check {
    margin-bottom: 10px;
  }

  .question-page .form-block .contacts-form {
    margin-top: 55px;
  }

  .question-page .about-inf_text, .contacts_title .title-span {
    font-size: 15px;
  }

  .block-populars {
    padding: 40px 0;
  }

  .block-populars .title {
    margin-bottom: 30px;
    font-size: 24px;
    max-width: 250px;
  }

  .populars {
    margin: 0 auto;
    max-width: 275px;
  }

  .popular {
    width: 100%;
    margin: 0;
    height: 100%;
  }

  .block-prices-page .title {
    margin-bottom: 30px;
    font-size: 24px;
    max-width: 250px;
  }

  .prices-page-item_new {
    margin-right: 30px;
  }

  .prices-page-item_col:nth-child(1) {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
  }

  .prices-page-item_col:nth-child(2) {
    font-size: 13px;
    width: 60px;
  }

  .prices-page-item_col:nth-child(3) {
    font-size: 13px;
    width: 85px;
  }

  .prices-page-item_col:nth-child(4) {
    font-size: 14px;
    width: 100px;
    margin-bottom: 15px;
  }

  .prices-page-item_col:nth-child(5) {
    font-size: 18px;
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    text-align: left;
    width: -webkit-calc(100% / 2);
    width: -moz-calc(100% / 2);
    width: calc(100% / 2);
    margin-top: 15px;
  }

  .prices-page-item_col:nth-child(6) {
    font-size: 18px;
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    text-align: left;
    width: -webkit-calc(100% / 2);
    width: -moz-calc(100% / 2);
    width: calc(100% / 2);
    margin-top: 15px;
  }

  .prices-page-item_col:nth-child(7) {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
       -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin: 0;
  }

  .prices-page-item_col:nth-child(9) {
    font-size: 13px;
  }

  .prices-page-item_sale {
    height: 25px;
  }

  .block-tarifs {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .tarifs_top {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .tarifs_top .title {
    width: 100%;
    margin-bottom: 40px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
       -moz-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .tarif_slider {
    margin: 0 0 30px;
  }

  .tarif_slider .owl-dots {
    margin-top: -30px !important;
  }

  .tarif_content {
    max-width: -webkit-calc(100% - 130px);
    max-width: -moz-calc(100% - 130px);
    max-width: calc(100% - 130px);
    margin: 0 20px 0 0;
  }

  .tarif_btn {
    width: 110px;
    font-size: 13px;
  }

  .tarif_btn img {
    width: 110px;
    bottom: -25px;
  }
}

@media screen and (max-width: 450px) {
  .footer_logo {
    margin: 0 0 30px;
    width: 100%;
  }

  .docs,
  .partners {
    width: 430px;
  }

  .docs .owl-dots,
  .partners .owl-dots {
    width: -webkit-calc(100vw - 30px);
    width: -moz-calc(100vw - 30px);
    width: calc(100vw - 30px);
  }

  .bar-item {
    width: 300px;
    margin-bottom: 60px !important;
  }

  .bar-item_btn {
    bottom: -35px;
  }
}

@media screen and (max-width: 415px) {
  .header_nav-wrap {
    width: 260px;
  }

  .header_nav a {
    font-size: 11px;
  }

  .map_title {
    max-width: 270px;
  }

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

  .map_img {
    width: 500px;
  }

  .map_links {
    padding: 30px 0;
  }

  .sale_text {
    max-width: 285px;
  }

  .offer_right {
    text-align: right;
    margin-left: -webkit-calc(((450px - 100vw) / 2) * (-1));
    margin-left: -moz-calc(((450px - 100vw) / 2) * (-1));
    margin-left: calc(((450px - 100vw) / 2) * (-1));
  }

  .offer_right img {
    width: 450px;
    max-width: none;
  }

  .block-about-video .play {
    -webkit-transform: scale(0.3);
       -moz-transform: scale(0.3);
        -ms-transform: scale(0.3);
         -o-transform: scale(0.3);
            transform: scale(0.3);
  }

  .services-offer .offer_left .offer_right {
    width: 100%;
    margin: 0 0 30px;
  }

  .services-offer .offer_left .offer_right img {
    width: 100%;
  }

  .present:nth-child(1) .present_img {
    max-width: 200px;
  }

  .present:nth-child(2) .present_img {
    max-width: 160px;
  }

  .present:nth-child(2) .present_text {
    margin-bottom: 250px;
  }

  .present .bg {
    height: 220px;
  }

  .present_text {
    margin-bottom: 150px;
  }

  .about-inf-trg {
    margin-right: 10px;
  }

  .about-inf-trg_num {
    font-size: 50px;
    margin-right: 5px;
  }

  .about-inf-trg_text {
    font-size: 13px;
  }

  .popUp_content h2,
  .popUp-buy_content h2,
  .popUp-serts_content h2,
  .popUp-reg_content h2,
  .popUp-call_content h2,
  .popUp-club_content h2,
  .popUp-order_content h2,
  .popUp-freeze_content h2,
  .popUp-buy-new_content h2 {
    font-size: 24px;
  }

  .prices-item_list {
    width: 100%;
    max-width: none;
  }

  .prices-item_desc {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
       -moz-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-left: auto;
    margin-bottom: 10px;
  }

  .club-card {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 15px 50px;
  }

  .club-card_img {
    margin: 0 0 30px;
  }

  .club-card_content {
    width: 100%;
  }
}

@media screen and (max-width: 415px) and screen and (max-width: 360px) {
  .offer_right {
    margin-left: -webkit-calc(((400px - 100vw) / 2) * (-1));
    margin-left: -moz-calc(((400px - 100vw) / 2) * (-1));
    margin-left: calc(((400px - 100vw) / 2) * (-1));
  }
}

@media screen and (max-width: 380px) {
  .bar-item {
    width: 240px;
  }

  .bar-item_inf {
    width: 166px;
    height: 216px;
    padding: 75px 0 0 65px;
  }

  .bar-item_btn {
    right: -45px;
    bottom: -50px;
  }
}

@media screen and (max-width: 360px) {
  .offer_right img {
    width: 400px;
  }
}

@media screen and (max-width: 350px) {
  .present:nth-child(1) .bg {
    background-size: 100% 100%;
  }

  .present:nth-child(2) .bg {
    background-size: 100% 100%;
  }
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

@supports (padding:max(0px)) {
    .fancybox-caption {
      padding-left: 12px;
      padding-right: 12px;
    }
}
}

@media print {
  .datepickers-container {
    display: none;
  }
}

@media screen and (min-height: 860px) {
  .offer_right {
    bottom: 140px;
  }
}

@media screen and (max-height: 700px) {
  .offer_right {
    bottom: 10vh;
  }
}