/**
 * 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;
}

.page-title {
  padding: 30px 0 5px;
  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: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #0099ff;
}

.page-subtitle {
  text-align: left;
  font-size: 18px;
  padding: 10px 0;
}

.page-title h1,
.page-title h2 {
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 700;
}

.page-nav {
  margin-bottom: 5px;
}

.page-nav a {
  margin-left: 20px;
  font-size: 14px;
}

.page-nav a:hover {
  color: #4865a3;
}

.about-main {
  margin: 0 -15px;
  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;
}

.about-main_col {
  margin: 50px 15px 30px;
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
  position: relative;
}

.about-main_col h2 {
  font-size: 30px;
  line-height: 120%;
  margin-bottom: 40px;
  color: #0099ff;
  font-weight: 700;
}

.about-main_col p {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 15px;
}

.about-main_col p a {
  color: #0099ff;
  text-decoration: underline;
}

.about-main_col p a:hover {
  text-decoration: none;
}

.about-main_col iframe {
  width: 100%;
  height: 330px;
}

.about-main_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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 25px -5px -25px;
}

.corner {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 170px;
}

.corner img {
  width: 100%;
}

.about-main-gr {
  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% / 3 - 10px);
  width: -moz-calc(100% / 3 - 10px);
  width: calc(100% / 3 - 10px);
  margin: 0 5px 25px;
  color: #0099ff;
}

.about-main-gr:last-child {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

.about-main-gr_num {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 5px;
  width: 130px;
  text-align: center;
}

.about-main-gr_inf {
  text-align: center;
}

.about-main-awards {
  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;
}

.about-main-award {
  height: 180px;
}

.about-main-award img {
  height: 100%;
}

.block-d3 {
  margin: 60px 0;
}

.d3 {
  position: relative;
}

.block-about-item {
  margin: 40px 0;
}

.about-item {
  margin: 0 -15px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-item_left {
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
  margin: 0 15px;
  padding: 0 0 30px;
}

.about-item_title {
  font-size: 30px;
  line-height: 120%;
  color: #0099ff;
  font-weight: 700;
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: calc(100% - 30px);
  margin: 30px 15px 40px;
}

.about-item_text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 150%;
}

.about-item_text p a {
  text-decoration: underline;
  color: #0099ff;
}

.about-item_text p a:hover {
  text-decoration: none;
}

.about-item_right {
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
  margin: 0 15px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  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;
  padding: 0 0 30px;
}

.about-item_table {
  margin: 0 auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-item_table .about-main-gr {
  width: -webkit-calc(100% / 2 - 10px);
  width: -moz-calc(100% / 2 - 10px);
  width: calc(100% / 2 - 10px);
  max-width: 190px;
}

.about-item_wave {
  margin: auto 0 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.about-item_wave img {
  width: 120px;
  height: 45px;
}

.about-item_wave img:nth-child(1) {
  margin-right: -21px;
}

.about-item_slider-wrap {
  position: relative;
  padding: 0 0 30px;
  margin: 0 15px;
  width: -webkit-calc(100% - 30px);
  width: -moz-calc(100% - 30px);
  width: calc(100% - 30px);
  overflow-x: hidden;
}

.about-item_slider-arrow {
  position: absolute;
  z-index: 99;
  top: 0;
  bottom: 50px;
  margin: auto 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.about-item_slider-arrow-left {
  left: -webkit-calc((100% - 390px) / 2 - 35px);
  left: -moz-calc((100% - 390px) / 2 - 35px);
  left: calc((100% - 390px) / 2 - 35px);
}

.about-item_slider-arrow-right {
  right: -webkit-calc((100% - 390px) / 2 - 35px);
  right: -moz-calc((100% - 390px) / 2 - 35px);
  right: calc((100% - 390px) / 2 - 35px);
}

.about-item_slider {
  width: 390px;
  margin: 0 auto;
  overflow: visible !important;
}

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

.about-item_slider .owl-item {
  opacity: 0.5;
}

.about-item_slider .owl-item.active {
  opacity: 1;
}

.about-item_slider .owl-dots .owl-dot {
  margin: 0 5px;
}

.about-item_slider .owl-dots .owl-dot span {
  margin: 0;
}

.about-item_slider .owl-dots .owl-dot.active span {
  background: #0099ff;
}

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

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

@font-face {
  font-family: "Circe";
  src: url(../fonts/CirceExtraBold.ttf);
  font-weight: 900;
  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: "Circe";
  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;
  margin-top: 103px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.main-scroll {
  margin-top: 78px;
}

.btn {
  border-radius: 60px;
  background-color: #ff6600;
  border: 1px solid #ff6600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  padding: 10px 25px;
  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;
}

.btn:hover {
  opacity: 0.7;
}

header {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.header-hide {
  -webkit-transform: translateY(-35px);
     -moz-transform: translateY(-35px);
      -ms-transform: translateY(-35px);
       -o-transform: translateY(-35px);
          transform: translateY(-35px);
}

.block-header-top {
  background-color: #00cccc;
  background: -webkit-gradient(linear, left top, right top, from(#71beff), to(#0099ff));
  background: -webkit-linear-gradient(left, #71beff 0%, #0099ff 100%);
  background: -moz-linear-gradient(left, #71beff 0%, #0099ff 100%);
  background: linear-gradient(90deg, #71beff 0%, #0099ff 100%);
}

.header-top {
  height: 35px;
  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: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
}

.header-top_link {
  margin: 0 20px -2px;
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.header-top_link:hover {
  border-bottom: 1px solid #fff;
}

.header-top_time {
  margin: 0 20px -2px;
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  cursor: pointer;
}

.header-top_time:hover {
  border-bottom: 1px solid #fff;
}

.header-top_drop-wrap {
  width: 230px;
  display: none;
  color: #fff;
  position: absolute;
  top: 24px;
  right: 0px;
  padding: 5px 25px 30px 30px;
  z-index: 99;
  background-color: #00cccc;
  background-image: -webkit-gradient(linear, left top, right top, from(#00cccc), to(#0099ff));
  background-image: -webkit-linear-gradient(left, #00cccc 0%, #0099ff 100%);
  background-image: -moz-linear-gradient(left, #00cccc 0%, #0099ff 100%);
  background-image: linear-gradient(90deg, #00cccc 0%, #0099ff 100%);
}

.header-top_drop {
  overflow-y: scroll;
  max-height: 300px;
  width: 100%;
  padding: 0 25px 0 0;
  margin-top: 10px;
}

.header-top_drop::-webkit-scrollbar {
  width: 3px;
  background: transparent;
}

.header-top_drop::-webkit-scrollbar-thumb {
  width: 3px;
  background: #fff;
  border-radius: 4px;
}

.header-top_drop p {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin: 16px 0;
}

.header-top_phone {
  font-size: 16px;
}

.block-header {
  background: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.header_logo {
  max-width: 160px;
}

.header_logo img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.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 li {
  margin: 0 15px;
  font-size: 16px;
}

.header_nav li a:hover {
  color: #ff6600;
}

.header_nav li ul {
  position: absolute;
  left: 0;
  top: 68px;
  width: 100%;
  display: none;
  -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;
  background: #fff;
  padding: 15px 60px;
}

.header_nav li ul li {
  font-size: 16px;
  font-weight: 700;
}

.header_nav li ul li a:hover {
  color: #4865a3;
}

.header_nav li .submenu-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.header_burger {
  display: none;
  position: relative;
  margin-left: 20px;
}

.mobMenu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #111;
  padding: 0px 0px 45px 25px;
  overflow-y: scroll;
  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;
}

.mobMenu::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.mobMenu::-webkit-scrollbar-thumb {
  width: 0;
  height: 0;
}

.mobMenu_cross {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  margin: 20px 20px 10px;
}

.mobMenu_logo {
  margin-bottom: 5px;
}

.mobMenu_nav li {
  font-size: 24px;
  line-height: 40px;
  color: #fff;
  margin: 8px 0;
}

.mobMenu-active {
  right: 0;
}

footer {
  background-color: #bddffb;
  padding: 35px 0 40px;
}

.footer {
  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;
}

.footer_phone {
  margin: 0 15px 40px;
  width: 100%;
  font-size: 28px;
}

.footer_phone a:hover {
  color: #4865a3;
}

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

.footer_col:nth-child(6) {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
     -moz-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
  width: 100%;
}

.footer_col:nth-child(7) {
  margin-top: 35px;
}

.footer_col-big {
  margin-top: 50px;
  line-height: 24px;
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
}

.footer_col-big a {
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.footer_col-big a:hover {
  border-bottom: 1px solid #000;
}

.footer_title {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer_menu li {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 12px;
}

.footer_menu li a {
  border-bottom: 1px solid transparent;
}

.footer_menu li a:hover {
  border-bottom: 1px solid #000;
}

.footer_form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer_form .wpcf7-response-output {
  display: none !important;
}

.footer_form .wpcf7 {
  max-width: -webkit-calc(100% - 44px);
  max-width: -moz-calc(100% - 44px);
  max-width: calc(100% - 44px);
}

.footer_form input {
  background: #fff;
  font-size: 16px;
  padding: 5px;
  height: 44px;
  width: 100%;
  min-width: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer_form input[type="submit"] {
  display: none;
}

.footer_form button {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 44px;
  width: 44px;
  background: #0044ff;
  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;
}

.footer_form button:hover {
  background: #0099ff;
}

.footer_checkbox {
  margin-top: 10px;
}

.footer_checkbox .wpcf7-list-item {
  margin: 10px 0 0;
}

.footer_checkbox label {
  font-size: 14px;
  line-height: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.footer_checkbox input {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: 2px;
}

.footer_socs {
  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-top: 65px;
}

.footer_socs a {
  width: 30px;
  height: 30px;
  margin-right: 6px;
}

.footer_socs a:hover {
  opacity: 0.7;
}

.block-projects .block-seo {
  margin-bottom: 40px;
}

.block-seo {
  margin-bottom: 80px;
}

.seo h3 {
  font-size: 32px;
  line-height: 140%;
  font-weight: 900;
  color: #0071BB;
  text-align: center;
  margin: 0 0 15px;
}

.seo p,
.seo ul,
.seo ol {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 140%;
}

.seo p b,
.seo ul b,
.seo ol b {
  color: #0099ff;
}

.seo p em,
.seo ul em,
.seo ol em {
  font-style: italic;
}

.seo li {
  margin-bottom: 10px;
}

.seo a {
  color: #0099ff;
}

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

.block-project:nth-child(even) .project_top {
  -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;
}

.block-project:nth-child(even) .project_top .more {
  left: auto;
  right: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.block-project:nth-child(even) .project_top .more svg {
  margin-left: 5px;
}

.project_top {
  position: relative;
  padding: 40px 0 0;
  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;
}

.project_top .bg {
  width: 100vw;
  position: absolute;
  top: 0;
  left: -webkit-calc((100vw - 100%) / 2 * (-1));
  left: -moz-calc((100vw - 100%) / 2 * (-1));
  left: calc((100vw - 100%) / 2 * (-1));
  height: -webkit-calc(100% - 100px);
  height: -moz-calc(100% - 100px);
  height: calc(100% - 100px);
  background: -webkit-gradient(linear, right bottom, left top, from(#7be0ff), to(#e9fcff));
  background: -webkit-linear-gradient(bottom right, #7be0ff, #e9fcff);
  background: -moz-linear-gradient(bottom right, #7be0ff, #e9fcff);
  background: linear-gradient(to top left, #7be0ff, #e9fcff);
}

.project_top .more {
  width: 100%;
  position: absolute;
  left: 15px;
  font-size: 16px;
  bottom: 50px;
  cursor: pointer;
}

.project_top .more svg {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 1px;
}

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

.project_left {
  width: -webkit-calc(100% / 12 * 5 - 30px);
  width: -moz-calc(100% / 12 * 5 - 30px);
  width: calc(100% / 12 * 5 - 30px);
  margin: 0 15px 100px;
  position: relative;
  z-index: 1;
}

.project_left h3 {
  font-size: 32px;
  line-height: 140%;
  font-weight: 900;
  color: #0071BB;
  text-align: center;
  margin: 0 0 20px;
}

.project_left h3 a:hover {
  text-decoration: underline;
}

.project_left p,
.project_left ul,
.project_left ol {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 140%;
}

.project_left p b,
.project_left ul b,
.project_left ol b {
  color: #0099ff;
}

.project_left p em,
.project_left ul em,
.project_left ol em {
  font-style: italic;
}

.project_left li {
  margin-bottom: 10px;
}

.project_right {
  width: -webkit-calc(100% / 12 * 7 - 30px);
  width: -moz-calc(100% / 12 * 7 - 30px);
  width: calc(100% / 12 * 7 - 30px);
  margin: 0 15px;
}

.project_slider .owl-dots .owl-dot {
  margin: 0 5px;
}

.project_slider .owl-dots .owl-dot span {
  margin: 0;
}

.project_slider .owl-dots .owl-dot.active span {
  background: #0099ff;
}

.project_bottom {
  display: none;
  margin-top: 30px;
}

.project_bottom p,
.project_bottom ul,
.project_bottom ol {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 140%;
}

.project_bottom p b,
.project_bottom ul b,
.project_bottom ol b {
  color: #0099ff;
}

.project_bottom p em,
.project_bottom ul em,
.project_bottom ol em {
  font-style: italic;
}

.project_bottom li {
  margin-bottom: 10px;
}

.block-offer {
  position: relative;
  height: 100vh;
  width: 100vw;
  min-height: 400px;
}

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

#video-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  background-size: cover;
}

#video-bg > video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  #video-bg > video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.offer {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.offer_title {
  display: block;
  font-size: -webkit-calc(120vh / 6.6);
  font-size: -moz-calc(120vh / 6.6);
  font-size: calc(120vh / 6.6);
  letter-spacing: -webkit-calc(3vh / 6.6);
  letter-spacing: -moz-calc(3vh / 6.6);
  letter-spacing: calc(3vh / 6.6);
  color: #fff;
  font-weight: 900;
  line-height: -webkit-calc(160vh / 6.6);
  line-height: -moz-calc(160vh / 6.6);
  line-height: calc(160vh / 6.6);
}

.offer_text {
  color: #fff;
  font-size: -webkit-calc(28vh / 6.6);
  font-size: -moz-calc(28vh / 6.6);
  font-size: calc(28vh / 6.6);
}

.offer_btns {
  padding: -webkit-calc(40vh / 6.6) 0px 0px 0px;
  padding: -moz-calc(40vh / 6.6) 0px 0px 0px;
  padding: calc(40vh / 6.6) 0px 0px 0px;
  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;
}

.offer_btns .btn {
  padding: 20px 30px;
  margin: 0 15px;
}

.offer_btns .btn:nth-child(1) {
  display: none;
}

.offer_btns .btn:nth-child(2) {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

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

.partners {
  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;
  margin: 0 -10px;
}

.partner {
  max-width: -webkit-calc(100% / 8 - 20px);
  max-width: -moz-calc(100% / 8 - 20px);
  max-width: calc(100% / 8 - 20px);
  margin: 0 10px;
  text-align: center;
}

.partner img {
  max-height: 60px;
}

.block-info {
  margin: 70px 0 0;
  padding: 20px 0;
  position: relative;
}

.block-info .bg {
  width: 60vw;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: -webkit-gradient(linear, right bottom, left top, from(#7be0ff), to(#e9fcff));
  background: -webkit-linear-gradient(bottom right, #7be0ff, #e9fcff);
  background: -moz-linear-gradient(bottom right, #7be0ff, #e9fcff);
  background: linear-gradient(to top left, #7be0ff, #e9fcff);
}

.info {
  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;
}

.info_left {
  width: -webkit-calc(100% / 12 * 6);
  width: -moz-calc(100% / 12 * 6);
  width: calc(100% / 12 * 6);
}

.info_title {
  z-index: 2;
  font-size: 94px;
  line-height: 120%;
  font-weight: 900;
  color: #4865a3;
  position: relative;
  margin-right: -300px;
  margin-bottom: 50px;
  width: -webkit-calc(100% + 300px);
  width: -moz-calc(100% + 300px);
  width: calc(100% + 300px);
}

.info_texts {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-top: 1px solid #4865a3;
  margin-right: 30px;
  padding-top: 15px;
  position: relative;
}

.info_text {
  display: none;
  color: #868686;
  z-index: 2;
  position: relative;
  font-size: 24px;
  line-height: 130%;
}

.info_text b {
  color: #4865a3;
}

.info_text-active {
  display: block;
}

.info_right {
  padding-top: 130px;
  width: -webkit-calc(100% / 12 * 6);
  width: -moz-calc(100% / 12 * 6);
  width: calc(100% / 12 * 6);
}

.info_slider {
  width: 100%;
}

.info_slider .owl-dots .owl-dot {
  margin: 0 5px;
}

.info_slider .owl-dots .owl-dot span {
  margin: 0;
}

.info_slider .owl-dots .owl-dot.active span {
  background: #0099ff;
}

.info_slide {
  width: 100%;
}

.block-grids {
  margin-bottom: 100px;
}

.grids {
  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 -20px;
}

.grid {
  min-height: 150px;
  margin: 0 10px 20px;
  background: #eff8fe;
  padding: 20px 50px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.grid:hover {
  -webkit-transform: scale(0.95);
     -moz-transform: scale(0.95);
      -ms-transform: scale(0.95);
       -o-transform: scale(0.95);
          transform: scale(0.95);
}

.grid h3 {
  font-size: 24px;
  line-height: 130%;
  font-weight: 700;
  color: #4865a3;
  margin: 20px 0;
}

.grid p,
.grid ul,
.grid ol {
  font-size: 18px;
  line-height: 130%;
  color: #868686;
  margin-bottom: 10px;
  padding-right: 15px;
}

.grid p b,
.grid ul b,
.grid ol b {
  font-weight: 700;
}

.grid li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 5px;
}

.grid-1 {
  width: -webkit-calc(100% / 12 * 8 - 20px);
  width: -moz-calc(100% / 12 * 8 - 20px);
  width: calc(100% / 12 * 8 - 20px);
}

.grid-2 {
  width: -webkit-calc(100% / 12 * 4 - 20px);
  width: -moz-calc(100% / 12 * 4 - 20px);
  width: calc(100% / 12 * 4 - 20px);
}

.grid-3 {
  width: -webkit-calc(100% / 12 * 8 - 20px);
  width: -moz-calc(100% / 12 * 8 - 20px);
  width: calc(100% / 12 * 8 - 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;
}

.grid-3 .grid_right {
  width: 210px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.grid-4 {
  width: -webkit-calc(100% / 12 * 6 - 20px);
  width: -moz-calc(100% / 12 * 6 - 20px);
  width: calc(100% / 12 * 6 - 20px);
}

.footer_checkbox {
  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;
}

.footer_checkbox input {
  width: 14px;
  height: 14px;
  margin-right: 10px;
}

.footer_checkbox a {
  -webkit-transition: 0s;
  -o-transition: 0s;
  -moz-transition: 0s;
  transition: 0s;
  text-decoration: underline;
}

.footer_checkbox a:hover {
  text-decoration: none;
}

.footer_checkbox span {
  color: red;
}

.footer_checkbox input[type=checkbox]:checked + span {
  color: #000;
}

.agr030 {
  visibility: hidden;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
}

.block-post-news {
  padding: 20px 0 40px;
}

.post-news .popUp-promotions_title {
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0;
  width: 100%;
}

.post-news h2 {
  font-weight: 700;
  font-size: 20px;
  margin: 20px 0;
}

.post-news h3 {
  font-weight: 700;
  font-size: 18px;
  margin: 20px 0;
}

.post-news h3 strong {
  font-weight: 700;
}

.post-news p,
.post-news ul,
.post-news ol {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
  margin-top: 0;
}

.post-news ul,
.post-news ol {
  margin-left: 50px;
}

.post-news ul li {
  margin-left: 30px;
  list-style: disc;
  margin-bottom: 9px;
}

.post-news ol {
  padding: 0;
}

.post-news ol li {
  margin-left: 30px;
  margin-bottom: 9px;
}

.post-news a {
  color: #0099ff;
  text-decoration: underline;
}

.post-news a:hover {
  text-decoration: none;
}

.post-news em,
.post-news i {
  font-style: italic;
}

.post-news img {
  width: 360px;
  float: left;
  margin-right: 30px;
}

.post-news .popUp-news_content {
  width: -webkit-calc(100% - 360px - 20px);
  width: -moz-calc(100% - 360px - 20px);
  width: calc(100% - 360px - 20px);
}

.post-news .popUp-news_title {
  color: #000;
  font-size: 22px;
}

.post-news .popUp-news_date {
  margin-bottom: 20px;
}

.post-news .popUp-news_text {
  width: 100%;
}

.post-news .popUp-news_text strong {
  font-weight: 700;
}

.block-post-promo {
  min-height: 500px;
  padding: 20px 0 40px;
}

.promo-title {
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0;
  width: 100%;
}

.post-promo img {
  width: 360px;
  float: left;
  margin-right: 30px;
  margin-bottom: 25px;
}

.promo-text p, .promo-text ol {
  margin-bottom: 15px;
  line-height: 1.3;
}

.promo-text ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.promo-text a {
  display: flex;
  margin: 20px 0;
  width: 300px;
  padding: 10px 25px 
}

.popUp {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  display: none;
}

.popUp::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.popUp::-webkit-scrollbar-thumb {
  width: 0;
  height: 0;
}

.popUp_layer {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.popUp_content {
  margin: 11% auto;
  width: -webkit-calc(100% - 60px);
  width: -moz-calc(100% - 60px);
  width: calc(100% - 60px);
  max-width: 900px;
  position: relative;
  z-index: 99;
  background: #fff;
  border-radius: 10px;
  padding: 7px 22px 30px 22px;
}

.popUp_cross {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: #606061;
  color: #FFFFFF;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  height: 24px;
  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: 700;
  border-radius: 12px;
  box-shadow: 1px 1px 3px #000;
  cursor: pointer;
}

.popUp_cross:hover {
  background: #00d9ff;
  opacity: 0.6;
}

.popUp_title {
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  padding: 20px 0;
}

.popUp_text p,
.popUp_text li {
  padding: 10px 5px;
  font-size: 16px;
  line-height: 190%;
}

.popUp_text ul,
.popUp_text ol {
  padding: 0 0 0 20px;
  margin: 0 0 0 0px;
}

.popUp_text a {
  text-decoration: underline;
}

.popUp_text a:hover {
  color: #4865a3;
}

.popUp-news .popUp_content {
  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;
}

.popUp-news_img {
  width: 350px;
  height: 350px;
}

.popUp-news_img img {
  width: 100%;
  height: 100%;
}

.popUp-news_content {
  width: -webkit-calc(100% - 350px - 20px);
  width: -moz-calc(100% - 350px - 20px);
  width: calc(100% - 350px - 20px);
  margin-left: 20px;
}

.popUp-news_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 40px;
}

.popUp-news_date {
  font-size: 16px;
  color: #999;
}

.popUp-news_date span {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  color: #000;
}

.popUp-news_text {
  margin-top: 20px;
  background: #f2f2f2;
  padding: 25px 20px 50px 20px;
  border-radius: 0px 0px 30px 30px;
  line-height: 140%;
}

.popUp-news_text h2 {
  font-size: 24px;
  line-height: 140%;
  margin: 20px 0;
  font-weight: 700;
}

.popUp-news_text p {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
}

.popUp-news_text ul,
.popUp-news_text ol {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 10px;
  padding: 0;
}

.popUp-news_text li {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

.popUp-vakansii .popUp_content {
  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;
}

.popUp-vakansii_img {
  width: 350px;
  height: 350px;
}

.popUp-vakansii_img img {
  width: 100%;
  height: 100%;
}

.popUp-vakansii_content {
  width: -webkit-calc(100% - 350px - 20px);
  width: -moz-calc(100% - 350px - 20px);
  width: calc(100% - 350px - 20px);
  margin-left: 20px;
}

.popUp-vakansii_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 20px;
  border-bottom: 2px solid #f2f2f2;
  width: 100%;
}

.popUp-vakansii_name {
  font-size: 16px;
  color: #999;
  margin-bottom: 30px;
}

.popUp-vakansii_name span {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  color: #000;
}

.popUp-vakansii_date {
  font-size: 16px;
  color: #999;
  margin-bottom: 30px;
}

.popUp-vakansii_date span {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  color: #000;
}

.popUp-vakansii_text {
  margin-top: 20px;
  background: #f2f2f2;
  padding: 25px 20px 50px 20px;
  border-radius: 0px 0px 30px 30px;
  line-height: 140%;
}

.popUp-vakansii_text h2 {
  font-size: 24px;
  line-height: 140%;
  margin: 20px 0;
  font-weight: 700;
}

.popUp-vakansii_text p {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
}

.popUp-vakansii_text ul,
.popUp-vakansii_text ol {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 10px;
  padding: 0;
}

.popUp-vakansii_text li {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

.popUp-form .popUp_content {
  max-width: 400px;
  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-top: 30px;
}

.popUp-form_title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

.popUp-form_inp {
  max-width: 300px;
  width: 100%;
  display: block;
  background-color: #f3f3f3;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  padding: 10px;
  margin: 0 0 20px;
  font-size: 16px;
  font-family: 'Circe';
}

.popUp-form_file {
  background: none;
  max-width: 300px;
  width: 100%;
}

.popUp-form .btn {
  margin: 20px auto 0;
}

.popUp-promotions .popUp_content {
  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;
}

.popUp-promotions_img {
  width: 350px;
  height: 350px;
}

.popUp-promotions_img img {
  width: 100%;
  height: 100%;
}

.popUp-promotions_content {
  width: -webkit-calc(100% - 350px - 20px);
  width: -moz-calc(100% - 350px - 20px);
  width: calc(100% - 350px - 20px);
  margin-left: 20px;
}

.popUp-promotions_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 20px;
  border-bottom: 2px solid #f2f2f2;
  width: 100%;
}

.popUp-promotions_name {
  font-size: 16px;
  color: #999;
  margin-bottom: 30px;
}

.popUp-promotions_name span {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  color: #000;
}

.popUp-promotions_date {
  font-size: 16px;
  color: #999;
  margin-bottom: 30px;
}

.popUp-promotions_date span {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  color: #000;
}

.popUp-promotions_phone {
  font-size: 16px;
  color: #999;
  margin-bottom: 30px;
}

.popUp-promotions_phone span {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  color: #000;
}

.popUp-promotions_text {
  margin-top: 20px;
  background: #f2f2f2;
  padding: 25px 20px 50px 20px;
  border-radius: 0px 0px 30px 30px;
  line-height: 140%;
  width: 100%;
}

.popUp-promotions_text h2 {
  font-size: 24px;
  line-height: 140%;
  margin: 20px 0;
  font-weight: 700;
}

.popUp-promotions_text p {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
}

.popUp-promotions_text ul,
.popUp-promotions_text ol {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 10px;
  padding: 0;
}

.popUp-promotions_text li {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

.popUp-promotions_btn a {
  display: inline-block;
}

.popUp-buy .popUp_content {
  max-width: 350px;
  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-top: 30px;
}

.popUp-buy_title {
  font-size: 24px;
  font-weight: 700;
  width: 100%;
  text-align: center;
}

.block-tarifs {
  padding-bottom: 100px;
}

.tarifs_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  column-gap: 10px;
  -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;
  padding: 24px 0 50px;
}

.tarifs_link {
  margin: 0 20px;
  font-weight: 600;
  font-size: 30px;
  color: #424242;
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}

.tarifs_link-active {
  border-bottom: 3px solid #0099FF;
  color: #0099FF;
}

.noholy_desc {
  padding-bottom:30px; text-align:center; font-size: 21px; 
}

.tarif_title {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: #424242;
  margin: 50px 0 30px;
}

.tarif {
  background: #EFF8FE;
  border-radius: 30px;
  padding: 55px 40px 50px;
  margin-bottom: 24px;
  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;
}

.tarif-lgotny {
  padding-bottom: 70px;
  -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.tarif_img {
  width: 200px;
  text-align: center;
  margin-right: 50px;
  position: relative;
}

.tarif_img img {
  display: none;
}

.tarif_cols {
  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;*/
  -ms-flex-pack: distribute;
        justify-content: space-around;
  width: -webkit-calc(100% - 250px);
  width: -moz-calc(100% - 250px);
  width: calc(100% - 250px);
}

