@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Jost:wght@500;600&family=Open+Sans:wght@400;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.wrapper .main {
  flex: 1 1 auto;
}

:root {
  --spoiler-padding: 30px;
}

.container {
  max-width: 1225px;
  padding: 0 10px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .container {
    padding: 0 7px;
  }
}

body {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}

/*
.breadcrump {
  display: flex;
  color: #999;
  font-size: 12px;
  line-height: 16px;
}
*/

.breadcrump {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  color: #999;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}
.breadcrump::-webkit-scrollbar {
  height: 4px;
}
.breadcrump::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.breadcrump::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}
.breadcrump::-webkit-scrollbar-thumb:hover {
  background: #555;
}




.breadcrump__item {
  position: relative;
}
.breadcrump__link {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
.breadcrump li + li:before {
  padding-left: 6px;
  padding-right: 4px;
  content: "/ ";
}
@media (max-width: 576px) {
  .breadcrump {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.03em;
  }
}

.title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 49px;
  color: #333333;
}
@media (max-width: 768px) {
  .title {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .title {
    font-size: 20px;
    line-height: 27px;
  }
}

.--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 30px;
  background: #ff8a00;
  border: none;
  border-radius: 5px;
}
.--btn span {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
}

._popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(43, 38, 48, 0.4);
  backdrop-filter: blur(5px);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s linear;
}

body._popup-open {
  overflow: hidden;
}

.rub:after {
  content: " ₽";
}

span.bold-text {
  font-weight: bold;
}

span.blue-text {
  color: #0057ff;
}

span.orange-text {
  color: #ff8a00;
}

