@charset "UTF-8";

@import url("../fonts/stylesheet.css");

/*
 *  Remodal - v1.0.3
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  /*  overflow: auto;*/
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.0.3
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: #221C6C;
  opacity: 0.9;
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation: remodal-overlay-opening-keyframes 0.3s;
  animation: remodal-overlay-opening-keyframes 0.3s;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation: remodal-overlay-closing-keyframes 0.3s;
  animation: remodal-overlay-closing-keyframes 0.3s;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation: remodal-opening-keyframes 0.3s;
  animation: remodal-opening-keyframes 0.3s;
}

.remodal.remodal-is-closing {
  -webkit-animation: remodal-closing-keyframes 0.3s;
  animation: remodal-closing-keyframes 0.3s;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  background: url("../img/close.svg") no-repeat center;
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  overflow: visible;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #000;
  border: 0;
  outline: 0;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
  float: right;
  top: 0px;
  position: absolute;
  right: 0px;
  min-width: 50px;
}

#modal2Desc {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.title-remodal {
  font-size: 18px;
  color: #79b302;
  font-family: "montserratmedium";
  margin-top: 50px;
  margin-bottom: 20px;
}

.remodal form p {
  font-size: 10px;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

.remodal {
  max-width: 760px;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 32px;
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #221C6C;
  opacity: 0.9;
}

.lt-ie9 .remodal {
  width: 700px;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

.slick-dots {
  position: absolute;
  bottom: 16px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 8px;
  width: 8px;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background: #1FA68D;
}

.slick-dots li button {
  border: 0;
  background: #8DE8C2;
  opacity: 1;
  display: block;
  height: 8px;
  width: 8px;
  padding: 0px;
  border-radius: 50%;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

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);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

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

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

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

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  -webkit-transition-duration: inherit;
       -o-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-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);
       -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-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  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;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  -o-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);
          transform: translateZ(0);
  z-index: 99994;
}

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

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  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: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-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--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  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);
          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;
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-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: zoom-out;
}

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

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

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-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--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .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-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */

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

/* Buttons */

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          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;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  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;
}

/* Fix IE11 */

.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--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

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

/* Close button on the top right corner of html content */

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

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  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);
}

/* Caption */

.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(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(rgba(0, 0, 0, 0)));
  background: -o-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%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, 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%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

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

/* Loading indicator */

.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 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 fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

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

/* Transition effects */

.fancybox-animated {
  -webkit-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);
}

/* transitionEffect: slide */

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

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

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

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-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;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-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);
          transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

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

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-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);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
          transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-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);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

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

/* Styling for Small-Screen Devices */

/* Share */

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

.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 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-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:visited,
.fancybox-share__button:link {
  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 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  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;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          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: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  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);
  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;
}

/* Styling for Small-Screen Devices */

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

html {
  height: 100%;
}

body {
  font-size: 16px;
  padding: 0px;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
  overflow: auto;
  color: #221C6C;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

body.hidden {
  overflow: hidden;
}

h2 {
  font-size: 24px;
}

a {
  outline: none;
}

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

p {
  line-height: 135%;
  font-weight: 500;
}

ul,
ol {
  margin: 12px 26px;
  padding: 0px;
  font-weight: 500;
}

ul li,
ol li {
  margin-bottom: 6px;
  line-height: 135%;
}

.container {
  max-width: 1230px;
  padding: 0px 16px;
  margin: 0 auto;
  width: 100%;
}

input,
textarea {
  font-family: "Inter", sans-serif;
  -webkit-appearance: none;
}

input:hover,
input:focus,
input:active,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

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

.feedbacks .slick-slide img,
.clients .slick-slide img {
  width: 100%;
}

.clients-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* grid */

.cust-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: -32px;
}

.cust-row [class^=cust-col] {
  padding-left: 16px;
  padding-right: 16px;
  margin: 0;
  margin-top: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cust-col-6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}

.cust-col-4 {
  -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%;
  max-width: 33.33333%;
}