.tarif-col {
  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;
  width: 200px;
}

.tarif-col_img {
  margin-bottom: 15px;
  text-align: center;
  max-height: 148px;
  position: relative;
}

.tarif-col_img img {
  height: 100%;
  width: auto;
  display: none;
}

.tarif-col_title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.tarif-col_desc {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #868686;
  margin-top: -3px;
  margin-bottom: 15px;
}

.tarif-col_price {
  margin-top: auto;
  font-weight: 600;
  font-size: 26px;
  line-height: 35px;
  text-align: center;
  color: #4865A3;
  margin-bottom: 25px;
  display: none;
}

.tarif-col_price span {
  font-weight: 400;
  display: block;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  -webkit-text-decoration-line: line-through;
     -moz-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #868686;
  height: 27px;
}

.tarif-col_price-active {
  display: block;
}

.tarif-col_btn {
  font-size: 16px;
  text-transform: initial;
  width: 100%;
  max-width: 160px;
}

.tarif_img-active {
  display: inline !important;
}

.tarif-big .tarif_cols {
  width: -webkit-calc(100% + 30px);
  width: -moz-calc(100% + 30px);
  width: calc(100% + 30px);
  margin: 0 -15px;
}

.tarif-big .tarif-col {
  margin: 0 15px;
  min-width: 160px;
}

