body {
  position: relative;
  font-family: 'Bellotatext', sans-serif;
  color: #fff;
  font-weight: 400;
  background: -o-linear-gradient(338.66deg, #202324 0%, #010101 100%);
  background: linear-gradient(111.34deg, #202324 0%, #010101 100%);
  min-height: 100vh;
  letter-spacing: 0.01em;
}

section {
  background: -o-linear-gradient(338.66deg, #202324 0%, #010101 100%);
  background: linear-gradient(111.34deg, #202324 0%, #010101 100%);
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.button {
  position: relative;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  background: #20CB27;
  padding: 16px 24px;
  border-radius: 0;
  border: 1px solid #20CB27;
  cursor: pointer;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.button:hover {
  color: #20CB27;
  background: #303030;
}

.button:focus {
  outline: none;
}

h1 {
  font-family: 'RussoOne', sans-serif;
  font-size: 56px;
  font-weight: 500;
  color:#20CB27;
  margin-bottom: 42px;
}

h2 {
  font-family: 'RussoOne', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 65px;
}

.title-box {
    position: relative;
}

ul {
  margin: 0;
}

p {
  margin-bottom: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  -webkit-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__collapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.modal-open .header {
  padding-right: 17px;
}

.modal-open .menu {
  left: 50%;
}

.logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
}

.logo-wrapper .phone {
  display: none;
  font-size: 18px;
  padding-left: 15px;
  margin-bottom: 0;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 133px;
}

.logo__img {
  margin-right: 7px;
}

.logo__name {
  font-family: 'RussoOne';
  font-size: 15px;
  font-weight: 400;
  line-height: 110%;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

.phone {
  font-family: 'RussoOne', sans-serif;
  font-size: 24px;
}

.phone__icon {
  fill: #35d553;
  width: 25px;
  height: 25px;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  background: #404040;
  border-radius: 50%;
  padding: 7px;
}

.phone a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.phone a span {
    display: block;
}

.menu {
  margin-left: 180px;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu__item {
  padding: 0 44px;
}

a {
  color: #fff;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

a:hover {
  color: #20CB27;
  text-decoration: none;
}

.main-screen {
  position: relative;
  padding-top: 220px;
  padding-bottom: 170px;
  overflow: hidden;
}

.main-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: .1;
  width: 50%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 0;
}

.main-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 50%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 0;
}

.main-screen__bg {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .4;
}

.main-screen__inner {
  position: relative;
  z-index: 2;
}

.main-screen__col {
  height: 500px;
}

.main-screen__col-inner {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.main-screen .form {
  margin-bottom: 31px;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__warning {
  font-size: 18px;
}

.input {
  font-size: 18px;
  padding: 16px 24px;
  border: 0;
  width: 290px;
  max-width: 290px;
}

.form-block__text-1 {
  font-size: 24px;
  margin-bottom: 31px;
}

.form-block__text-2 {
  font-size: 24px;
  opacity: 0.7;
}

.img-construction {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.img-construction__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 470px;
  height: 470px;
  border-radius: 50%;
  border: 4px solid #20CB27;
  -webkit-box-shadow: 0 0 10px rgba(32, 203, 39, 0.5);
          box-shadow: 0 0 10px rgba(32, 203, 39, 0.5);
}

.img-construction__img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.img-construction__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
}

.img-construction__item:nth-child(1) {
  top: -32px;
  left: 65px;
  -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

.img-construction__item:nth-child(2) {
  top: -52px;
  right: 61px;
  -webkit-transform: rotate(15deg);
      -ms-transform: rotate(15deg);
          transform: rotate(15deg);
}

.img-construction__item:nth-child(3) {
  bottom: -70px;
  right: 61px;
}

.img-construction__item:nth-child(3) .img-construction__item-circle {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-bottom: 20px;
}

.img-construction__item-text {
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 20px;
}

.img-construction__item-circle {
  position: relative;
  width: 32px;
  height: 32px;
  background: #4FE189;
  border-radius: 50%;
  margin: 0 auto;
}

.img-construction__item-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border: 1px solid #20CB27;
  border-radius: 50%;
}

.service {
  padding: 65px 0;
}

.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
  margin-bottom: 40px;
}

.service__item {
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  height: 274px;
  padding: 10px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  cursor: pointer;
}

.service__item:hover .service__item-img,
.service__item:hover .service__item-inner::before {
  opacity: .3;
}

.service__item--hide {
  display: none;
  opacity: 0;
  -webkit-animation: itemHide 1s ease-in-out;
          animation: itemHide 1s ease-in-out;
  animation-direction: reverse;
}

.service__item--show {
  display: block;
  -webkit-animation: itemShow 1s ease-in-out;
          animation: itemShow 1s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.service__item-inner {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 24px 12px;
  background: #000;
}

.service__item-inner::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(29%, rgba(0, 55, 78, 0)), to(rgba(0, 0, 0, 0.829569)));
  background: -o-linear-gradient(top, rgba(0, 55, 78, 0) 29%, rgba(0, 0, 0, 0.829569) 100%);
  background: linear-gradient(180deg, rgba(0, 55, 78, 0) 29%, rgba(0, 0, 0, 0.829569) 100%);
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.service__item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.service__item-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: 'RussoOne';
  font-size: 20px;
  line-height: 110%;
  width: 100%;
}

.service__item-name {
  max-width: 156px;
}

.service__item-price {
  color: #20CB27;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.service__button {
  margin: 0 auto;
}

@-webkit-keyframes itemShow {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes itemShow {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes itemHide {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes itemHide {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

h2 {
  position: relative;
  padding-left: 40px;
}

.point {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4FE189;
}

.point::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #20CB27;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.promotions {
  position: relative;
  padding: 65px 0;
  padding-bottom: 200px;
  overflow: hidden;
}

.promotions__title {
  margin-bottom: -40px;
}

.promotions__inner {
  position: relative;
}

.promotions__content {
  position: relative;
  padding: 95px;
  background: #303030;
}

.promotions__title-2 {
  padding-left: 0;
  margin-bottom: 60px;
}

.promotions .form-block__text-2 {
  margin-bottom: 60px;
}

.promotions__col-inner {
  position: relative;
  height: 100%;
}

.promotions__img-item {
  position: absolute;
  top: 200px;
  right: 50px;
  width: 425px;
  height: 476px;
  background: #20CB27;
  border-radius: 50%;
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: .4;
  mix-blend-mode: color;
  z-index: 10;
}

.promotions__img {
  position: absolute;
  bottom: 0;
  right: -120px;
  z-index: 10;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.promotions .swiper-pagination {
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.promotions .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-right: 15px;
  background: #20CB27;
}

.promotions .swiper-pagination-bullet-active {
  position: relative;
  background: #4FE189;
}

.promotions .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border: 1px solid #20CB27;
  border-radius: 50%;
}

.decor-item {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.decor-item-3 {
  right: 0;
  bottom: -240px;
}

.green {
  color: #20CB27;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.slider-promotions {
  position: relative;
  overflow: hidden;
}

.slider-promotions .swiper-slide {
  padding-top: 100px;
  overflow: hidden;
}

.reviews {
  padding: 65px 0;
}

.reviews .swiper-slide__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 691px;
  padding: 16px 43px;
  background: #3F3F3F;
}

.reviews__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 22px;
}

.reviews__user-ava {
  margin-right: 12px;
}

.reviews__user-name {
  font-size: 24px;
  font-weight: 700;
}

.reviews__text {
  font-size: 18px;
  font-weight: 300;
  color: #D7D7D7;
  margin-bottom: 20px;
}

.reviews__time-work {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
}

.reviews__img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 266px;
}

.reviews__img-item {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
}

.slider-reviews {
  position: relative;
}

.slider-reviews__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 200px;
  height: 40px;
  margin: 0 auto;
  margin-top: 58px;
}

.slider-reviews__nav img {
  display: block;
}

.slider-reviews .swiper-button-prev,
.slider-reviews .swiper-button-next {
  position: initial;
  width: auto;
  height: inherit;
  margin-top: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.slider-reviews .swiper-button-prev:after,
.slider-reviews .swiper-button-next:after {
  display: none;
}

.slider-reviews .swiper-slide {
  opacity: .4;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.slider-reviews .swiper-slide-active {
  opacity: 1;
}

.decor-item-4 {
  left: 0;
  top: -280px;
}

.advantages {
  position: relative;
  padding: 65px 0;
}

.advantages__title {
  margin-bottom: 50px;
}

.advantages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -15px;
}

.advantages__item {
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 15px;
}

.advantages__item-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 200px;
}

.advantages__item-num {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: 'RussoOne';
  font-size: 200px;
  font-weight: 400;
  line-height: 1;
  opacity: .2;
}

.advantages__item-text {
  position: relative;
  font-size: 24px;
  line-height: 110%;
  padding-left: 32px;
  min-height: 78px;
}

.advantages,
.how-it-work {
  background: none;
}

.general-section {
  background: -o-linear-gradient(338.66deg, #202324 0, #010101 100%);
  background: linear-gradient(111.34deg, #202324 0, #010101 100%);
  overflow: hidden;
}

.how-it-work {
  position: relative;
  padding: 65px 0;
  padding-bottom: 100px;
}

.how-it-work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -15px;
  margin-bottom: -100px;
}

.how-it-work__list-item {
  position: relative;
  max-width: 33.333%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  padding: 15px;
  margin-bottom: 100px;
}

.how-it-work__list-item:nth-child(4),
.how-it-work__list-item:nth-child(5) {
  max-width: 40%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}

.how-it-work__list-item:nth-child(3) .item-decor {
  display: none;
}

.how-it-work__list-item:nth-child(4) .item-decor {
  left: 62%;
}

.how-it-work__list-item-text {
  font-size: 24px;
  line-height: 130%;
}

.item-decor {
  position: absolute;
  top: 50px;
  left: 53%;
  width: 173px;
}

.item-decor::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 73%;
  height: 2px;
  background: url("../img/line.svg");
}

.item-decor .point {
  margin-right: 0;
  width: 14px;
  height: 14px;
}

.item-decor .point::before {
  width: 20px;
  height: 20px;
}

.item-decor .point:nth-child(2) {
  left: auto;
  right: 0;
}

.decor-item-5 {
  top: 30%;
  left: 0;
}

.decor-item-6 {
  right: 0;
  top: -40%;
}

.masters {
  position: relative;
  padding: 65px 0;
  padding-bottom: 150px;
}

.masters .decor-item-5 {
  top: auto;
  bottom: -18%;
}

.masters__title {
  margin-bottom: 20px;
}

.masters__subtitle {
  font-size: 24px;
  font-weight: 700;
  opacity: .7;
  margin-bottom: 65px;
}

.masters__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.masters__item {
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 10px;
}

.masters__item:nth-child(2) .masters__item-img {
  top: 0;
  left: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.masters__item-img-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 390px;
  margin-bottom: 30px;
}

.masters__item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
}

.masters__item-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.masters__item-experience {
  font-size: 24px;
  font-weight: 700;
  opacity: .7;
}

.rating {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  top: 18px;
  right: 18px;
  font-family: 'RussoOne';
  font-size: 18px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #20CB27;
}

.feedback {
  position: relative;
  z-index: 1;
  padding: 150px 0;
}

.feedback__inner {
  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;
}

.feedback__title {
  text-align: center;
  display: inline-block;
  margin-bottom: 65px;
}

.feedback .point {
  top: 27px;
  left: 16%;
}



.feedback .form-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;
    max-width: 550px;
}

.feedback .form__warning {
  color: #ffffffab;
  padding-top: 24px;
  text-align: center;
}

.footer {
  position: relative;
  padding: 65px 0;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 75px;
}

.footer .menu {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.footer .button {
  margin-left: auto;
}

.modal {
  cursor: pointer;
  outline: 0;
}

.modal-dialog-centered::before {
  display: none;
}

.modal-backdrop {
  background: #00091F;
  opacity: .75;
}

.modal-dialog {
  max-width: 560px;
}

.modal-content {
  width: 100%;
  padding: 60px 15px;
  margin: 0 auto;
  background: #fff;
  -webkit-box-shadow: 0px 70px 70px rgba(0, 8, 29, 0.45);
          box-shadow: 0px 70px 70px rgba(0, 8, 29, 0.45);
  border: 0;
  border-radius: 0px;
  cursor: initial;
}

.modal-content .form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: none;
  margin: 0 auto;
  max-width: 409px;
}

.modal-content .form .input-wrapper {
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
  border-bottom: 3px solid #20CB27;
}

.modal-content .form .input {
  width: 100%;
  max-width: 100%;
}

.modal-content .form .form__warning {
  font-size: 16px;
  color: #8F8F8F;
  text-align: center;
  line-height: 130%;
  margin-top: 60px;
}

.modal-content .form .button {
  display: block;
  font-size: 22px;
  margin: 0 auto;
  margin-top: 15px;
}

.modal-header {
  -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;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

.modal-body {
  padding: 0;
}

.modal__title {
  font-size: 36px;
  color: #000;
  text-align: center;
  text-transform: initial;
  line-height: 110%;
  padding-left: 0;
  margin-bottom: 15px;
}

.modal__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #595959;
  line-height: 130%;
  text-align: center;
  margin-bottom: 60px;
}

.modal-subtitle {
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
}

.modal-close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 50%;
}

.modal-close svg {
  position: absolute;
  width: 18px;
  height: 18px;
  margin-right: 0;
  opacity: .5;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.modal-close svg:hover {
  opacity: 1;
}

.modal__button {
  margin-bottom: 10px;
}

.thanks-window {
  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;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  height: 100vh;
  background: #00091f8c;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.thanks-window--active {
  visibility: visible;
  opacity: 1;
}

.thanks-window__container {
  position: relative;
  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;
  max-width: 560px;
  width: 100%;
  padding: 70px;
  margin: 0 auto;
  background: #fff;
  -webkit-box-shadow: 0px 70px 70px rgba(0, 8, 29, 0.45);
          box-shadow: 0px 70px 70px rgba(0, 8, 29, 0.45);
  -webkit-transform: translateY(-15%);
      -ms-transform: translateY(-15%);
          transform: translateY(-15%);
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.thanks-window__container--active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.check {
  margin-bottom: 60px;
}

.thanks-window__title {
  font-size: 36px;
  line-height: 110%;
  color: #000;
  text-transform: initial;
  text-align: center;
  padding-left: 0;
  margin-bottom: 25px;
}

.thanks-window__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #595959;
  line-height: 130%;
  text-align: center;
  margin-bottom: 60px;
}

.thanks-window__button {
  display: block;
  margin: 0 auto;
}

.close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 1;
}

.thanks-window__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 1;
}

.close svg {
  width: 18px;
  height: 18px;
  margin-right: 0;
  opacity: .5;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.close:hover svg {
  opacity: 1;
}

@media (max-width: 1200px) {
  .menu {
    margin-left: 90px;
  }

  .button {
    height: 59px;
  }

  .main-screen {
    padding-top: 150px;
  }

  .main-screen__bg {
    height: 100%;
  }

  h1 {
    font-size: 50px;
  }

  .main-screen .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .main-screen .button {
    width: 290px;
    height: 59px;
  }

  .main-screen .input-wrapper {
    margin-bottom: 15px;
  }

  .service__item {
    height: 215px;
  }

  .service__item-info {
    font-size: 18px;
  }

  .service__item-name {
    max-width: 125px;
  }

  .img-construction__img {
    -webkit-transform: translate(-50%, -50%) translateZ(0);
            transform: translate(-50%, -50%) translateZ(0);
    width: 450px;
  }

  .img-construction__circle {
    width: 400px;
    height: 400px;
  }

  .img-construction__item-circle {
    width: 20px;
    height: 20px;
  }

  .img-construction__item-circle::before {
    width: 30px;
    height: 30px;
  }

  .img-construction__item:nth-child(1) {
    top: 9px;
    left: 25px;
  }

  .img-construction__item:nth-child(2) {
    top: -7px;
    right: 21px;
  }

  .img-construction__item-text {
    font-size: 22px;
  }

  .img-construction__item:nth-child(3) {
    bottom: -50px;
    right: 121px;
  }

  .promotions .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .promotions .input-wrapper {
    margin-bottom: 10px;
  }

  .promotions .button {
    width: 290px;
  }

  .promotions__title-2,
  .promotions .form-block__text-2 {
    margin-bottom: 30px;
  }

  .reviews .swiper-slide__inner {
    padding: 30px;
    min-height: 678px;
  }

  .reviews__img {
    height: 225px;
  }

  .advantages__item-num {
    font-size: 150px;
  }

  .item-decor {
    width: 110px;
    left: 63%;
  }

  .how-it-work__list-item:nth-child(4),
  .how-it-work__list-item:nth-child(5) {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .how-it-work__list-item:nth-child(4) .item-decor {
    left: 69%;
  }

  .decor-item-6 {
    right: -190px;
  }

  .decor-item-5 {
    opacity: .3;
  }

  .feedback {
    padding: 150px 0;
  }

  .feedback .button {
    height: auto;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 15px 0;
    background: #000;
  }

  .header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .header__collapse {
    position: absolute;
    top: 69px;
    left: 0;
    -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;
    height: 0;
    width: 100%;
    padding: 0;
    background: #000000c9;
    overflow: hidden;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    z-index: 1000;
  }

  .header__collapse--active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 1000px;
    padding: 100px 0;
  }

  .menu {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .menu__item {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
    padding: 0;
  }

  .button {
    padding: 16px 24px;
  }

  .contacts {
    -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;
    margin-left: 0;
  }

  .phone {
    font-size: 20px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .burger {
    position: relative;
    display: inline-block;
  }

  .burger__line {
    position: relative;
    width: 18px;
    height: 2px;
    margin-bottom: 4px;
    background: #fff;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
  }

  .burger__line-2 {
    width: 14px;
    margin-left: auto;
  }

  .burger__line-4 {
    position: absolute;
    top: 0px;
    left: -7px;
    -webkit-transform: rotate(45deg) translateX(-12px);
        -ms-transform: rotate(45deg) translateX(-12px);
            transform: rotate(45deg) translateX(-12px);
    opacity: 0;
  }

  .burger__line-5 {
    position: absolute;
    top: 0px;
    right: -7px;
    -webkit-transform: rotate(-45deg) translateX(12px);
        -ms-transform: rotate(-45deg) translateX(12px);
            transform: rotate(-45deg) translateX(12px);
    opacity: 0;
    -webkit-transition-delay: .1s;
         -o-transition-delay: .1s;
            transition-delay: .1s;
  }

  .burger__line:last-child {
    margin-bottom: 0;
  }

  .burger__line-1--active {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    width: 0;
  }

  .burger__line-2--active {
    width: 0;
  }

  .burger__line-3--active {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 0;
  }

  .burger__line-4--active {
    -webkit-transform: rotate(45deg) translateX(9px);
        -ms-transform: rotate(45deg) translateX(9px);
            transform: rotate(45deg) translateX(9px);
    opacity: 1;
    left: -24px;
  }

  .burger__line-5--active {
    -webkit-transform: rotate(-45deg) translateX(-9px);
        -ms-transform: rotate(-45deg) translateX(-9px);
            transform: rotate(-45deg) translateX(-9px);
    opacity: 1;
  }

  .main-screen {
    z-index: 1;
  }

  .main-screen::before,
  .main-screen::after {
    display: none;
  }

  .img-construction__img,
  .img-construction__circle {
    display: none;
  }

  .img-construction__item {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .img-construction__item:nth-child(1),
  .img-construction__item:nth-child(2),
  .img-construction__item:nth-child(3) {
    top: 0;
    left: 0;
    max-width: 33.333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 15px;
  }

  .img-construction__item-circle {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-right: 25px;
    top: 10px;
    margin: 0;
    margin-right: 15px;
    min-width: 16px;
    width: 16px;
    height: 16px;
  }

  .img-construction__item-circle::before {
    width: 25px;
    height: 25px;
  }

  .img-construction__item-text {
    text-align: left;
    font-size: 18px;
  }

  .img-construction__item-text br {
    display: none;
  }

  .img-construction__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    margin: -15px;
  }

  .main-screen .form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .main-screen .input-wrapper {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .main-screen__col {
    height: auto;
    margin-bottom: 50px;
  }

  .main-screen .row {
    margin-bottom: -50px;
  }

  .main-screen {
    padding-bottom: 100px;
  }

  .service__item {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    height: 255px;
  }

  .service__item-img {
    width: auto;
    height: auto;
  }

  .service__item-name {
    max-width: 192px;
  }

  h2 {
    font-size: 40px;
  }
  
  .promotions {
    padding-bottom: 100px;
  }

  .promotions__content {
    padding: 50px;
  }

  .promotions__img {
    right: -70px;
    width: 380px;
  }

  .form-block {
    position: relative;
    z-index: 20;
  }

  .promotions__img-item {
    right: 20px;
    width: 300px;
    height: 300px;
  }

  .advantages__list {
    margin-bottom: -50px;
  }

  .reviews__img-item {
    height: 100%;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
            transform: translate(-50%, -50%) translateZ(0);
  }

  .advantages__item {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin-bottom: 50px;
  }

  .advantages__item-inner {
    height: auto;
  }

  .advantages__title {
    margin-bottom: 80px;
  }

  .reviews .swiper-slide__inner {
    min-height: 759px;
  }

  .how-it-work__list-item {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin-bottom: 30px;
  }

  .item-decor {
    display: none;
  }

  .how-it-work__list-item-text br {
    display: none;
  }

  .how-it-work__list {
    margin-bottom: -30px;
  }

  .masters__list {
    margin-bottom: -30px;
  }

  .masters__item {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin-bottom: 30px;
  }

  .masters__item-img-box {
    margin-bottom: 15px;
  }

  .masters__item-experience {
    line-height: 1;
  }

  .masters .decor-item-5 {
    bottom: -60px;
  }

  .feedback .input-wrapper,
  .feedback .button {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .feedback .input {
    font-size: 18px;
    height: auto;
    width: 100%;
    max-width: 100%;
  }

  .feedback .button {
    font-size: 20px;
  }

  .feedback__title {
    padding-left: 0;
  }

  .feedback .point {
    top: 23px;
    left: 10%;
  }

  .feedback .form {
    width: 100%;
  }

  .feedback .form__warning {
    text-align: center;
  }

  .footer .menu {
    width: auto;
    margin-bottom: 0;
  }

  .footer .menu__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer .menu__item {
    font-size: 18px;
    padding: 0 15px;
    margin-bottom: 0;
  }

  .footer .phone {
    margin-bottom: 0;
  }

  .footer__inner {
    margin-bottom: 40px;
  }

  .feedback {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 320px;
  }

  h1 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }
  
  .logo-wrapper .phone {
    display: block;
  }
  
  .main-screen {
    padding-top: 120px;
  }

  .form-block__text-1,
  .form-block__text-2 {
    font-size: 20px;
    line-height: 130%;
  }

  .main-screen .form,
  .feedback .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .main-screen .input-wrapper,
  .promotions .form,
  .feedback .input-wrapper {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .service__item {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .service__item-name {
    max-width: 180px;
  }

  .service__item-img {
    height: auto;
  }

  .feedback .button {
    max-width: 100%;
    width: 100%;
    min-height: 59px;
  }

  .form__warning {
    font-size: 14px;
  }

  .form-block__text-2 {
    max-width: 250px;
  }

  .img-construction__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .img-construction__item:nth-child(1),
  .img-construction__item:nth-child(2),
  .img-construction__item:nth-child(3) {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .img-construction__item-circle {
    top: 4px;
  }

  .img-construction__item-text {
    margin-bottom: 0;
  }

  .main-screen__bg,
  .promotions__img,
  .promotions__img-item,
  .masters .decor-item-5,
  .decor-item-6,
  .decor-item-5,
  .feedback .point {
    display: none;
  }

  .point {
    width: 16px;
    height: 16px;
  }

  .point::before {
    width: 25px;
    height: 25px;
  }

  .promotions__content {
    padding: 15px;
  }

  .input {
    text-align: center;
    width: 100%;
  }

  .promotions .button {
    max-width: 100%;
  }

  .promotions .form {
    margin-bottom: 0;
  }

  .promotions__title {
    margin-bottom: -50px;
  }

  .promotions .swiper-pagination {
    width: 100%;
  }

  .reviews .swiper-slide__inner {
    padding: 15px;
    min-height: 696px;
  }

  .reviews__user-name {
    font-size: 20px;
  }

  .reviews__text {
    font-size: 16px;
  }

  .slider-reviews__nav {
    margin-top: 30px;
  }

  .point {
    top: 8px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  .advantages__item {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .advantages__item-text {
    font-size: 20px;
  }

  .advantages__item-num {
    font-size: 120px;
    top: 38%;
  }

  .decor-item-4 {
    top: 0;
  }

  .how-it-work__list-item,
  .how-it-work__list-item:nth-child(4),
  .how-it-work__list-item:nth-child(5) {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 50px;
  }

  .how-it-work__list-item-text {
    font-size: 20px;
  }

  .item-decor,
  .how-it-work__list-item:nth-child(4) .item-decor {
    display: block;
    top: auto;
    left: 0;
    bottom: -85%;
    -webkit-transform: rotate(90deg) translateX(-50%);
        -ms-transform: rotate(90deg) translateX(-50%);
            transform: rotate(90deg) translateX(-50%);
    height: 30px;
    width: 60px;
  }

  .how-it-work__list-item:nth-child(3) .item-decor {
    display: block;
  }

  .how-it-work {
    padding-bottom: 50px;
  }

  .masters__subtitle {
    font-size: 20px;
    line-height: 130%;
  }

  .masters__item {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .masters__item-name,
  .masters__item-experience {
    font-size: 20px;
  }

  .masters {
    padding-bottom: 90px;
  }

  .footer__inner {
    -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;
  }

  .footer .logo {
    margin-bottom: 30px;
  }

  .footer .menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }

  .footer .menu__list {
    -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;
    width: 100%;
  }

  .footer .menu__item {
    font-size: 20px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .footer .button {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }

  .modal-content,
  .thanks-window__container {
    max-width: 320px;
    padding: 40px 15px;
  }

  .modal__title,
  .thanks-window__title {
    font-size: 22px;
  }

  .modal__subtitle,
  .thanks-window__subtitle {
    font-size: 18px;
  }

  .check {
    margin-bottom: 30px;
  }

  .modal__subtitle {
    margin-bottom: 30px;
  }
}