.exclamation-mark {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 5px;
  height: 19px;
  background-image: url("../image/icons/exclamation-mark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 3px;
}

.line {
  height: 2px;
  background-color: #ddd;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  opacity: 0;
  background: transparent;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.scrollbar-hidden::-webkit-scrollbar {
  width: 0;
  background-color: transparent;
}

.spoilers {
  display: none;
  position: absolute;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-title.montage-mfp-title {
  position: absolute;
  bottom: 0;
  padding: 25px;
  width: 100%;
  background: #00000091;
  font-size: 18px;
  line-height: 25px;
}
.big-slider-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  color: #fff;
  font-size: 16px;
  text-align: left;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
.big-slider .slick-slide {
  margin-right: 15px;
}
@media(max-width: 600px) {
  .mfp-title.montage-mfp-title {
    position: absolute;
    bottom: 0;
    padding: 25px;
    width: 100%;
    background: #00000091;
    font-size: 12px;
    line-height: 16px;
    }}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.maintenance__breadcrump {
  margin-bottom: 5px;
}
.maintenance__page-title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #333333;
}
.maintenance .line {
  margin-top: 16px;
  margin-bottom: 80px;
}
.maintenance__title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 49px;
  color: #333333;
  margin-bottom: 37px;
}
ul.maintenance__list {
  margin-bottom: 88px;
}
.maintenance__list-item {
  position: relative;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  max-width: 1060px;
  margin-bottom: 30px;
  padding-left: 30px;
}
.maintenance__list-item:last-child {
  margin-bottom: 0;
}
.maintenance__list-item:before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  width: 17px;
  height: 24.06px;
  background-image: url("../image/icons/lightning-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.maintenance__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.maintenance__item {
  position: relative;
  flex: 0 1 calc(33.333% - 10px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 360px;
  padding: 40px;
  margin: 0 5px 27px 5px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}
.maintenance__item-title {
  position: relative;
  z-index: 2;
  max-width: 205px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #333333;
}
.maintenance__item-button {
  position: relative;
  z-index: 2;
  border: none;
  background-color: transparent;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #969696;
  border-bottom: 1px dashed #969696;
}
.maintenance__item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  z-index: 1;
}
.maintenance__item--1 .maintenance__item-img {
  top: 57%;
  left: 50%;
}
.maintenance__item--2 .maintenance__item-img {
  top: 66%;
  left: 46%;
}
.maintenance__item--3 .maintenance__item-img {
  top: 67%;
  left: 50%;
}
.maintenance__item--4 .maintenance__item-img {
  top: 61%;
  left: 46%;
}
.maintenance__item--5 .maintenance__item-img {
  top: 62%;
  left: 49%;
}
.maintenance__item--6 .maintenance__item-img {
  top: 63%;
  left: 48%;
}
.maintenance__slider .slick-track {
  display: flex;
}
.slick-arrow:before {
    background: none;
}
.maintenance__slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  position: relative;
}
.maintenance__slider-nav .slick-dots {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
}
.maintenance__slider-nav .slick-dots li button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #dedede;
  margin: 0 2.5px;
  transition: all 0.2s ease;
}
.maintenance__slider-nav .slick-dots li.slick-active button {
  background-color: #ff8a00;
  border: 1px solid #ff8a00;
}
.maintenance__slider-nav .slick-arrow {
  font-size: 0;
  color: transparent;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.maintenance__slider-nav .slick-prev {
  order: 1;
  margin-right: 30px;
  background-image: url("/image/maintenance/slider-arrow-prev.svg");
}
.maintenance__slider-nav .slick-next {
  order: 3;
  margin-left: 30px;
  background-image: url("/image/maintenance/slider-arrow-next.svg");
}
@media (max-width: 1200px) {
  .maintenance .maintenance__item {
    flex: 0 1 calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .maintenance .maintenance__item {
    flex: 0 1 calc(100% - 10px);
  }
}
@media (max-width: 576.1px) {
  .maintenance .maintenance__row {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    opacity: 0;
    background: transparent;
    clip: rect(0 0 0 0);
    overflow: hidden;
    display: none;
  }
  .maintenance .maintenance__slider {
    margin-bottom: 30px;
  }
  .maintenance .maintenance__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 266px;
    height: 261px;
    padding: 20px;
    margin: 0 5px;
  }
  .maintenance .maintenance__item--1 .maintenance__item-img {
    width: 308px;
    top: 58%;
    left: 47%;
  }
  .maintenance .maintenance__item--2 .maintenance__item-img {
    width: 184px;
    top: 69%;
    left: 49%;
  }
  .maintenance .maintenance__item--3 .maintenance__item-img {
    width: 153px;
    top: 67%;
    left: 50%;
  }
  .maintenance .maintenance__item--4 .maintenance__item-img {
    width: 199px;
    top: 61%;
    left: 46%;
  }
  .maintenance .maintenance__item--5 .maintenance__item-img {
    width: 151px;
    top: 64%;
    left: 49%;
  }
  .maintenance .maintenance__item--6 .maintenance__item-img {
    width: 156px;
    top: 66%;
    left: 48%;
  }
  .maintenance .maintenance__item-title {
    max-width: 205px;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    margin: 0 auto 5px auto;
  }
  .maintenance .maintenance__item-button {
    font-weight: 400;
    font-size: 13px;
    line-height: 28px;
  }
}
@media (min-width: 576.1px) {
  .maintenance .maintenance__slider,
.maintenance .maintenance__slider-nav {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    opacity: 0;
    background: transparent;
    clip: rect(0 0 0 0);
    overflow: hidden;
    display: none;
  }
}
@media (max-width: 576px) {
  .maintenance .maintenance__page-title {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 40px;
  }
  .maintenance .line {
    margin: 0;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    opacity: 0;
    background: transparent;
    clip: rect(0 0 0 0);
    overflow: hidden;
    display: none;
  }
  .maintenance .maintenance__title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .maintenance .maintenance__list-item {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .maintenance .maintenance__list-item:last-child {
    margin-bottom: 0;
  }
  .maintenance .maintenance__list {
    margin-bottom: 50px;
  }
}

.maintenance__popup {
  overflow-y: scroll;
  align-items: flex-start;
  padding: 10px 5px;
}
.maintenance__popup-inner {
  position: relative;
  max-width: 400px;
  background: #fff;
  padding: 20px 15px 40px;
  margin: auto;
  border-radius: 10px;
}
.maintenance__popup-btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 11px;
  height: 11px;
  border: none;
  background-color: transparent;
  background-image: url("../image/icons/cross-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.maintenance__popup-title {
  max-width: 264px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #ff9820;
  margin-bottom: 15px;
}
.maintenance__popup-item {
  position: relative;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 23px;
  color: #333333;
  margin-bottom: 23px;
  padding-left: 20px;
}
.maintenance__popup-item:last-child {
  margin-bottom: 0;
}
.maintenance__popup-item:before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  width: 12px;
  height: 14.64px;
  background-image: url("../image/icons/lightning-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 576px) {
  .maintenance .maintenance__popup-inner {
    width: 310px;
  }
}

.works {
  padding: 66px 0 50px;
  background-color: #fff;
  margin-top: 50px;
}
@media (max-width: 576px) {
  .works {
    padding: 40px 0 37px;
    margin-top: 20px;
  }
}
.works__inner {
  margin: 0 -5px;
}
.works__title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 49px;
  color: #333333;
  margin-bottom: 75px;
}
.works__sliders-big {
  margin-bottom: 15px;
}
.works__sliders-small {
  margin-bottom: 85px;
}
.works__sliders-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  position: relative;
}
.works .slick-track {
  display: flex;
}
.works .slick-dots {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
}
.works .slick-dots li button {
  width: 10.23px;
  height: 10.23px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #dedede;
  margin: 0 5px;
  transition: all 0.2s ease;
}
.works .slick-dots li.slick-active button {
  background-color: #ff8a00;
  border: 1px solid #ff8a00;
}
.works .slick-arrow {
  font-size: 0;
  color: transparent;
  width: 62px;
  height: 63px;
  border-radius: 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.works .slick-prev {
  order: 1;
  margin-right: 38px;
  background-image: url("../image/icons/slider-arrow-prev.svg");
}
.works .slick-next {
  order: 3;
  margin-left: 38px;
  background-image: url("../image/icons/slider-arrow-next.svg");
}
@media (max-width: 576px) {
  .works .works__inner {
    margin: 0;
  }
  .works .works__title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}

.big-slider {
  overflow: hidden;
}
.big-slider__item {
  min-width: 572px;
  overflow: hidden;
  text-align: right;
  cursor: pointer;
}
.big-slider .image-popup-no-margins {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.big-slider__item-img {
  max-width: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.big-slider .slick-current {
  text-align: left;
}

.small-slider {
  overflow: hidden;
}
.small-slider__item {
  position: relative;
  max-width: 190px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 15px;
  cursor: pointer;
}
.small-slider__item :last-child {
  margin-right: 0;
}
.small-slider__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: #fff;
  opacity: 0.5;
}
.small-slider__item-img {
  max-width: 100%;
}
.slick-list.draggable {
    margin-right: -15px;}

@media (max-width: 1200px) {
  .big-slider__item {
    min-width: 450px;
  }

  .big-slider .slick-current ~ .big-slider__item {
    padding-left: 5px;
  }
}
@media (max-width: 1024px) {
  .big-slider__item {
    min-width: 378px;
  }
}
@media (max-width: 768px) {
  .big-slider__item {
    min-width: 0px;
  }
  .big-slider .slick-current {
    padding-right: 0px;
  }
  .big-slider .slick-current ~ .big-slider__item {
    padding-left: 0px;
  }
  .big-slider .image-popup-no-margins {
    text-align: center;
  }
  .works__title {
    margin-bottom: 50px;
  }
  .works__sliders-small {
    margin-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .small-slider {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    opacity: 0;
    background: transparent;
    clip: rect(0 0 0 0);
    overflow: hidden;
    display: none;
  }
  .big-slider__item {
    min-width: 0px;
    max-width: 100%;
    text-align: center;
  }
  .big-slider .slick-current {
    text-align: center;
  }
  .works .slick-arrow {
    width: 35px;
    height: 35px;
  }
  .works .slick-prev {
    margin-right: 20px;
    background-image: url("../image/icons/slider-arrow-prev-mob.svg");
  }
  .works .slick-next {
    margin-left: 20px;
    background-image: url("../image/icons/slider-arrow-next-mob.svg");
  }
  .works .slick-dots li button {
    width: 6px;
    height: 6px;
    margin: 0 2.5px;
  }
}
.offer {
  position: relative;
  padding: 66px 0 50px;
}
@media (max-width: 576px) {
  .offer {
    padding: 37px 0 50px;
  }
}
.offer__box {
  position: relative;
  z-index: 1;
  max-width: 997px;
  margin: 0 auto;
  padding: 58px 0 65px;
  background: #ffffff;
  box-shadow: 2px 5px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 5px 5px;
}
.offer__box:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ff8a00;
}
.offer__title {
  max-width: 630px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  text-align: center;
  color: #333333;
  margin: 0 auto 37px auto;
}
.offer__form {
  max-width: 680px;
  margin: 0 auto;
}
.offer__form-inputs {
  display: flex;
  flex-direction: row;
  margin: 0 -10px 35px -10px;
}
.offer__form-input-wrapper {
  flex: 0 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 10px;
}
.offer__form-input-label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #a6a6a6;
  margin-bottom: 8px;
}
.offer__form-input {
  width: 100%;
  height: 50px;
  padding: 10px;
  border: 1px solid #a6a6a6;
}
.offer__btn {
  padding: 0 42px;
  margin: 0 auto 22px auto;
}
.offer__caption {
  max-width: 300px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #a6a6a6;
  margin: 0 auto;
}
.offer__bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 54%;
  background: #ffffff;
}
.offer__bg-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 46%;
  background: #f2f2f2;
}
@media (max-width: 576px) {
  .offer .offer__box {
    padding: 53px 0 43px;
  }
  .offer .offer__title {
    font-size: 22px;
    line-height: 30px;
    margin: 0 auto 20px auto;
  }
  .offer .offer__form-inputs {
    max-width: 207px;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0 auto 30px auto;
  }
  .offer .offer__form-inputs:last-child {
    margin-bottom: 0;
  }
  .offer .offer__form-input-wrapper {
    flex: 0 0 43px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 10px 0;
  }
  .offer .offer__form-input-wrapper:last-child {
    margin-bottom: 0;
  }
  .offer .offer__btn {
    padding: 0px 43px;
    height: 36px;
    margin-bottom: 8px;
  }
  .offer .offer__btn span {
    font-size: 10px;
    line-height: 14px;
  }
  .offer .offer__caption {
    max-width: 170px;
    font-size: 8px;
    line-height: 10px;
  }
}