.tarif-big .tarif-col:nth-child(1) {
  width: 160px;
}

.tarif-big .tarif-col:nth-child(2) {
  width: 220px;
}

.tarif-big .tarif-col:nth-child(3) {
  width: 220px;
}

.tarif-big .tarif-col:nth-child(4) {
  width: 300px;
}

.tarif-two .tarif_cols {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
     -moz-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.tarif-one {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tarif-one .tarif_cols {
  width: 160px;
  margin: 0 80px 0 0;
}

.tarif-one .tarif_cols .tarif-col {
  width: 100%;
  margin: 0;
}

.tarif-one_inf {
  width: -webkit-calc(100% - 200px - 50px - 160px - 80px);
  width: -moz-calc(100% - 200px - 50px - 160px - 80px);
  width: calc(100% - 200px - 50px - 160px - 80px);
  font-size: 18px;
  line-height: 24px;
}

.tarif-one_inf p {
  margin-bottom: 15px;
}

.tarif_time {
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tarif_time span {
  display: none;
  background: #fff;
  padding: 5px 10px;
  border-radius: 30px;
  line-height: 1.4;
  min-width: max-content;
}

.tarif_time .active {
  display: block;
}

.tarif_time-sm {
  font-size: 11px;
}

.tarif_description {
  display: block;
  text-align: center;
  margin-top: -80px;
}

.tarif-lgotny .tarif_description {
  width: 100%;
  margin-top: 10px;
}

.tarif_description p {
  text-align: center;
  margin-bottom: 15px;
}

.block-post {
  padding: 40px 0;
}

.post h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.post h3 {
  font-weight: 700;
  font-size: 18px;
  margin: 20px 0;
}

.post h3 strong {
  font-weight: 700;
}

.post p,
.post ul {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
}

.post li {
  margin-left: 30px;
  list-style: disc;
  margin-bottom: 15px;
}

.post a {
  color: #0099ff;
  text-decoration: underline;
}

.post a:hover {
  text-decoration: none;
}

.block-rules {
  padding: 40px 0;
}

.rules figure {
  margin: 0;
}

.rules img {
  width: 100%;
}

.rules h1,
.rules h2 {
  padding: 25px 0 20px;
  font-size: 22px;
  line-height: 140%;
}

.rules p {
  font-size: 18px;
  line-height: 140%;
}

.rules .doc {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  color: #0099ff;
  text-decoration: underline;
}

.rules .doc:hover {
  text-decoration: none;
}

.rules .doc img {
  width: auto;
  max-width: 100px;
}

.rules .doc span {
  display: block;
  margin-top: 15px;
}

.awards {
  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: 40px -15px;
}

.award {
  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;
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
  margin: 0 15px 30px;
  border: 1px solid #000;
}

.award a {
  overflow: hidden;
}

.award a img {
  margin-bottom: -4px;
}

.block-news {
  padding: 40px 0;
}

.news {
  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;
}

.news-item {
  margin: 0 15px 50px;
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
  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;
}

.news-item .popUp-news_text {
  display: none;
}

.news-item_img {
  width: 250px;
  height: 250px;
}

.news-item_img img {
  width: 100%;
  height: 100%;
}

.news-item_content {
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  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: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-calc(100% - 250px - 20px);
  width: -moz-calc(100% - 250px - 20px);
  width: calc(100% - 250px - 20px);
  margin-left: 20px;
}

.news-item_date {
  font-size: 14px;
  margin-bottom: 20px;
  color: #0099ff;
}

.news-item_title {
  color: #0099ff;
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.news-item_text {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}

.news-item_place {
  font-size: 14px;
  color: #06b4e4;
  margin-top: auto;
}

.about-item_wave {
  margin-bottom: 30px;
}

.vakansii_text {
  margin: 25px 0 30px;
  font-size: 18px;
  line-height: 140%;
}

.vakansii_text a {
  color: #0099ff;
  text-decoration: underline;
}

.vakansii_text a:hover {
  text-decoration: none;
}

.vakansii {
  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 -15px -30px;
}

.vakansii-item {
  width: -webkit-calc(100% / 4 - 30px);
  width: -moz-calc(100% / 4 - 30px);
  width: calc(100% / 4 - 30px);
  margin: 0 15px 50px;
  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;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #000;
  overflow: hidden;
  cursor: pointer;
}

.vakansii-item_img {
  width: 100%;
}

.vakansii-item_title {
  padding: 10px;
  font-size: 16px;
}

.vakansii-item_inf {
  margin-top: auto;
  padding: 10px;
  font-size: 16px;
}

.vakansii-item .popUp-vakansii_date {
  display: none;
}

.vakansii-item .popUp-vakansii_name {
  display: none;
}

.vakansii-item .popUp-vakansii_text {
  display: none;
}

.contacts {
  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: 40px -15px 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contacts_col {
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
  margin: 0 15px 80px;
}

.contacts_col p,
.contacts_col a {
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 20px;
  display: block;
}

.contacts_col p > a,
.contacts_col a > a {
  margin: 0;
}

.contacts_col a {
  color: #0099ff;
  text-decoration: underline;
}

.contacts_col h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 20px;
}

.contacts_map {
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
}

.contacts_map iframe {
  width: 100%;
  height: 100%;
}

.contacts_icons {
  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: 440px;
  margin: 0 -15px -30px;
}

.contacts_icon {
  margin: 0 15px 30px;
  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-size: 14px;
  max-width: 190px;
  width: -webkit-calc(100% / 2 - 30px);
  width: -moz-calc(100% / 2 - 30px);
  width: calc(100% / 2 - 30px);
  line-height: 140%;
}

.contacts_icon img {
  width: 30px;
  height: 60px;
  margin-right: 10px;
}

.contacts-form {
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  padding: 25px 30px 40px;
  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;
}

.contacts-form_title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}

.contacts-form_inp {
  width: 100%;
  display: block;
  background-color: #f3f3f3;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  padding: 10px;
  margin: 0 0 20px;
  font-size: 16px;
  font-family: 'Circe';
}

.contacts-form_btn {
  background: #1fbce5;
  border: none;
  margin: 0 auto;
  padding: 15px 30px;
  width: 100%;
  max-width: 250px;
}

.block-promotions {
  padding: 40px 0 80px;
}

.block-promotions .btn {
  max-width: 300px;
  margin: 0 auto;
}

.block-promotions h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 40px;
}

.block-promotions h2 {
  color: #4865a3;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 28px;
  border-bottom: solid 2px #f2f2f2;
}

.promotion-main {
  overflow: hidden;
  cursor: pointer;
}

.promotion-main:hover img {
  opacity: 0.7;
}

.promotion-main img {
  width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
}

.promotions-wrap {
  position: relative;
}

.promotions_slider-arrow {
  position: absolute;
  z-index: 99;
  top: 130px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.promotions_slider-arrow-left {
  left: -30px;
}

.promotions_slider-arrow-right {
  right: -30px;
}

.promotions-slider {
  margin: 30px 0;
}

.promotions-slider .owl-dots .owl-dot.active span {
  background: #0099ff;
}

.promotions-slide {
  background: #fff;
  border-radius: 0 0 10px 10px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}

.promotions-slide .popUp-promotions_text,
.promotions-slide .popUp-promotions_name,
.promotions-slide .promotions-slide_phone,
.promotions-slide .promotions-slide_btn {
  display: none;
}

.promotions-slide:hover {
  background: #06b4e4;
}

.promotions-slide:hover .promotions-slide_content {
  opacity: 1;
}

.promotions-slide_content {
  padding: 10px;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.promotions-slide_title {
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 10px;
}

.promotions-slide_bottom {
  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;
  font-size: 12px;
  margin-top: auto;
}

.promotions-slide-purple:hover {
  background: #6f3e95;
}

.promotions-slide-darkgreen:hover {
  background: #1a3c5c;
}

.promotions-slide-pink:hover {
  background: #c695c7;
}

.promotions-slide-green:hover {
  background: #26afa8;
}

.promotions-slide-brown:hover {
  background: #88181b;
}

.block-hide {
  display: none;
}

.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.block-rest-top {
  background: #e1f7ff;
  padding: 30px 0px 0px 0px;
}

.rest-gallery {
  margin-top: 30px;
}

.rest-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;
}

.rest-top_item {
  position: relative;
  font-size: 24px;
  font-weight: 900;
  margin: 0 20px 10px;
  cursor: pointer;
}

.rest-top_item h2 {
  position: relative;
}

.rest-top_item:nth-child(1)::before {
  content: '';
  height: 102px;
  width: 250px;
  position: absolute;
  display: block;
  top: -70px;
  right: -40px;
  -webkit-transform: rotate(-190deg);
     -moz-transform: rotate(-190deg);
      -ms-transform: rotate(-190deg);
       -o-transform: rotate(-190deg);
          transform: rotate(-190deg);
  background: #70beff;
  border-radius: 82% 22% 29% 71%;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.rest-top_item:nth-child(2) {
  text-align: right;
}

.rest-top_item:nth-child(2)::before {
  content: '';
  display: block;
  height: 102px;
  width: 250px;
  position: absolute;
  top: -70px;
  left: -40px;
  -webkit-transform: rotate(-10deg);
     -moz-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
       -o-transform: rotate(-10deg);
          transform: rotate(-10deg);
  background: #b6abf9;
  border-radius: 71% 29% 22% 82%;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.rest-top_item-active::before {
  opacity: 1 !important;
}

.rest-top_nav {
  display: none;
  -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;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  margin-top: 15px;
  padding-bottom: 10px;
}

.rest-top_nav a {
  font-size: 16px;
  margin: 10px;
  padding: 0 0 2px;
  border-bottom: 1px dotted #000;
  white-space: nowrap;
}

.rest-top_nav a:hover {
  color: #0099ff;
  border-bottom: 1px dotted transparent;
}

.rest-top_nav-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.rest {
  margin: 20px 0;
  display: none;
}

.rest_title {
  padding: 10px 0 10px 15px;
  font-size: 20px;
  color: #0099ff;
}

.rest_table {
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 120%;
}

.rest_row {
  padding: 5px 0;
  border-top: 1px solid #b0b0b0;
  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;
}

.rest_name {
  width: -webkit-calc(100% - 150px - 105px);
  width: -moz-calc(100% - 150px - 105px);
  width: calc(100% - 150px - 105px);
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.rest_weight {
  width: 150px;
  padding: 10px 15px;
}

.rest_price {
  width: 105px;
  padding: 10px 15px;
  font-weight: 700;
}

.rest_content {
  width: 100%;
  padding: 10px 15px;
  max-width: -webkit-calc(100% - 150px - 105px);
  max-width: -moz-calc(100% - 150px - 105px);
  max-width: calc(100% - 150px - 105px);
}

.rest-active {
  display: block;
}

.block-rewards {
  margin: 50px 0;
}

.rewards-title {
  max-width: 860px;
  margin: 0 auto 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;
}

.rewards-title p {
  font-size: 20px;
  line-height: 24px;
  margin-left: 30px;
}

.rewards-title img {
  width: 140px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.rewards {
  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;
}

.rewards .owl-dots .owl-dot.active span {
  background: #0099ff;
}

.rewards-item {
  width: 100%;
}

.rewards-item_img {
  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;
  height: 200px;
  position: relative;
}

.rewards-item_img img {
  max-height: 180px;
  width: auto !important;
}

.rewards-item_img:hover::before {
  opacity: 1;
}

.rewards-item_img:hover .rewards-item_text {
  opacity: 1;
}

.rewards-item_img::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 28, 67, 0.85);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}

.rewards-item_img-bg {
  background: #d1edff;
}

.rewards-item_text {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 25px;
  right: 25px;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  padding-top: 15px;
  border-top: 6px solid #e8eff4;
  font-weight: 600;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.rewards-wrap .promotions_slider-arrow {
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.rewards-wrap .promotions_slider-arrow-left {
  left: -35px;
}

.rewards-wrap .promotions_slider-arrow-right {
  right: -35px;
}

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: 1260px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.disp-none {
  display: none;
}

.disp-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
    -ms-flex-pack: center;
      justify-content: center;
}

@media screen and (max-width: 1440px) {
  .rewards-wrap .promotions_slider-arrow-left {
    left: -30px;
  }

  .rewards-wrap .promotions_slider-arrow-right {
    right: -30px;
  }
}

@media screen and (max-width: 1200px) {
  .page-title {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .page-nav {
    margin-top: 10px;
    width: 100%;
    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-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }

  .page-nav a {
    margin-left: 0;
  }

  .about-main_col iframe {
    height: 300px;
  }

  .header_nav li ul {
    padding: 15px 30px;
  }

  .header_nav li ul li {
    font-size: 14px;
  }

  .footer_col {
    width: -webkit-calc(100% / 3 - 30px);
    width: -moz-calc(100% / 3 - 30px);
    width: calc(100% / 3 - 30px);
    margin-bottom: 50px;
  }

  .footer_col:nth-child(5) {
    width: -webkit-calc(100% / 3 - 30px);
    width: -moz-calc(100% / 3 - 30px);
    width: calc(100% / 3 - 30px);
    margin-bottom: 50px;
  }

  .footer_col-big {
    margin-top: 0;
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
  }

  .footer_socs {
    margin-top: 40px;
  }

  .info_title {
    font-size: 80px;
  }

  .grid-1 {
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .grid-2 {
    width: -webkit-calc(100% / 12 * 6 - 20px);
    width: -moz-calc(100% / 12 * 6 - 20px);
    width: calc(100% / 12 * 6 - 20px);
  }

  .grid-3 {
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .grid-4 {
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .tarif_img {
    margin-right: 30px;
  }

  .tarif_cols {
    width: -webkit-calc(100% - 220px);
    width: -moz-calc(100% - 220px);
    width: calc(100% - 220px);
  }

  .tarif-col_img {
    max-height: 127px;
  }

  .tarif-one .tarif_cols {
    margin: 0 30px 0 0;
  }

  .tarif-one_inf {
    width: -webkit-calc(100% - 200px - 30px - 160px - 30px);
    width: -moz-calc(100% - 200px - 30px - 160px - 30px);
    width: calc(100% - 200px - 30px - 160px - 30px);
  }

  /*.tarif_description {
    margin-left: 280px;
  }*/

  .news-item_img {
    width: 200px;
    height: 200px;
  }

  .news-item_content {
    width: -webkit-calc(100% - 200px - 15px);
    width: -moz-calc(100% - 200px - 15px);
    width: calc(100% - 200px - 15px);
    margin-left: 15px;
  }

  .news-item_date {
    margin-bottom: 15px;
    font-size: 13px;
  }

  .news-item_title {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .news-item_text {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .news-item_place {
    font-size: 13px;
  }

  .promotions_slider-arrow {
    top: 90px;
  }

  .rest-top_nav a {
    font-size: 14px;
    margin: 0 7.5px;
  }

  .wrapper {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1024px) {
  .header_nav li {
    font-size: 14px;
    margin: 0 10px;
  }

  .info_title {
    font-size: 68px;
  }

  .info_text {
    font-size: 20px;
  }

  .info_right {
    padding-top: 100px;
  }

  .tarif {
    padding: 30px;
  }

  .tarif-lgotny {
    padding-bottom: 55px;
  }

  .tarif-col_img {
    max-height: 112px;
  }

  .tarif-one_inf {
    font-size: 16px;
  }

  .tarif-one_inf p {
    margin-bottom: 10px;
  }

  /*.tarif_description {
    margin-left: 250px;
  }*/

  .promotions_slider-arrow {
    top: 120px;
  }

  .rest-top_nav a {
    margin: 0 5px;
  }

  .rewards-item_text {
    top: 15px;
    left: 15px;
    right: 15px;
  }

  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .wrapper {
    max-width: 900px;
  }
}

@media screen and (max-width: 920px) {
  .page-title h1,
  .page-title h2 {
    font-size: 24px;
  }

  .page-nav {
    display: none;
  }

  .about-main {
    margin: 0 -15px 30px;
  }

  .about-main_col {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
    margin: 30px 15px 0;
  }

  .about-item_left {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .about-item_right {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .about-item_table {
    max-width: 540px;
  }

  .about-item_table .about-main-gr {
    max-width: 250px;
  }

  .about-item-last .about-item_left {
    padding-bottom: 0;
  }

  .header {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .header_logo {
    margin-right: auto;
  }

  .header_nav {
    display: none;
  }

  .header_burger {
    display: block;
  }

  .footer_col {
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
  }

  .footer_col:nth-child(5) {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
       -moz-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
  }

  .block-project:nth-child(even) .project_top .more {
    display: block;
  }

  .project_top {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .project_top .more {
    position: static;
    margin: 15px 15px 0;
  }

  .project_left {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    margin-bottom: 20px;
  }

  .project_right {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .block-partners {
    margin: 60px 0;
  }

  .partners {
    margin: 0 -10px -20px;
  }

  .partner {
    width: -webkit-calc(100% / 4 - 20px);
    width: -moz-calc(100% / 4 - 20px);
    width: calc(100% / 4 - 20px);
    max-width: none;
    margin: 0 10px 20px;
  }

  .info_title {
    margin-bottom: 30px;
  }

  .info_text {
    font-size: 18px;
  }

  .block-grids {
    margin-bottom: 60px;
  }

  .grid-2 {
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .post-news img {
    width: 250px;
  }

  .post-news .popUp-news_content {
    width: -webkit-calc(100% - 250px - 20px);
    width: -moz-calc(100% - 250px - 20px);
    width: calc(100% - 250px - 20px);
  }

  .popUp-news_img {
    width: 250px;
    height: 250px;
  }

  .popUp-news_content {
    width: -webkit-calc(100% - 250px - 20px);
    width: -moz-calc(100% - 250px - 20px);
    width: calc(100% - 250px - 20px);
  }

  .popUp-vakansii_img {
    width: 250px;
    height: 250px;
  }

  .popUp-vakansii_content {
    width: -webkit-calc(100% - 250px - 20px);
    width: -moz-calc(100% - 250px - 20px);
    width: calc(100% - 250px - 20px);
  }

  .popUp-promotions_img {
    width: 250px;
    height: 250px;
  }

  .popUp-promotions_content {
    width: -webkit-calc(100% - 250px - 20px);
    width: -moz-calc(100% - 250px - 20px);
    width: calc(100% - 250px - 20px);
  }

  .tarif {
    padding: 30px 15px;
  }
  .tarif-lgotny {
    padding-bottom: 70px;
  }

  .tarif_img {
    width: 150px;
    margin-right: 15px;
  }

  .tarif_cols {
    width: -webkit-calc(100% - 135px);
    width: -moz-calc(100% - 135px);
    width: calc(100% - 135px);
    margin: 0 -15px;
  }

  .tarif-col {
    margin: 0 15px;
    width: -webkit-calc(100% / 3 - 30px);
    width: -moz-calc(100% / 3 - 30px);
    width: calc(100% / 3 - 30px);
  }

  .tarif-col_title {
    font-size: 14px;
    line-height: 20px;
  }

  .tarif-col_desc {
    font-size: 14px;
    line-height: 20px;
  }

  .tarif-col_price {
    font-size: 22px;
  }

  .tarif-col_price span {
    font-size: 16px;
    line-height: 20px;
  }

  .tarif-big .tarif_cols {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0 -15px -40px;
  }

  .tarif-big .tarif-col {
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
    margin: 0 15px 40px;
  }

  .tarif-big .tarif-col:nth-child(1) {
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
  }

  .tarif-big .tarif-col:nth-child(2) {
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
  }

  .tarif-big .tarif-col:nth-child(3) {
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
  }

  .tarif-big .tarif-col:nth-child(4) {
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
  }

  .tarif_description {
    margin-top: -85px;
  }

  .tarif_description p {
    margin-bottom: 10px;
  }

  .news-item {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
  }

  .news-item_img {
    width: 250px;
    height: 250px;
  }

  .news-item_content {
    width: -webkit-calc(100% - 250px - 15px);
    width: -moz-calc(100% - 250px - 15px);
    width: calc(100% - 250px - 15px);
  }

  .post-promo img {
    float: none;
    margin-right: 0px;    
  }

  .vakansii-item {
    width: -webkit-calc(100% / 3 - 30px);
    width: -moz-calc(100% / 3 - 30px);
    width: calc(100% / 3 - 30px);
  }

  .promotions_slider-arrow {
    top: 90px;
  }

  .rest-top_nav {
    overflow-x: scroll;
    padding: 0 10px 10px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .rewards-title p {
    font-size: 16px;
    line-height: 20px;
  }

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

  .wrapper {
    max-width: 720px;
  }
}

@media screen and (max-width: 768px) {
  .about-main_col h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .about-item_title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .footer_col {
    margin-bottom: 30px;
  }

  .footer_col:nth-child(7) {
    margin-top: 30px;
  }

  .footer_col-big {
    font-size: 14px;
  }

  .footer_col-big a {
    font-size: 14px;
  }

  .footer_title {
    font-size: 14px;
  }

  .footer_menu li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .seo h3 {
    font-size: 24px;
  }

  .project_left h3 {
    font-size: 24px;
  }

  .offer_title {
    font-size: -webkit-calc(120vw / 6.6);
    font-size: -moz-calc(120vw / 6.6);
    font-size: calc(120vw / 6.6);
    letter-spacing: -webkit-calc(3vw / 6.6);
    letter-spacing: -moz-calc(3vw / 6.6);
    letter-spacing: calc(3vw / 6.6);
    line-height: -webkit-calc(160vw / 6.6);
    line-height: -moz-calc(160vw / 6.6);
    line-height: calc(160vw / 6.6);
  }

  .offer_text {
    font-size: -webkit-calc(28vw / 6.6);
    font-size: -moz-calc(28vw / 6.6);
    font-size: calc(28vw / 6.6);
  }

  .offer_btns .btn {
    padding: 15px;
    margin: 0 10px;
  }

  .block-info .bg {
    width: 75vw;
  }

  .info {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .info_left {
    width: 100%;
  }

  .info_title {
    font-size: 55px;
  }

  .info_right {
    width: 100%;
    padding-top: 30px;
  }

  .grid-3 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .grid-3 .grid_right {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .rules h1,
  .rules h2 {
    font-size: 18px;
  }

  .rules p {
    font-size: 16px;
  }

  .contacts_col {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
    margin-bottom: 50px;
  }

  .contacts_map {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    height: 400px;
  }

  .promotions_slider-arrow {
    display: none;
  }

  .promotions-slide_content {
    display: none;
  }

  .rest-top_item {
    font-size: 20px;
  }

  .rest-top_item:nth-child(1)::before {
    width: 200px;
    top: -80px;
  }

  .rest-top_item:nth-child(2)::before {
    width: 200px;
    top: -70px;
    left: -20px;
  }

  .tarif_description {
    padding: 0 25px;
    margin-top: -100px;
  }

  .wrapper {
    max-width: 600px;
  }
}

@media (max-width: 576px) {
  .header-top_link:first-child {
    display: none;
  }

  .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) {
  .page-title {
    padding: 15px 0 5px;
  }

  .about-main_col p {
    font-size: 14px;
  }

  .corner {
    display: none;
  }

  .about-main-award {
    height: 140px;
  }

  .about-item_text p {
    font-size: 14px;
  }

  main {
    margin-top: 98px;
  }

  .main-scroll {
    margin-top: 68px;
  }

  .header-hide {
    -webkit-transform: translateY(-30px);
       -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
         -o-transform: translateY(-30px);
            transform: translateY(-30px);
  }

  .header-top {
    height: 30px;
  }

  .header-top_link {
    margin: 0 10px -2px;
  }

  .header-top_time {
    margin: 0 10px -2px;
  }

  .header-top_drop-wrap {
    top: 20px;
    width: 200px;
    padding: 5px 15px 25px 15px;
    right: auto;
    left: 0;
  }

  .header-top_drop p {
    font-size: 14px;
  }

  .header-top_phone {
    font-size: 12px;
  }

  .header_btn {
    display: none;
  }

  .footer_col:nth-child(4) {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .footer_col:nth-child(5) {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .footer_col:nth-child(7) {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    margin-top: 0;
  }

  .seo p,
  .seo ul,
  .seo ol {
    font-size: 16px;
  }

  .project_left p,
  .project_left ul,
  .project_left ol {
    font-size: 16px;
  }

  .project_bottom p,
  .project_bottom ul,
  .project_bottom ol {
    font-size: 16px;
  }

  .offer_btns .btn:nth-child(1) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .partner img {
    max-height: 40px;
  }

  .info_title {
    font-size: 40px;
  }

  .info_text {
    font-size: 16px;
  }

  .grid {
    padding: 20px 30px;
  }

  .grid h3 {
    font-size: 18px;
    margin: 15px 0;
  }

  .grid p,
  .grid ul,
  .grid ol {
    font-size: 16px;
  }

  .post-news ul,
  .post-news ol {
    margin-left: 0;
  }

  .post-news img {
    width: 100%;
    margin: 0 0 20px;
  }

  .post-news .popUp-news_content {
    width: 100%;
  }

  .popUp-news .popUp_content {
    padding: 30px 15px;
  }

  .popUp-news_img {
    width: 100%;
    height: auto;
  }

  .popUp-news_content {
    width: 100%;
    margin: 20px 0 0;
  }

  .popUp-news_title {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .popUp-news_date {
    font-size: 13px;
  }

  .popUp-news_date span {
    font-size: 14px;
  }

  .popUp-news_text {
    padding: 20px 15px;
  }

  .popUp-news_text h2 {
    font-size: 18px;
  }

  .popUp-news_text p {
    font-size: 14px;
  }

  .popUp-news_text ul,
  .popUp-news_text ol {
    font-size: 14px;
  }

  .popUp-vakansii .popUp_content {
    padding: 30px 15px;
  }

  .popUp-vakansii_img {
    width: 100%;
    height: auto;
  }

  .popUp-vakansii_content {
    width: 100%;
    margin: 20px 0 0;
  }

  .popUp-vakansii_title {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .popUp-vakansii_name {
    font-size: 13px;
  }

  .popUp-vakansii_name span {
    font-size: 14px;
  }

  .popUp-vakansii_date {
    font-size: 13px;
  }

  .popUp-vakansii_date span {
    font-size: 14px;
  }

  .popUp-vakansii_text {
    padding: 20px 15px;
  }

  .popUp-vakansii_text h2 {
    font-size: 18px;
  }

  .popUp-vakansii_text p {
    font-size: 14px;
  }

  .popUp-vakansii_text ul,
  .popUp-vakansii_text ol {
    font-size: 14px;
  }

  .popUp-form .popUp_content {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    padding: 30px 15px;
  }

  .popUp-form_title {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .popUp-promotions .popUp_content {
    padding: 30px 15px;
  }

  .popUp-promotions_img {
    width: 100%;
    height: auto;
  }

  .popUp-promotions_content {
    width: 100%;
    margin: 20px 0 0;
  }

  .popUp-promotions_title {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .popUp-promotions_name {
    font-size: 13px;
  }

  .popUp-promotions_name span {
    font-size: 14px;
  }

  .popUp-promotions_date {
    font-size: 13px;
  }

  .popUp-promotions_date span {
    font-size: 14px;
  }

  .popUp-promotions_phone {
    font-size: 13px;
  }

  .popUp-promotions_phone span {
    font-size: 14px;
  }

  .popUp-promotions_text {
    padding: 20px 15px;
  }

  .popUp-promotions_text h2 {
    font-size: 18px;
  }

  .popUp-promotions_text p {
    font-size: 14px;
  }

  .popUp-promotions_text ul,
  .popUp-promotions_text ol {
    font-size: 14px;
  }

  .popUp-buy .popUp_content {
    width: -webkit-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    padding: 30px 15px;
  }

  .popUp-buy_title {
    font-size: 18px;
  }

  .tarifs_top {
    padding-bottom: 35px;
  }

  .tarifs_link {
    font-size: 21px;
    margin: 0;
  }

  .noholy_desc {
    font-size: 18px;
  }

  .tarif {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .tarif_img {
    width: 100%;
    margin: 0 0 30px;
  }

  .tarif_img img {
    max-height: 150px;
  }

  .tarif_cols {
    width: -webkit-calc(100% + 30px);
    width: -moz-calc(100% + 30px);
    width: calc(100% + 30px);
  }

  .tarif-one .tarif_cols {
    width: 100%;
    margin: 0;
  }

  .tarif-one_inf {
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    text-align: center;
  }

  .news-item_img {
    width: 200px;
    height: 200px;
  }

  .news-item_content {
    width: -webkit-calc(100% - 200px - 15px);
    width: -moz-calc(100% - 200px - 15px);
    width: calc(100% - 200px - 15px);
  }

  .vakansii_text {
    font-size: 16px;
  }

  .vakansii-item {
    width: -webkit-calc(100% / 2 - 30px);
    width: -moz-calc(100% / 2 - 30px);
    width: calc(100% / 2 - 30px);
  }

  .contacts_col p,
  .contacts_col a {
    font-size: 16px;
  }

  .contacts_col h2 {
    font-size: 18px;
  }

  .contacts_icon {
    -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;
    text-align: center;
  }

  .contacts_icon img {
    margin: 0 0 10px;
  }

  .block-promotions h3 {
    font-size: 16px;
  }

  .promotion-main {
    display: none;
  }

  .rest_title {
    font-size: 18px;
    padding: 10px 0 10px 5px;
  }

  .rest_table {
    font-size: 14px;
  }

  .rest_name {
    width: -webkit-calc(100% - 80px - 80px);
    width: -moz-calc(100% - 80px - 80px);
    width: calc(100% - 80px - 80px);
    padding: 10px 5px;
  }

  .rest_weight {
    width: 80px;
    padding: 10px 5px;
  }

  .rest_price {
    width: 80px;
    padding: 10px 5px;
  }

  .rest_content {
    padding: 10px 5px;
    max-width: none;
  }

  .rewards-title {
    margin: 0 auto 50px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .rewards-title p {
    width: 100%;
    margin: 20px 0 0;
  }
}

@media screen and (max-width: 450px) {
  .tarif_cols {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .tarif-col {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
    margin: 0 15px 30px;
  }

  .tarif-col_price {
    margin-bottom: 10px;
  }

  .tarif-col_price span {
    height: auto;
  }

  .tarif-big .tarif-col:nth-child(1) {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
  }

  .tarif-big .tarif-col:nth-child(2) {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
  }

  .tarif-big .tarif-col:nth-child(3) {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
  }

  .tarif-big .tarif-col:nth-child(4) {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
  }

  .news-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;
  }

  .news-item_img {
    width: 100%;
    height: auto;
  }

  .news-item_content {
    width: 100%;
    margin: 15px 0 0;
  }

  .vakansii-item {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
  }
}

@media screen and (max-width: 415px) {
  .page-title h1,
  .page-title h2 {
    font-size: 18px;
  }

  .about-main_col h2 {
    font-size: 18px;
  }

  .about-main_col iframe {
    height: 230px;
  }

  .about-main-gr {
    width: -webkit-calc(100% / 2 - 10px);
    width: -moz-calc(100% / 2 - 10px);
    width: calc(100% / 2 - 10px);
  }

  .about-main-award {
    height: 100px;
  }

  .about-item_title {
    font-size: 18px;
  }

  .header-top_link {
    margin: 0 10px -2px 0;
    font-size: 11px;
  }

  .header-top_time {
    margin: 0 10px -2px 0;
    font-size: 11px;
  }

  .header-top_time svg {
    width: 8px !important;
  }

  .header-top_phone {
    font-size: 11px;
  }

  .mobMenu_nav li {
    font-size: 18px;
    line-height: 34px;
  }

  .footer_phone {
    font-size: 22px;
  }

  .seo h3 {
    font-size: 18px;
  }

  .project_left h3 {
    font-size: 18px;
  }

  .project_left p,
  .project_left ul,
  .project_left ol {
    font-size: 14px;
  }

  .project_bottom p,
  .project_bottom ul,
  .project_bottom ol {
    font-size: 14px;
  }

  .offer_btns .btn {
    margin: 0 7.5px;
  }

  .block-info .bg {
    width: 80vw;
  }

  .info_title {
    font-size: 30px;
  }

  .grid {
    padding: 20px 15px;
  }

  .grid p,
  .grid ul,
  .grid ol {
    margin-bottom: 0;
    font-size: 14px;
  }

  .rules h1,
  .rules h2 {
    font-size: 16px;
  }

  .award {
    width: -webkit-calc(100% / 1 - 30px);
    width: -moz-calc(100% / 1 - 30px);
    width: calc(100% / 1 - 30px);
  }

  .contacts-form {
    padding: 25px 15px 40px;
  }

  .contacts-form_title {
    font-size: 20px;
  }

  .rest_name {
    width: -webkit-calc(100% - 60px - 60px);
    width: -moz-calc(100% - 60px - 60px);
    width: calc(100% - 60px - 60px);
  }

  .rest_weight {
    width: 60px;
  }

  .rest_price {
    width: 60px;
  }

  .rewards-item_text {
    font-size: 13px;
    line-height: 17px;
    border-top: 3px solid #e8eff4;
    padding-top: 10px;
  }
  .tarif {
    padding-bottom: 85px;
  }
  .tarif_description {
    margin-top: -120px;
  }
}

@media screen and (max-width: 370px) {
  .rewards-item_text {
    font-size: 14px;
    line-height: 18px;
  }
}

@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;
    }
}
}

.popUp-thx .popUp_content{
  max-width: 440px;
  padding: 50px;
}

.popUp-thx .popUp-form_title{
  margin: 20px 0;
}

@media screen and (max-width: 576px){
  .popUp-thx .popUp_content{
    max-width: 290px;
    padding: 20px;
  }
}

.block-docs{
  padding: 50px 0;
}

.docs{
  padding-left: 20px;
}

.docs ul li{
  margin-bottom: 15px;
  list-style: disc;
}

.docs ul li:hover{
  color: #0099ff;
}