.cust-col-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}

.cust-col-2 {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  max-width: 20%;
}

.cust-col-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

/* /grid */

.main {
  padding-top: 73px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.header {
  padding: 16px 0px;
  border-bottom: 1px solid #E0E0E0;
  position: fixed;
  background: #fff;
  width: 100%;
  top: 0px;
  z-index: 3;
}

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

.mobile__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 235px);
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #221C6C;
  text-decoration: none;
}

.logo img {
  margin-right: 16px;
  max-width: 72px;
}

.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-nav a {
  font-weight: 600;
  color: #221C6C;
  text-decoration: none;
  margin: 0px 20px;
  display: inline-block;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.main-nav a:hover {
  color: #1FA68D;
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.header__calls {
  margin-right: 36px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__calls .header__phone {
  display: inline-block;
  line-height: 24px;
  font-weight: 700;
  color: #221C6C;
  background: url("../img/phone.svg") no-repeat left center;
  padding-left: 28px;
  min-height: 24px;
  text-decoration: none;
}

.header__calls span {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #221C6C;
  opacity: 0.6;
}

.btn {
  background: #FF6847;
  border-radius: 4px;
  padding: 12px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  display: table;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background: #FD2E00;
}

.homepage-slider {
  height: 460px;
}

.homepage-slider .index-slider__item {
  height: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homepage-slider .index-slider__item .index-slider__text {
  width: calc(100% - 420px);
  max-width: 600px;
  text-align: center;
}

.homepage-slider .index-slider__item .index-slider__text h2 {
  margin: 0px;
  font-weight: 800;
  font-size: 36px;
  line-height: 133%;
  text-transform: uppercase;
}

.homepage-slider .index-slider__item .index-slider__text p {
  font-weight: 500;
  line-height: 150%;
  margin: 16px 0px;
}

.homepage-slider .index-slider__item .index-slider__buttons {
  display: flex;
  justify-content: center;
}

.homepage-slider .index-slider__item .index-slider__text .index-slider__buttons .btn {
  margin: 0 10px;
  padding: 20px 18px;
  font-weight: 600;
  font-size: 16px;
}

.homepage-slider .index-slider__item .index-slider__text .index-slider__buttons .btn-white {
  margin: 0 10px;
  padding: 20px 18px;
  font-weight: 600;
  font-size: 16px;
  background: none;
  border-style: solid;
  border-width: 1px;
  border-color: #FF6847;
  color: #FF6847;
}

.homepage-slider .index-slider__item .index-slider__img {
  max-width: 420px;
  max-height: 348px;
  margin-left: 50px;
  width: 100%;
}

.homepage-slider .index-slider__item .index-slider__img img {
  display: block;
  height: 348px;
  margin: 0 auto;
}

.homepage-slider .form {
  margin-left: 60px;
}

.index-slider__text__icon img {
  margin: 0 auto;
  margin-bottom: 16px;
}

.form {
  max-width: 384px;
  width: 100%;
}

.form input {
  background: #FFFFFF;
  border: 1px solid #1FA68D;
  border-radius: 4px;
  height: 56px;
  padding: 0px 14px;
  font-weight: 500;
  margin-bottom: 16px;
  width: 100%;
  font-size: 16px;
}

.form input.error-input {
  border: 1px solid #FD2E00;
  color: #FD2E00;
}

.form .form-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form .form-footer .btn {
  padding: 20px 18px;
  font-size: 16px;
}

.form .form-footer .policy {
  font-weight: 500;
  font-size: 12px;
  line-height: 117%;
  color: #221C6C;
  margin-left: 24px;
  text-align: left;
}

.form .form-footer .policy a {
  color: #221C6C;
}

.error {
  background: #FFE1DA;
  border-radius: 4px;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14px;
  color: #FD2E00;
  display: table;
  margin: 0px 0px 16px 0px;
  position: relative;
  padding-left: 40px;
}

.error::before {
  content: "";
  background: url("../img/warning.svg") no-repeat center;
  width: 24px;
  height: 24px;
  margin-right: 4px;
  position: absolute;
  left: 12px;
  top: 7px;
}

.form__title {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 32px;
}

.form__title__main {
  font-weight: 700;
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.form__title .form__sale {
  background: #FFE087;
  border-radius: 100px;
  padding: 4px 8px;
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  color: #221C6C;
}

.form__title .form__sale span {
  font-weight: 700;
}

.slick-prev,
.slick-next {
  top: calc(50% - 20px);
  z-index: 2;
  opacity: 0.6;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 1;
}

.slick-prev::before,
.slick-next::before {
  display: none;
}

.slick-prev {
  background: url("../img/left.svg") no-repeat center;
  width: 40px;
  height: 40px;
  left: 0px;
}

.slick-next {
  background: url("../img/right.svg") no-repeat center;
  width: 40px;
  height: 40px;
  right: 0px;
}

.category-services {
  padding: 24px 0px;
  background: #221C6C;
}

.category-services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.category-services__item {
  background: url("../img/rectangle.svg") no-repeat right bottom;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 133%;
  text-align: center;
  text-decoration: none;
  padding: 16px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.category-services__item:hover {
  background: url("../img/rectangle.svg") no-repeat right bottom #1FA68D;
}

.cons {
  background: #1FA68D;
  padding: 65px 0px;
}

.cons .container {
  position: relative;
}

.cons .cons__title {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.cons .cons__title-main {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 8px;
}

.cons .cons__title-sale {
  background: #FFE087;
  border-radius: 100px;
  padding: 4px 8px;
  color: #221C6C;
  display: inline-block;
}

.cons .cons__title-sale span {
  font-weight: 700;
}

.cons form {
  max-width: 672px;
  position: relative;
  z-index: 2;
  margin: 34px auto 0px auto;
}

.cons form input {
  background: #FFFFFF;
  border: 1px solid #1FA68D;
  border-radius: 4px;
  height: 56px;
  margin-bottom: 16px;
  width: 100%;
  padding: 0px 16px;
  font-size: 16px;
  font-weight: 500;
}

.cons form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cons form .form-row__d input {
  width: 48%;
}

.cons form .form-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cons form .form-footer .btn {
  padding: 20px 18px;
  font-size: 16px;
}

.cons form .form-footer .policy {
  width: calc(100% - 154px);
  font-weight: 500;
  font-size: 12px;
  color: #fff;
}

.cons form .form-footer .policy a {
  color: #fff;
}

.cons .callwoman {
  position: absolute;
  left: -30px;
  bottom: -65px;
}

.title {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.stepts {
  padding: 64px 0px;
}

.stepts__item {
  text-align: center;
}

.stepts__item img {
  margin: 0 auto;
}

.stepts__item .step__title {
  margin: 16px 0px 8px 0px;
  font-weight: 700;
  font-size: 20px;
}

.stepts__item p {
  margin: 8px 0px;
  font-weight: 500;
}

.stepts__item a {
  font-weight: 500;
  font-size: 15px;
  color: #221C6C;
}

.about {
  padding: 64px 0px 48px 0px;
  background: #F2F2F2;
}

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

.about .about-col {
  width: 48%;
}

.about .title {
  text-align: left;
  margin-bottom: 24px;
}

.about p {
  font-weight: 500;
  margin: 0px 0px 24px 0px;
}

.link-arr {
  background: url("../img/right.svg") no-repeat right center;
  background-size: 16px;
  padding-right: 24px;
  font-weight: 600;
  color: #221C6C;
  text-decoration: none;
}

.link-arr:hover {
  border-bottom: 1px solid;
}

.about-icons {
  padding: 64px 0px;
}

.about-icons .cust-col-3, .about-icons .cust-col-2 {
  text-align: center;
}

.about-icons .cust-col-3 img, .about-icons .cust-col-2 img {
  margin: 0 auto;
}

.about-icons .cust-col-3 p, .about-icons .cust-col-2 p {
  font-weight: 700;
  font-size: 17px;
  line-height: 140%;
  text-align: center;
  color: #221C6C;
  margin: 16px 0px 0px 0px;
}

.feedbacks {
  padding: 64px 0px;
  background: #F2F2F2;
}

.feedbacks .slick-slide {
  margin: 0px 16px;
}

.feedbacks .slick-slide a {
  text-decoration: none;
}

.feedbacks .slick-slide a:hover .feedback-img {
  position: relative;
}

.feedbacks .slick-slide a:hover .feedback-img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  background: #FFFFFF;
  opacity: 0.8;
}

.feedbacks .slick-slide a:hover .feedback-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  background: url("../img/zoom.svg") no-repeat center;
}

.feedbacks .slick-slide a p {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #221C6C;
}

.feedbacks-slider,
.clients-slider {
  padding-bottom: 64px;
}

.feedbacks-slider .slick-prev,
.feedbacks-slider .slick-next,
.clients-slider .slick-prev,
.clients-slider .slick-next {
  bottom: 0px;
  top: auto;
}

.feedbacks-slider .slick-prev,
.clients-slider .slick-prev {
  left: calc(50% - 56px);
}

.feedbacks-slider .slick-next,
.clients-slider .slick-next {
  right: calc(50% - 56px);
}

.feedbacks-slider::after,
.clients-slider::after {
  content: "";
  width: 1px;
  background: #E0E0E0;
  height: 24px;
  bottom: 8px;
  left: 50%;
  display: block;
  position: absolute;
}

.clients {
  padding: 64px 0px;
}

.clients .slick-slide {
  margin: 0px 16px;
}

.clients .slick-slide img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.clients .slick-slide img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.footer {
  padding: 38px 0px;
  background: #221C6C;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

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

.footer a {
  color: #fff;
  display: block;
}

.footer .footer__left {
  width: 25%;
}

.footer .footer__left p {
  margin: 0px;
}

.footer .footer__left .footer-phone {
  display: inline-block;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  background: url(../img/phone-white.svg) no-repeat left center;
  padding-left: 28px;
  min-height: 24px;
  text-decoration: none;
  margin-top: 16px;
  margin-bottom: 8px;
}

.footer .footer__nav {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .footer__nav > div {
  min-width: 150px;
}

.footer .footer__nav a {
  margin-bottom: 8px;
  text-decoration: none;
}

.footer .footer__nav a:hover {
  opacity: 0.85;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-content img {
  margin-left: 32px;
}

.modal-content .form-thx {
  text-align: center;
  max-width: 384px;
}

.modal-content .form-thx__title {
  font-weight: 700;
  font-size: 28px;
  color: #221C6C;
}

.modal-content .form-thx p {
  font-weight: 500;
  color: #221C6C;
}

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

.breadcrumbs {
  -ms-overflow-style: none;
}

.breadcrumbs {
  overflow: -moz-scrollbars-none;
}

.breadcrumbs {
  margin: 16px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  width: 100%;
  overflow: auto;
  white-space: nowrap;
}

.breadcrumbs a {
  font-weight: 500;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 6px;
  color: #221C6C;
  text-decoration: none;
}

.breadcrumbs a::after {
  content: "";
  background: url("../img/right.svg") no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  display: inline-block;
}

.page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 16px 0px 24px 0px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-title h1 {
  margin: 0px;
  font-size: 36px;
}

.service-list {
  margin: -16px -16px 40px -16px;
}

.service__item {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  color: #221C6C;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.service__item:hover {
  border: 1px solid #1FA68D;
  color: #1FA68D;
}

.service__item img {
  max-width: 72px;
  margin-right: 16px;
}

.service__item p {
  margin: 0px;
  max-width: calc(100% - 88px);
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: #221C6C;
  border: 1px solid #1FA68D;
  border-radius: 4px;
  border-radius: 4px;
  min-width: 60px;
  margin-right: 8px;
  width: 100%;
  max-width: 365px;
}

.select-styled {
  padding: 11px 36px 11px 14px;
  white-space: nowrap;
}

.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #1FA68D transparent transparent transparent;
  position: absolute;
  top: 18px;
  right: 15px;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  background: #fff;
}

.select-options li {
  margin: 0;
  padding: 12px 15px;
}

.select-options li:hover,
.select-options li.is-selected {
  background: #F2F2F2;
}

.select-options li[rel=hide] {
  display: none;
}

.service-banner {
  padding: 0.1px 0px 48px 0px;
  background: #1FA68D;
}

.service-banner .breadcrumbs a {
  color: #FFFFFF;
}

.service-banner .breadcrumbs a::after {
  content: "";
  background: url(../img/right-opacity.svg) no-repeat;
  background-size: cover;
}

.service-banner .breadcrumbs span {
  color: #FFFFFF;
  opacity: 0.6;
}

.service-banner .container {
  position: relative;
}

.service-banner .big-man {
  position: absolute;
  left: -384px;
  top: 100px;
}

.service-banner .big-man.fixed img {
  position: fixed;
  top: 100px;
}

.service-banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 32px;
  color: #fff;
}

.service-banner__content .service-banner__left {
  width: 40%;
}

.service-banner__content .service-banner__left h1 {
  font-weight: 800;
  font-size: 36px;
  margin: 0px;
  text-transform: uppercase;
  line-height: 140%;
}

.service-banner__content .service-banner__left p {
  margin: 24px 0px;
  font-weight: 500;
}

.service-banner__content .service-banner__left .service-price {
  background: #FFE087;
  border-radius: 100px;
  padding: 4px 8px;
  font-weight: 500;
  font-size: 20px;
  color: #221C6C;
  display: table;
}

.service-banner__content .service-banner__left .service-price span {
  font-weight: 700;
}

.service-banner__content .service-banner__form {
  width: calc(60% - 56px);
  margin-left: 56px;
}

.form.big-form {
  width: 100%;
  max-width: 100%;
}

.form.big-form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form.big-form .form-row input {
  width: calc(50% - 8px);
}

.form.big-form .policy {
  color: #fff;
}

.form.big-form .policy a {
  color: #fff;
}

.service-about {
  padding: 64px 0px;
}

.service-about .container {
  position: relative;
}

.service-about__img {
  width: 176px;
  margin: 0px 32px 32px 0px;
}

.service-about .service-about__nav-container {
  position: absolute;
  right: 16px;
  top: 0px;
  width: 176px;
}

.service-about__nav {
  width: 176px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 16px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.service-about__nav a {
  display: table;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 16px;
  color: #221C6C;
}

.service-about__nav a:last-child {
  margin-bottom: 0px;
}

.service-about__nav a.active {
  color: #1FA68D;
}

.service-about__content {
  width: calc(100% - 208px);
}

.service-what {
  padding: 64px 0px;
  background: #F2F2F2;
}

.service-what .title {
  text-align: left;
  margin-bottom: 24px;
}

.service-what__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}

.service-what__item {
  width: calc(50% - 16px);
}

.service-what__item ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin: 24px 0px 0px 0px;
  padding: 0px;
}

.service-what__item ul li {
  margin-bottom: 16px;
  font-weight: 500;
  display: block;
}

.service-what__item ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #1FA68D;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
}

.service-what__item ul li a {
  color: #221C6C;
}

.service-what__item__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 24px;
}

.service-big-form {
  background: #1FA68D;
  padding: 64px 0px;
}

.service-big-form .form {
  margin: 0 auto;
  color: #fff;
  max-width: 672px;
}

.service-process {
  padding: 64px 0px;
}

.service-process .title {
  text-align: left;
}

.service-process__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}

.service-process__item {
  width: calc(50% - 16px);
  margin-bottom: 32px;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 16px;
}

.service-process__item:last-child {
  margin-bottom: 0px;
}

.service-process__item p {
  font-weight: 500;
  margin: 16px 0px;
}

.service-process__time {
  font-weight: 600;
  background: url("../img/timer.svg") no-repeat left;
  padding-left: 32px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-process__title {
  font-weight: 700;
  font-size: 20px;
}

.article {
  padding-bottom: 64px;
}

.article img {
  margin-bottom: 16px;
}

.article h2 {
  font-size: 32px;
  margin: 42px 0px 24px 0px;
}

.article ol li {
  margin-bottom: 16px;
}

.article ul {
  margin: 16px 0px 16px 8px;
}

.article ul li {
  margin-bottom: 16px;
  font-weight: 500;
  display: block;
}

.article ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #1FA68D;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
}

.contacts-content {
  margin-top: 32px;
  padding-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contacts-content .contacts__left {
  width: calc(100% - 416px);
  margin-right: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contacts-content .contacts__left .contacts__col {
  width: 50%;
}

.contacts-content .contacts__left .contacts__col p {
  margin-bottom: 8px;
  margin-top: 8px;
}

.contacts-content .contacts__form {
  width: 384px;
}

.contacts-content .contact-phone {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #221C6C;
}

.onclick-map {
  background: url("../img/geo.svg") no-repeat left center;
  padding-left: 64px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  color: #1FA68D;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

.onclick-map:hover {
  text-decoration: underline;
}

.contacts__h2 {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 700;
}

.map {
  width: 100%;
  height: 540px;
}

@media (min-width: 769px) {
  .service-about__nav.fixed {
    position: fixed;
    top: 100px;
  }
}

@media (min-width: 960px) {
  .service-about__nav a:hover {
    color: #1FA68D;
  }
}

@media (max-width: 1024px) {
  .cust-col-tablet-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }

  .cust-col-tablet-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }

  .cust-col-tablet-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .service-banner .big-man {
    display: none;
  }

  .mobile__nav {
    position: absolute;
    left: -100%;
    top: 0px;
    min-height: 100vh;
    z-index: 2;
    background: #221C6C;
    width: 100%;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 83px;
  }

  .mobile__nav.active {
    left: 0px;
  }

  .mobile__nav .main-nav {
    display: block;
    text-align: center;
  }

  .mobile__nav .main-nav a {
    color: #fff;
    display: block;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 40px;
  }

  .mobile__nav .header__contacts {
    display: block;
    color: #fff;
  }

  .mobile__nav .header__contacts span {
    color: #fff;
    font-size: 16px;
    text-align: center;
    display: block;
    margin-top: 4px;
  }

  .mobile__nav .header__contacts .header__calls {
    margin: 0px;
  }

  .mobile__nav .header__contacts .header__calls .header__phone {
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    padding: 0px;
  }

  .mobile__nav .header__contacts .btn {
    margin-top: 40px;
    padding: 20px 18px;
    font-size: 16px;
    margin: 40px auto;
  }

  .mobile__nav .mobile__close {
    background: url("../img/close.svg") no-repeat center;
    background-size: cover;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 16px;
    top: 16px;
  }

  .header__mobile-phone {
    background: url("../img/phone.svg") no-repeat center;
    background-size: cover;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 65px;
  }

  .toggle__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .toggle__nav span {
    width: 22px;
    height: 2px;
    background: #221C6C;
    border-radius: 2px;
  }

  .toggle__nav span::after,
  .toggle__nav span::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #221C6C;
    position: relative;
    display: block;
  }

  .toggle__nav span::before {
    bottom: -8px;
  }

  .toggle__nav span::after {
    top: -10px;
  }

  .toggle__nav.active span {
    background: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }

  .toggle__nav.active span::before {
    border-radius: 0px;
    top: 0.5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    height: 2px;
    width: 100%;
  }

  .toggle__nav.active span::after {
    border-radius: 0px;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    width: 100%;
    height: 2px;
    top: -1.5px;
  }

  .contacts-content .contacts__left {
    width: 100%;
    margin: 0px;
    display: block;
  }

  .contacts-content .contacts__left .contacts__col {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 24px;
    margin-bottom: 24px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cust-row {
    margin-top: -32px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .cust-row [class^=cust-col] {
    margin-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .cust-col-v-tablet-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }

  .cust-col-v-tablet-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  .cust-col-v-tablet-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }

  .article h2 {
    font-size: 24px;
    margin: 24px 0px 16px 0px;
  }

  .homepage-slider .index-slider__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    padding: 16px 0px 80px 0px;
  }

  .homepage-slider {
    height: auto;
  }

  .homepage-slider .index-slider__item .index-slider__text {
    width: 100%;
    height: auto;
  }

  .form {
    width: 100%;
  }

  .category-services__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .homepage-slider .index-slider__item .index-slider__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .homepage-slider .index-slider__item .index-slider__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 24px;
  }

  .homepage-slider .index-slider__item .index-slider__text h2 {
    font-size: 24px;
  }

  .homepage-slider .index-slider__item .index-slider__text p {
    font-size: 14px;
    margin: 8px 0px 24px 0px;
  }

  .homepage-slider__contrainer .form {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 0px;
  }

  .form__title__main {
    font-size: 24px;
  }

  .form__title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .footer .footer__left,
  .footer .footer__nav {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer .footer__left > div,
  .footer .footer__nav > div {
    width: 100%;
  }

  .footer .footer__left {
    margin-bottom: 24px;
  }

  .cons {
    padding: 40px 0px 160px 0px;
    background: url(../img/callwoman.png) no-repeat center bottom #1FA68D;
    background-size: 140px;
  }

  .callwoman {
    display: none;
  }

  .modal-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .modal-content img {
    max-width: 140px;
    margin: 0 auto;
    margin-top: 24px;
  }

  .page-title h1 {
    font-size: 24px;
    width: 100%;
  }

  .page-title .select {
    margin-top: 16px;
  }

  .service-banner {
    margin-top: 51px;
  }

  .service-banner__content .service-banner__left,
  .service-banner__content .service-banner__form {
    width: 100%;
    margin: 0px;
  }

  .service-banner__content .service-banner__left {
    margin-bottom: 24px;
  }

  .service-banner__content .service-banner__left h1 {
    font-size: 24px;
  }

  .service-banner__content .service-banner__left .service-price {
    font-size: 18px;
  }

  .form__title .form__sale {
    margin-top: 8px;
  }

  .form.big-form .form-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .form.big-form .form-row input {
    width: 100%;
  }

  .service-about .service-about__nav-container {
    position: fixed;
    top: 73px;
    left: 0px;
    width: 100%;
    overflow: auto;
    background: #fff;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  }

  .service-about__nav {
    position: relative;
    top: 0px;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .service-about__nav a {
    margin-bottom: 0px;
    margin-right: 12px;
  }

  .service-about__content {
    width: 100%;
  }

  .service-about__content .service-about__img {
    margin: 0 auto 24px auto;
    float: none;
  }

  .service-banner {
    padding-bottom: 40px;
  }

  .service-about,
  .service-what,
  .service-big-form,
  .service-process,
  .feedbacks,
  .about-icons,
  .clients {
    padding: 40px 0px;
  }

  .service-what__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .service-what__item {
    width: 100%;
    margin-bottom: 24px;
  }

  .service-what__item:last-child {
    margin-bottom: 0px;
  }

  .service-what__item__title {
    font-size: 20px;
    padding-bottom: 16px;
  }

  .service-process__item {
    width: 100%;
  }

  .contacts-content {
    margin-top: 24px;
    padding-bottom: 40px;
  }
}

@media (max-width: 760px) {
  h2 {
    font-size: 20px;
  }
}

@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

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

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

@media (max-width: 480px) {
  .remodal {
    padding: 32px 16px 16px 16px;
  }

  .cust-row {
    margin-top: -12px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .cust-row [class^=cust-col] {
    margin-top: 12px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .cust-col-mobile-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  .category-services__list {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .category-services__item {
    font-size: 14px;
    height: 104px;
  }

  .cons form .form-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .cons form .form-row__d input {
    width: 100%;
    margin-bottom: 16px;
  }

  .cons {
    padding: 40px 0px 160px 0px;
    background: url(../img/callwoman.png) no-repeat center bottom #1FA68D;
    background-size: 140px;
  }

  .cons .cons__title {
    font-size: 18px;
    max-width: 350px;
    margin: 0 auto;
  }

  .cons .cons__title-main {
    font-size: 24px;
  }

  .stepts {
    padding: 40px 0px;
  }

  .title {
    font-size: 24px;
  }

  .stepts__item {
    margin-bottom: 32px;
  }

  .stepts__item:last-child {
    margin-bottom: 0px;
  }

  .about {
    padding: 40px 0px;
  }

  .about .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .about .about-col {
    width: 100%;
    margin-bottom: 32px;
  }

  .about .about-col:last-child {
    margin-bottom: 0px;
  }

  .about-icons .cust-col-3 p,
  .stepts .cust-col-3 p {
    max-width: 240px;
    margin: 16px auto 0px auto;
  }

  .about-icons .cust-col-2 p,
  .stepts .cust-col-2 p {
    max-width: 180px;
    margin: 16px auto 0px auto;
  }

  .about-icons .cust-col-3, .about-icons .cust-col-2,
  .stepts .cust-col-3, .stepts .cust-col-2 {
    margin-bottom: 32px;
  }

  .about-icons .cust-col-3:last-child, .about-icons .cust-col-2:last-child,
  .stepts .cust-col-3:last-child, .stepts .cust-col-2:last-child {
    margin-bottom: 0px;
  }

  .service-what__item ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }

  .cons .cons__title-sale {
    margin-top: 8px;
  }
}

@media (max-width: 360px) {
  .header {
    height: 65px;
  }

  .main {
    padding-top: 65px;
  }

  .logo {
    font-size: 12px;
  }

  .logo img {
    width: 55px;
  }

  .service-banner__content .service-banner__left .service-price {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  .category-services__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .homepage-slider .index-slider__item .index-slider__text h2 {
    font-size: 28px;
  }

  .index-slider__form,
  .homepage-slider .index-slider__item .index-slider__img {
    width: 48%;
    margin-left: 32px;
  }

  .cons {
    background: url(../img/callwoman.png) no-repeat 18% 100% #1FA68D;
    background-size: 140px;
    padding: 40px 0px 160px 0px;
  }

  .callwoman {
    display: none;
  }

  .footer .footer__left {
    width: 100%;
    margin-bottom: 24px;
  }

  .footer .footer__nav {
    width: 100%;
  }

  .service-banner__content .service-banner__left h1 {
    font-size: 32px;
  }

  .service-what__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .service-what__item {
    width: 100%;
    margin-bottom: 24px;
  }

  .service-what__item:last-child {
    margin-bottom: 0px;
  }

  .service-banner__content .service-banner__left {
    width: 100%;
  }

  .service-banner__content .service-banner__form {
    margin: 32px 0px 0px 0px;
    width: 100%;
  }
}

@media all and (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: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
}
}
.social-block {
  margin-top: 50px;
}
.social-block a {
  display: inline-block;
  margin-right: 20px;
}


.index-slider__text img {
  margin: 0 auto 20px auto;
}

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

.page-thx__img {
  margin-left: auto;
  margin-right: auto;
}

.video {
  padding: 0;
}

.feedbacks__documents {
  padding-bottom: 64px;
}

.about__main-video{

  display: flex;
  padding-bottom: 48px;
  width: auto;
  margin: 0 -16px -32px;
  flex-wrap: wrap;
}

.about__main-video-btn {
  position: relative;
  flex: 0 0 auto;
  width: calc(50% - 32px);
  margin: 0 16px 32px;
  padding-top: 26.65%;
}

.video-iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .about__main-video {
    margin: 0;
  }

  .about__main-video-btn {
    padding-top: 56%;
    width: 100%;
    margin: 0 0 16px;
  }
}