@charset "UTF-8";

:root {
  --color-white: #fff;
  --color-black: #000;
  --Yellow-Background: #f8f8f8;
  --Arrows-Grey: #adadad;
  --Biege-Form: #b6aa83;
  --Yellow: #d2b95f;
  --Yellow-hover: #edcd5a;
  --Blue-main: #0074c9;
  --Dark-Blue-Footer: #334b62;
  --Dark-Blue: #182939;
  --Dark-Text-Main: #1e2022;
  --Text-Grey: #606568;
  --transition-normal: all 0.3s ease 0s;
}

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -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%;
  min-width: 360px;
}

input,
button,
textarea {
  font-family: 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;
  cursor: pointer;
}

img {
  vertical-align: top;
}

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

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 19px;
}

/*Обнуление*/

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2"), url("../fonts/Manrope-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.woff2") format("woff2"), url("../fonts/Manrope-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2"), url("../fonts/Manrope-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  color: var(--Dark-Text-Main);
  font-size: 16px;
  line-height: 1.5625;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

body.lock {
  overflow: hidden;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin: 0 auto;
  max-width: 1380px;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* плавное изменение прозрачности  placeholder-а при фокусе */

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

textarea::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

textarea:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

textarea:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

textarea:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #999;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background: #fff;
  position: relative;
}

.main.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main.inner .block-top {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.main.inner .block-top .block-top__content {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.main.inner .block-top .block-top__content .container {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

h1 {
  color: inherit;
  text-align: center;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.09091;
}

h2 {
  text-align: center;
  color: inherit;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.26316;
}

h3 {
  color: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
}

h4 {
  color: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33333;
}

h5 {
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

h6 {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28571;
}

.slider-prev {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 56px;
  max-width: 100%;
  height: 56px;
  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;
  color: var(--Arrows-Grey);
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.slider-prev.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.slider-prev.swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}

.slider-prev svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.slider-next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 56px;
  max-width: 100%;
  height: 56px;
  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;
  color: var(--Arrows-Grey);
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.slider-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.slider-next.swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}

.slider-next svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.slider-scrollbar {
  height: 30px;
  position: relative;
}

.slider-scrollbar:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #c9d9e5;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

.slider-scrollbar .swiper-scrollbar-drag {
  background: transparent;
  cursor: pointer;
  border-radius: 0px;
  opacity: 1;
  position: relative;
  z-index: 2;
}

.slider-scrollbar .swiper-scrollbar-drag:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--Blue-main);
  position: absolute;
  opacity: 1;
  top: 50%;
  left: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-group {
  margin-bottom: 16px;
}

.form-control {
  border-radius: 50px;
  height: 56px;
  background: var(--color-white);
  width: 100%;
  padding: 5px 24px;
  color: var(--Dark-Text-Main);
  font-size: 15px;
}

.form-checkbox label {
  cursor: pointer;
  position: relative;
}

.form-checkbox label input {
  width: 1px;
  height: 1px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
}

.form-checkbox label input:checked + span:after {
  opacity: 1;
}

.form-checkbox label span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  padding-left: 28px;
  position: relative;
  color: var(--color-white);
  -webkit-font-feature-settings: "clig" off, "liga" off;
          font-feature-settings: "clig" off, "liga" off;
  font-size: 13px;
}

.form-checkbox label span:before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--color-white);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.form-checkbox label span:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  border-radius: 1.5px;
  background: var(--color-white);
  opacity: 0;
}

.main-select {
  position: relative;
}

.main-select:not(:last-child) {
  margin-bottom: 15px;
}

.main-select.open .main-select__arrow svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.main-select__top {
  border-radius: 50px;
  border: 1px solid #dfdfdf;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  padding: 10px 24px;
  cursor: pointer;
}

.main-select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  color: #5b5b5b;
  font-size: 15px;
  line-height: 1.33333;
  pointer-events: none;
  color: var(--Dark-Text-Main);
}

.main-select__text::-webkit-input-placeholder {
  color: #5b5b5b;
}

.main-select__text::-moz-placeholder {
  color: #5b5b5b;
}

.main-select__text:-moz-placeholder {
  color: #5b5b5b;
}

.main-select__text:-ms-input-placeholder {
  color: #5b5b5b;
}

.main-select__text:focus::-webkit-input-placeholder {
  color: #5b5b5b;
}

.main-select__text:focus::-moz-placeholder {
  color: #5b5b5b;
}

.main-select__text:focus:-moz-placeholder {
  color: #5b5b5b;
}

.main-select__text:focus:-ms-input-placeholder {
  color: #5b5b5b;
}

.main-select__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  max-width: 100%;
  height: 32px;
  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;
  color: var(--Dark-Text-Main);
}

.main-select__arrow svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.main-select__body {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  z-index: 5;
  border: 1px solid #dfdfdf;
  background: var(--color-white);
  border-radius: 20px;
  padding: 15px 5px 15px 0;
}

.main-select__body.open {
  display: block;
}

.main-select__list {
  max-height: 300px;
  overflow: auto;
}

.main-select__list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: transparent;
}

.main-select__list::-webkit-scrollbar-thumb {
  background: var(--Text-Grey);
  border-radius: 4px;
  border: none;
}

.main-select__item {
  padding: 5px 24px;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.main-select__item:hover {
  color: var(--Yellow-hover);
}

.main-select__item.selected {
  padding: 5px 35px 5px 24px;
  position: relative;
  color: var(--Yellow-hover);
}

.main-select__item.selected:before {
  content: "";
  display: block;
  width: 35px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background: url("../img/icon/double-chevron-yellow.svg") center/11px auto no-repeat;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.item-no-ui__slider {
  padding: 15px 0;
}

.no-ui-slider.noUi-target {
  background: transparent;
  border-radius: 3px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.no-ui-slider.noUi-target .noUi-base {
  background: #e1edf6;
  border-radius: 3px;
}

.no-ui-slider.noUi-target.noUi-horizontal {
  height: 6px;
}

.no-ui-slider.noUi-target .noUi-connects {
  border-radius: 3px;
  background: #e1edf6;
}

.no-ui-slider.noUi-target .noUi-connects .noUi-connect {
  background: var(--Blue-main);
  border-radius: 3px;
}

.no-ui-slider.noUi-target .noUi-handle {
  cursor: pointer;
  padding: 0 5px;
  width: auto;
  min-width: 56px;
  height: 40px;
  border-radius: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 6px 21px 0px rgba(100, 156, 198, 0.24);
          box-shadow: 0px 6px 21px 0px rgba(100, 156, 198, 0.24);
  right: -28px;
  top: -17px;
  border: none;
  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;
}

.no-ui-slider.noUi-target .noUi-handle:before {
  display: none;
}

.no-ui-slider.noUi-target .noUi-handle:after {
  display: none;
}

.no-ui-slider.noUi-target .noUi-handle .noUi-touch-area {
  display: none;
}

.no-ui-slider.noUi-target .noUi-handle .noUi-tooltip {
  border: none;
  position: static;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  color: var(--Blue-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33333;
  padding: 0;
}

.no-ui-slider.noUi-target .noUi-handle .noUi-tooltip sup {
  font-size: 70%;
  position: relative;
  top: 3px;
}

.type-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -8px;
}

.type-block__col {
  padding: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  min-width: 33.333%;
}

.item-type-form label {
  cursor: pointer;
}

.item-type-form input {
  display: none;
}

.item-type-form input:checked + .item-type-form__body .item-type-form__img {
  border: 6px solid var(--Yellow);
}

.item-type-form__body {
  position: relative;
}

.item-type-form__img {
  border-radius: 20px;
  background: #000;
  display: block;
  width: 100%;
  height: 127px;
  position: relative;
  overflow: hidden;
}

.item-type-form__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}

.item-type-form__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33333;
  word-wrap: break-word;
}

.checkbox-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 14px;
}

.item-checkbox {
  display: inline-block;
  line-height: 1;
}

.item-checkbox label {
  display: block;
  cursor: pointer;
  position: relative;
}

.item-checkbox label input {
  width: 1px;
  height: 1px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
}

.item-checkbox label input:checked + span:before {
  border-color: var(--Yellow);
}

.item-checkbox label input:checked + span:after {
  opacity: 1;
}

.item-checkbox label span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  padding-left: 28px;
  position: relative;
  color: var(--Dark-Text-Main);
  -webkit-font-feature-settings: "clig" off, "liga" off;
          font-feature-settings: "clig" off, "liga" off;
  font-size: 15px;
  line-height: 1.33333;
}

.item-checkbox label span:before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #878c97;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.item-checkbox label span:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  border-radius: 1.5px;
  background: var(--Yellow);
  opacity: 0;
}

.main-popup {
  display: none;
}

.main-popup.fancybox__content {
  padding: 0;
  background: transparent;
  max-width: 580px;
  width: 100%;
}

.main-popup.fancybox__content .f-button.is-close-btn {
  top: 31px;
  right: 27px;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: var(--color-white);
  opacity: 1;
  padding: 0;
  color: var(--color-black);
}

.main-popup.fancybox__content .f-button.is-close-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.main-popup__body {
  border-radius: 290px;
  background: var(--Biege-Form);
  -webkit-box-shadow: 0px 4px 94px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 94px 0px rgba(0, 0, 0, 0.15);
  padding: 154px 70px;
}

.main-popup__title {
  text-align: center;
  color: var(--color-white);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.26316;
  margin-bottom: 63px;
}

.thank-popup {
  display: none;
}

.thank-popup.fancybox__content {
  padding: 28px 32px;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 74px 0px rgba(0, 0, 0, 0.19);
          box-shadow: 0px 4px 74px 0px rgba(0, 0, 0, 0.19);
}

.thank-popup__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.thank-popup__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  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;
}

.thank-popup__text {
  color: var(--Dark-Text-Main);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.38889;
}

.bread-crumbs {
  padding: 21px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.bread-crumbs__list > span {
  display: inline-block;
  margin: 0 5px;
  color: #898888;
  font-size: 15px;
  line-height: 1.33333;
  letter-spacing: 0.3px;
}

.bread-crumbs__item {
  display: inline;
  color: #898888;
  font-size: 15px;
  line-height: 1.33333;
  letter-spacing: 0.3px;
}

.bread-crumbs__item a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.bread-crumbs__item a:hover {
  color: var(--color-white);
}

.bread-crumbs__item span {
  color: var(--color-white);
}

.number-rooms-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
}

.number-rooms-list__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
  padding: 5px;
}

.item-number-rooms label {
  cursor: pointer;
}

.item-number-rooms label input {
  display: none;
}

.item-number-rooms label input:checked + span {
  background: var(--Blue-main);
  border-color: var(--Blue-main);
  color: var(--color-white);
}

.item-number-rooms label span {
  border-radius: 30px;
  display: block;
  height: 56px;
  border: 1px solid #c8cdcf;
  padding: 10px 15px;
  color: var(--Text-Grey);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.33333;
  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;
  text-align: center;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-number-rooms label span:hover {
  border-color: var(--Blue-main);
}

.repair-request {
  display: none;
}

.repair-request.fancybox__content {
  padding: 0;
  background: transparent;
}

.repair-request.fancybox__content .f-button.is-close-btn {
  top: 42px;
  right: 42px;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  opacity: 1;
  padding: 0;
  color: var(--color-black);
}

.repair-request.fancybox__content .f-button.is-close-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.repair-request__body {
  border-radius: 80px;
  background: var(--Biege-Form);
  -webkit-box-shadow: 0px 4px 74px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 4px 74px 0px rgba(0, 0, 0, 0.35);
  padding: 100px 154px 130px;
}

.repair-request__title {
  color: var(--color-white);
  text-align: center;
  font-family: Manrope;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.26316;
  margin-bottom: 74px;
}

.repair-request__title span {
  color: var(--Dark-Blue);
}

.repair-request__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 72px;
     -moz-column-gap: 72px;
          column-gap: 72px;
}

.repair-request__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.repair-request__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 300px 300px 0;
  padding-bottom: 69.21824%;
}

.repair-request__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.repair-request__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 348px;
  max-width: 100%;
}

.repair-request .form-control {
  background: var(--color-white);
}

.repair-request .form-get-estimate__check {
  margin-top: 32px;
}

.btn-calc {
  color: var(--color-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  border-radius: 100px;
  background: var(--Yellow);
  padding: 5px 26px 5px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  height: 52px;
}

.btn-calc svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  fill: currentColor;
}

.btn {
  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;
  text-align: center;
  height: 56px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--Dark-Text-Main);
  color: var(--Dark-Text-Main);
  font-size: 20px;
  font-weight: 700;
  padding: 10px 30px;
}

.btn:hover {
  background: var(--Dark-Text-Main);
  color: var(--color-white);
}

.btn.btn-outline-white {
  border: 1px solid var(--Yellow-Background);
  color: var(--Yellow-Background);
}

.btn.btn-outline-white:hover {
  background: var(--Yellow-Background);
  color: var(--Dark-Text-Main);
}

.btn.btn-outline-black {
  border: 1px solid var(--Dark-Text-Main);
  color: var(--Dark-Text-Main);
}

.btn.btn-outline-black:hover {
  background: var(--Dark-Text-Main);
  color: var(--color-white);
}

.btn.btn-outline-blue {
  color: var(--Blue-main);
  border: 1px solid var(--Blue-main);
}

.btn.btn-outline-blue:hover {
  color: var(--color-white);
  background: var(--Blue-main);
}

.btn.btn-outline-yellow {
  border: 1px solid var(--Yellow);
  color: var(--Yellow);
}

.btn.btn-outline-yellow:hover {
  color: var(--color-white);
  background: var(--Yellow);
}

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

.header {
  background: #fff;
}

.header-top {
  padding: 20px 0;
}

.header-top__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;
  margin: 0 -15px;
}

.header-top__left {
  padding: 0 15px;
}

.header-top__center {
  padding: 0 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-top__boxes {
  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;
  -webkit-column-gap: 52px;
     -moz-column-gap: 52px;
          column-gap: 52px;
}

.header-top__text {
  color: var(--Text-Grey);
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
}

.header-top__text a {
  display: inline-block;
  margin-left: 13px;
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.header-top__text svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 14px;
  max-width: 100%;
  height: 14px;
  fill: currentColor;
}

.header-top__right {
  padding: 0 15px;
}

.menu-top__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
  padding: 0;
}

.menu-top__item {
  list-style: none;
}

.menu-top__link {
  color: var(--Text-Grey);
  font-size: 15px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu-top__link.active {
  color: var(--Dark-Text-Main);
  font-weight: 700;
}

.btn-call-back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  cursor: pointer;
}

.btn-call-back__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  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;
  color: var(--Dark-Text-Main);
}

.btn-call-back__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 19px;
  max-width: 100%;
  height: 19px;
  fill: currentColor;
}

.btn-call-back__text {
  color: var(--Dark-Text-Main);
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.btn-call-back__text:before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: var(--Dark-Text-Main);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.header-bottom {
  padding: 20px 0;
}

.header-bottom__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -15px;
}

.header-bottom__left {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-bottom__center {
  padding: 0 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  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;
}

.header-bottom__right {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header-bottom__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}

.header-bottom__menu-icon {
  display: none;
}

.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
}

.logo__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  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;
  color: var(--Dark-Blue);
}

.logo__img svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.logo__title {
  color: var(--Dark-Text-Main);
  font-size: 25px;
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.logo__text {
  color: var(--Text-Grey);
  -webkit-font-feature-settings: "clig" off, "liga" off;
          font-feature-settings: "clig" off, "liga" off;
  font-size: 9px;
  line-height: 135%;
}

.menu {
  width: 100%;
}

.menu__top {
  display: none;
  padding: 0 30px;
}

.menu__close {
  width: 40px;
  height: 40px;
  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;
  cursor: pointer;
  text-align: right;
  color: var(--Dark-Text-Main);
  margin-left: auto;
  margin-right: -30px;
}

.menu__close svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  padding: 0;
  row-gap: 5px;
}

.menu__item {
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu__item.open .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.menu__item.open .menu__arrow {
  color: var(--Yellow);
}

.menu__item.open .menu__arrow svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  position: relative;
  top: 2px;
}

.menu__link {
  color: var(--Dark-Text-Main);
  font-size: 15px;
  font-weight: 800;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

/* .sub-menu {
	position: absolute;
	z-index: 8;
	background-color: white;
	display: none;
	-webkit-transition: var(--transition-normal);
  	-o-transition: var(--transition-normal);
  	transition: var(--transition-normal);
  	padding: 15px;
}

li.menu__item:hover > ul.sub-menu {
	display: block;
}

li.menu__item > ul.sub-menu li.menu-item:hover > ul.sub-menu {
	display: block;
	transform: translateX(59%);
}

ul.sub-menu li {
	list-style-type: none;
} */

.menu__link.active {
  position: relative;
  color: var(--Yellow);
}

.menu__link.active:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  position: absolute;
  bottom: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  background: url("../img/icon/double-chevron-yellow.svg") center/11px auto no-repeat;
}

.menu__arrow {
  color: var(--Dark-Text-Main);
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  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;
  cursor: pointer;
}

.menu__arrow svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.menu__bottom {
  display: none;
}

.menu__info {
  display: none;
}

.menu__actions {
  padding: 30px 0;
  display: none;
  -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;
  row-gap: 22px;
}

.icon-menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  cursor: pointer;
  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;
}

.icon-menu.active span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.icon-menu.active span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}

.icon-menu.active span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 8px;
}

.icon-menu__body {
  width: 20px;
  height: 14px;
  position: relative;
}

.icon-menu__body span {
  position: absolute;
  top: 6px;
  width: 100%;
  height: 2px;
  left: 0;
  background: var(--Dark-Text-Main);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 2px;
}

.icon-menu__body span:first-child {
  top: 0;
}

.icon-menu__body span:last-child {
  top: auto;
  bottom: 0;
}

.footer {
  background: var(--Dark-Blue);
}

.footer .container {
  max-width: 1590px;
}

.footer__top {
  padding: 77px 0;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}

.footer__logo {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.footer__logo .logo__img {
  color: var(--color-white);
}

.footer__logo .logo__title {
  color: var(--color-white);
}

.footer__logo .logo__text {
  color: #a8b0b6;
}

.footer__col-1 {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.footer__heading {
  color: var(--color-white);
  -webkit-font-feature-settings: "clig" off, "liga" off;
          font-feature-settings: "clig" off, "liga" off;
  font-size: 16px;
  font-weight: 700;
  line-height: 171.875%;
  margin-bottom: 28px;
}

.footer__col-2 {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.footer__info {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.footer__contacts {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 8px;
}

.footer__contact {
  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;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  color: #bbb;
  font-size: 15px;
}

.footer__contact span {
  display: inline-block;
  margin-left: 13px;
}

.footer__contact svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 15px;
  max-width: 100%;
  height: 15px;
  fill: var(--Dark-Blue-Footer);
}

.footer a.footer__contact {
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.footer__actions {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 15px;
}

.footer__call-back {
  cursor: pointer;
  color: var(--Yellow);
  -webkit-font-feature-settings: "clig" off, "liga" off;
          font-feature-settings: "clig" off, "liga" off;
  font-size: 14px;
  line-height: 250%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.footer__bottom {
  padding: 46px 0 78px;
  border-top: 1px solid rgba(221, 221, 221, 0.14);
}

.footer__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 85px;
     -moz-column-gap: 85px;
          column-gap: 85px;
}

.footer__bottom-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.footer__bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.footer__bottom-link {
  color: var(--Blue-main);
  font-size: 13px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.footer-menu {
  padding: 0;
}

.footer-menu li {
  list-style: none;
}

.footer-menu li a {
  color: #bbb;
  -webkit-font-feature-settings: "clig" off, "liga" off;
          font-feature-settings: "clig" off, "liga" off;
  font-size: 15px;
  line-height: 220%;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.footer-menu li a.active {
  color: var(--Yellow);
}

.social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
}

.social-block__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  color: var(--Dark-Blue-Footer);
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  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;
}

.social-block__item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.our-employees {
  margin: 70px 0 55px;
}

.our-employees__title {
  margin-bottom: 54px;
}

.our-employees-slider {
  margin: 0 -107px;
  padding: 0 107px;
}

.our-employees-slider:before {
  content: "";
  display: block;
  width: 108px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 3;
  background: var(--color-white);
}

.our-employees-slider:after {
  content: "";
  display: block;
  width: 108px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -1px;
  z-index: 3;
  background: var(--color-white);
}

.our-employees-slider__slide {
  height: auto;
}

.our-employees-slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.our-employees-slider__prev {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 4;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.our-employees-slider__next {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 4;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.our-employees-slider__scrollbar {
  margin-top: 20px;
}

.item-our-employees {
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.item-our-employees__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 47.77518%;
}

.item-our-employees__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.item-our-employees__body {
  padding: 34px 15px 42px;
  background: var(--Dark-Blue);
  margin-top: -1px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-our-employees__name {
  color: var(--color-white);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 133.333%;
  margin-bottom: 8px;
}

.item-our-employees__info {
  color: var(--Yellow);
  font-size: 15px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.item-our-employees__info span {
  font-weight: 500;
  color: #899198;
  position: relative;
  top: 1px;
}

.item-our-employees__text {
  color: #b6bbbf;
  text-align: center;
  font-size: 15px;
  line-height: 1.86667;
  margin-top: 31px;
}

.faq {
  margin: 77px 0 57px;
}

.faq__title {
  margin-bottom: 62px;
}

.main-tab__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 12px;
}

.main-tab__nav-item {
  border-radius: 30px;
  border: 1px solid #c8cdcf;
  height: 34px;
  padding: 3px 20px;
  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;
  text-align: center;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
  color: var(--Text-Grey);
  font-size: 15px;
  font-weight: 800;
}

.main-tab__nav-item:hover {
  border-color: var(--Text-Grey);
}

.main-tab__nav-item.active {
  border-color: var(--Yellow);
  background: var(--Yellow);
  color: var(--color-white);
}

.main-tab__body {
  padding-top: 49px;
}

.main-tab__body-item {
  display: none;
}

.main-tab__body-item.active {
  display: block;
}

.faq-block__title {
  color: var(--Dark-Text-Main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 22px;
  padding: 0 32px;
}

.faq-spoiler {
  border-radius: 16px;
  overflow: hidden;
  background: var(--Yellow-Background);
  padding: 4px 0;
}

.faq-spoiler__item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.faq-spoiler__item.active .faq-spoiler__arrow svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.faq-spoiler__title {
  padding: 14px 32px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.faq-spoiler__heading {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  color: var(--Dark-Text-Main);
  font-size: 16px;
  line-height: 1.5625;
}

.faq-spoiler__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  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;
  color: var(--Dark-Text-Main);
}

.faq-spoiler__arrow svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.faq-spoiler__body {
  padding: 10px 32px 24px;
  display: none;
}

.faq-spoiler__body.active {
  display: block;
}

.faq-spoiler__text {
  color: var(--Text-Grey);
  font-size: 14px;
  line-height: 1.57143;
}

.get-estimate {
  background: var(--Biege-Form);
  padding: 54px 0;
}

.get-estimate__row {
  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: 0 -15px;
}

.get-estimate__left {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.get-estimate__box {
  max-width: 511px;
}

.get-estimate__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 250px;
  padding-bottom: 140.31311%;
}

.get-estimate__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.get-estimate__right {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.get-estimate__body {
  max-width: 425px;
}

.get-estimate__title {
  margin-bottom: 63px;
  text-align: left;
  color: var(--color-white);
}

.get-estimate .form-get-estimate {
  max-width: 350px;
}

.get-estimate .btn {
  width: 100%;
}

.form-get-estimate__check {
  margin-top: 63px;
}

.form-get-estimate button {
  width: 100%;
}

.payment-methods {
  padding-bottom: 55px;
  position: relative;
  margin-bottom: 129px;
}

.payment-methods__body {
  max-width: 1204px;
  border-radius: 0 0 80px 80px;
  background: var(--Dark-Blue);
  padding: 146px 38% 146px 118px;
}

.payment-methods__title {
  margin-bottom: 56px;
  text-align: left;
  color: var(--color-white);
}

.payment-methods__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.payment-methods__item:not(:last-child) {
  margin-bottom: 47px;
}

.payment-methods__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.payment-methods__icon img {
  width: 48px;
  height: auto;
}

.payment-methods__heading {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33333;
  margin-bottom: 4px;
}

.payment-methods__text {
  color: #a2a9b0;
  font-size: 15px;
  line-height: 1.66667;
}

.payment-methods__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 47.5%;
}

.payment-methods__img img {
  max-width: 100%;
}

.repair-cost {
  background: var(--Yellow-Background);
  padding: 63px 0 54px;
}

.repair-cost__title {
  margin-bottom: 62px;
}

.repair-cost__text {
  color: #606568;
  text-align: center;
  font-size: 13px;
  line-height: 1.92308;
  margin-top: 44px;
  opacity: 0.9;
}

.prices-block {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.prices-block__top {
  padding: 0 32px;
  margin-bottom: 22px;
}

.prices-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.prices-block__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.prices-block__title {
  color: var(--Dark-Text-Main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.prices-block__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 140px;
  max-width: 100%;
}

.prices-block__bottom {
  border-radius: 16px;
  background: var(--color-white);
  padding: 4px 0;
}

.item-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  padding: 14px 32px;
}

.item-prices:not(:last-child) {
  border-bottom: 1px solid #f4f4f4;
}

.item-prices__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  color: var(--Dark-Text-Main);
  font-size: 16px;
  line-height: 1.5625;
}

.item-prices__price {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 140px;
  max-width: 100%;
  color: var(--Dark-Text-Main);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.38889;
  white-space: nowrap;
}

.item-prices__price sup {
  font-size: 66%;
}

.make-repairs {
  margin: 96px 0 76px;
}

.make-repairs__title {
  margin-bottom: 60px;
}

.make-repairs__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -15px;
}

.make-repairs__col {
  padding: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.666%;
  max-width: 100%;
}

.make-repairs__col:nth-child(2),
.make-repairs__col:nth-child(3),
.make-repairs__col:nth-child(4n + 2),
.make-repairs__col:nth-child(4n + 3) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.make-repairs__col:nth-child(2) .item-make-repairs .item-make-repairs__img,
.make-repairs__col:nth-child(3) .item-make-repairs .item-make-repairs__img,
.make-repairs__col:nth-child(4n + 2) .item-make-repairs .item-make-repairs__img,
.make-repairs__col:nth-child(4n + 3) .item-make-repairs .item-make-repairs__img {
  padding-bottom: 86.18267%;
}

.item-make-repairs {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
}

.item-make-repairs:hover .item-make-repairs__img img {
  opacity: 0.5;
}

.item-make-repairs__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding-bottom: 41.62896%;
  background: #130f0c;
}

.item-make-repairs__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.3;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-make-repairs__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 32px 41px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  row-gap: 8px;
}

.item-make-repairs__title {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
}

.item-make-repairs__text {
  color: #ddd;
  font-size: 15px;
  line-height: 1.46667;
  max-width: 306px;
}

.item-make-repairs__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  color: var(--Yellow);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.item-make-repairs__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  max-width: 100%;
  height: 32px;
  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;
  color: var(--color-black);
}

.item-make-repairs__icon svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.document-block {
  margin: 59px 0 152px;
}

.document-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -20px;
}

.document-block__col {
  padding: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.item-document {
  cursor: pointer;
  border-radius: 30px;
  border: 2px solid #d2b95f;
  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;
  height: 100%;
  padding: 10px 10px 15px;
  text-align: center;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-document:hover {
  border-color: var(--Yellow-hover);
}

.item-document:hover .item-document__icon {
  color: var(--Yellow-hover);
}

.item-document__title {
  color: var(--Dark-Text-Main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
}

.item-document__text {
  color: var(--Text-Grey);
  font-size: 15px;
  line-height: 1.66667;
}

.item-document__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  color: #d2b95f;
  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;
  margin-top: auto;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-document__icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.we-working {
  padding: 70px 0 77px;
  background: var(--Yellow-Background);
}

.we-working__title {
  margin-bottom: 120px;
}

.we-working__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 150px;
  margin: 0 -15px;
}

.we-working__col {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

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

.we-working__number {
  color: var(--Yellow);
  text-align: center;
  font-size: 200px;
  font-weight: 300;
  line-height: 1;
}

.we-working__body {
  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;
  row-gap: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 164px;
  max-width: 100%;
}

.we-working__icon img {
  max-width: 85px;
  max-height: 85px;
}

.we-working__text {
  color: var(--Dark-Text-Main);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33333;
}

.we-working__btn {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.our-works {
  margin: 80px 0 100px;
}

.our-works__title {
  margin-bottom: 60px;
}

.slider-images {
  border-radius: 30px;
  margin-bottom: 12px;
}

.slider-images__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding-bottom: 37.40686%;
}

.slider-images__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-images-thumbs__slide {
  cursor: pointer;
}

.slider-images-thumbs__slide:hover .slider-images-thumbs__img img {
  opacity: 1;
}

.slider-images-thumbs__slide.swiper-slide-thumb-active .slider-images-thumbs__img:before {
  border-color: var(--Yellow);
  background: transparent;
  z-index: 3;
}

.slider-images-thumbs__slide.swiper-slide-thumb-active .slider-images-thumbs__img img {
  opacity: 1;
}

.slider-images-thumbs__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  border-radius: 20px;
  padding-bottom: 65.74074%;
  overflow: hidden;
}

.slider-images-thumbs__img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #e7edef;
  z-index: 1;
  border-radius: 20px;
  border: 6px solid transparent;
}

.slider-images-thumbs__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
  z-index: 2;
  border-radius: 20px;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.slider-images-info {
  margin-top: 30px;
}

.slider-images-info__slide {
  opacity: 0 !important;
}

.slider-images-info__slide.swiper-slide-active {
  opacity: 1 !important;
}

.slider-images-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -15px;
}

.slider-images-info__left {
  padding: 0 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.slider-images-info__title {
  color: var(--Dark-Text-Main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
  margin-bottom: 12px;
}

.slider-images-info__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 16px;
}

.slider-images-info__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.slider-images-info__icon {
  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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  color: var(--Yellow);
}

.slider-images-info__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.slider-images-info__text {
  color: var(--Text-Grey);
  font-size: 15px;
  line-height: 1.33333;
}

.slider-images-info__right {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.type-repairs {
  background: var(--Dark-Blue);
  padding: 68px 0 82px;
}

.type-repairs__title {
  margin-bottom: 60px;
  color: var(--color-white);
  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;
  -webkit-column-gap: 27px;
     -moz-column-gap: 27px;
          column-gap: 27px;
}

.type-repairs__title:before {
  content: "";
  display: block;
  width: 97px;
  height: 1px;
  background: rgba(217, 217, 217, 0.2);
  position: relative;
  top: 7px;
}

.type-repairs__title:after {
  content: "";
  display: block;
  width: 97px;
  height: 1px;
  background: rgba(217, 217, 217, 0.2);
  position: relative;
  top: 7px;
}

.product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -15px;
}

.product-list__col {
  padding: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.item-product {
  border-radius: 40px;
  border: 1px solid var(--Yellow);
  background: #142432;
  -webkit-box-shadow: 0px 9px 66px 0px rgba(140, 185, 200, 0.27);
          box-shadow: 0px 9px 66px 0px rgba(140, 185, 200, 0.27);
  padding: 40px 15px;
}

.item-product__box {
  max-width: 216px;
  margin: 0 auto 32px;
}

.item-product__img {
  display: block;
  width: 100%;
  height: 0;
  border-radius: 107px;
  position: relative;
  overflow: hidden;
  padding-bottom: 127.31481%;
}

.item-product__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.item-product__name {
  color: var(--color-white);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
  margin-bottom: 16px;
}

.item-product__text {
  color: #b0bac8;
  text-align: center;
  font-size: 15px;
  line-height: 1.66667;
}

.item-product__prices {
  margin: 46px 0;
  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;
  row-gap: 37px;
}

.item-product__price {
  color: var(--color-white);
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.04167;
  white-space: nowrap;
}

.item-product__price sup {
  font-size: 65%;
  position: relative;
  top: 3px;
}

.item-product__price span {
  color: var(--Yellow);
  font-size: 38px;
  line-height: 0.65789;
}

.item-product__term {
  color: var(--color-white);
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.04167;
  position: relative;
  white-space: nowrap;
}

.item-product__term:before {
  content: "";
  display: block;
  position: absolute;
  top: -23px;
  left: 0;
  width: 100%;
  height: 14px;
  background: url("../img/item-product-elem.svg") 0 0/100% auto no-repeat;
}

.item-product__term sup {
  font-size: 65%;
  position: relative;
  top: 3px;
}

.item-product__term span {
  color: var(--Yellow);
  font-size: 38px;
}

.item-product__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}

.item-product__link {
  color: var(--Blue-main);
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
}

.item-product__link a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-product__link a:hover {
  text-decoration: underline;
}

.advantages-block {
  margin: 75px 0;
}

.advantages-block__title {
  margin-bottom: 60px;
}

.advantages-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -15px;
}

.advantages-block__col {
  padding: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.advantages-block__item {
  border-radius: 40px;
  background: var(--Yellow-Background);
  padding: 54px 15px 38px;
  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;
  text-align: center;
  height: 100%;
}

.advantages-block__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 68px;
  max-width: 100%;
  height: 68px;
  margin-bottom: 30px;
}

.advantages-block__icon img {
  max-width: 100%;
}

.advantages-block__heading {
  color: var(--Dark-Text-Main);
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
}

.advantages-block__text {
  margin-top: 12px;
  color: var(--Text-Grey);
  font-size: 14px;
  line-height: 1.42857;
}

.block-content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 125px 0;
  row-gap: 80px;
}

.block-content-items .block-btn {
  margin-bottom: -85px;
}

.block-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.block-content:nth-child(even) .block-content__row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.block-content:nth-child(even) .block-content__left {
  padding: 0 15px 0 40px;
}

.block-content:nth-child(even) .block-content__img {
  border-radius: 1000px 0 0 1000px;
}

.block-content:nth-child(even) .block-content__right {
  padding: 0 15px;
  padding-left: calc((100vw - 1380px) / 2 + 35px);
}

.block-content__row {
  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: 0 -15px;
}

.block-content__left {
  padding: 0 40px 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.block-content__img {
  display: block;
  width: 100%;
  height: 0;
  border-radius: 0 1000px 1000px 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 64.69298%;
  min-height: 380px;
}

.block-content__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.block-content__right {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
  padding-right: calc((100vw - 1380px) / 2 + 35px);
}

.block-content__title {
  text-align: left;
}

.block-content__title:not(:last-child) {
  margin-bottom: 40px;
}

h3.block-content__title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.26316;
}

.block-content__text p {
	margin-bottom: 15px;
}

.block-content__text {
  color: var(--Text-Grey);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.66667;
  text-indent: 15px;
}

.block-top {
  position: relative;
  padding: 115px 0 87px;
}

.block-top__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #091c2e;
}

.block-top__bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.15;
}

.block-top__content {
  position: relative;
  z-index: 2;
}

.block-top__title {
  color: var(--color-white);
}

.block-top__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 65px;
}

.advantages-top {
  margin: 112px 0;
}

.advantages-top__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.advantages-top__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 164px;
  max-width: 100%;
  position: relative;
}

.advantages-top__col:last-child .advantages-top__icon {
  padding-left: 10px;
}

.advantages-top__elem {
  height: 100px;
  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;
}

.advantages-top__elem img {
  max-width: 100%;
}

.advantages-top__item {
  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;
  row-gap: 33px;
}

.advantages-top__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100px;
  max-width: 100%;
  height: 100px;
  border-radius: 36px;
  background: var(--color-white);
  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;
}

.advantages-top__icon img {
  max-width: 56px;
  max-height: 56px;
}

.advantages-top__title {
  text-align: center;
  color: #b0bac8;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33333;
}

.calc {
  background: var(--color-white);
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 74px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 4px 74px 0px rgba(0, 0, 0, 0.35);
  padding: 52px 50px 50px;
  margin-top: 63px;
}

.calc__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -23px;
}

.calc__top-left {
  padding: 0 23px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 414px;
  max-width: 100%;
}

.calc__block:not(:last-child) {
  margin-bottom: 30px;
}

.calc__block .checkbox-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.calc__title {
  color: var(--Dark-Text-Main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
  margin-bottom: 30px;
}

.calc__top-right {
  padding: 0 23px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.calc__box:not(:last-child) {
  margin-bottom: 34px;
}

.calc__bottom {
  padding-top: 38px;
  border-top: 1px solid #f1f1f1;
  margin-top: 62px;
}

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

.calc__bottom-left {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.calc__bottom-right {
  padding: 0 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.calc__bottom-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 72px;
     -moz-column-gap: 72px;
          column-gap: 72px;
}

.calc__bottom-boxes.inner {
  text-align: center;
  -webkit-column-gap: 112px;
     -moz-column-gap: 112px;
          column-gap: 112px;
}

.calc__bottom-heading {
  color: #6c6c6c;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33333;
  margin-bottom: 8px;
}

.calc__bottom-number {
  color: var(--Blue-main);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.04167;
}

.calc__bottom-number span {
  font-size: 38px;
}

.calc__form {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #f1f1f1;
}

.calc__form .calc__title {
  text-align: center;
}

.calc__form .form-control {
  border: 1px solid var(--Text-Grey);
}

.calc__form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.calc__form-col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 290px;
}

.calc__form-col button {
  width: 100%;
}

.our-reviews {
  background: var(--Yellow-Background);
  padding: 80px 0 43px;
}

.our-reviews__title {
  margin-bottom: 65px;
}

.our-reviews-slider {
  margin: 0 -107px;
  padding: 0 107px;
}

.our-reviews-slider:before {
  content: "";
  display: block;
  width: 108px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 3;
  background: var(--color-white);
}

.our-reviews-slider:after {
  content: "";
  display: block;
  width: 108px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -1px;
  z-index: 3;
  background: var(--color-white);
}

.our-reviews-slider__slide:hover .our-reviews-slider__img img {
  opacity: 0.65;
}

.our-reviews-slider__item {
  position: relative;
}

.our-reviews-slider__img {
  display: block;
  width: 100%;
  height: 0;
  background: #140f0c;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  padding-bottom: 63.23185%;
}

.our-reviews-slider__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.our-reviews-slider__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  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;
  background: var(--Yellow);
  border-radius: 26px;
  color: var(--color-white);
  padding-left: 1px;
}

.our-reviews-slider__icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.our-reviews-slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.our-reviews-slider__prev {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 4;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.our-reviews-slider__next {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 4;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.reviews-images {
  margin-top: 37px;
  padding: 20px 114px 60px;
  border-radius: 20px;
  background: var(--color-white);
}

.reviews-images__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -15px;
}

.reviews-images__col {
  padding: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.reviews-images__img {
  text-align: center;
}

.reviews-images__img img {
  max-width: 100%;
}

.reviews-images__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 37px;
}

.portfolio-block {
  margin: 26px 0 95px;
}

.portfolio-block__title {
  margin-bottom: 58px;
}

.portfolio-block__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 76px;
}

.portfolio-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -27px -15px;
}

.portfolio-list__col {
  padding: 27px 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.item-portfolio__top {
  margin-bottom: 24px;
}

.item-portfolio__bottom {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 12px;
}

.item-portfolio__title {
  color: var(--Dark-Text-Main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-portfolio__title:hover {
  color: var(--Yellow);
}

.item-portfolio__boxes {
  width: 100%;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 16px;
}

.item-portfolio__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.item-portfolio__icon {
  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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  color: var(--Yellow);
}

.item-portfolio__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.item-portfolio__text {
  color: var(--Text-Grey);
  font-size: 15px;
  line-height: 1.33333;
}

.item-portfolio__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  color: var(--Dark-Text-Main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.item-portfolio__link:hover {
  color: var(--Yellow);
}

.item-portfolio__link span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  max-width: 100%;
  height: 32px;
  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;
  color: inherit;
}

.item-portfolio__link span svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.item-portfolio-slider {
  border-radius: 30px;
}

.item-portfolio-slider__img {
  display: block;
  width: 100%;
  height: 0;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  padding-bottom: 62.95732%;
}

.item-portfolio-slider__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.item-portfolio-slider-thumbs {
  margin-top: 12px;
}

.item-portfolio-slider-thumbs__slide {
  cursor: pointer;
}

.item-portfolio-slider-thumbs__slide:hover .item-portfolio-slider-thumbs__img img {
  opacity: 1;
}

.item-portfolio-slider-thumbs__slide.swiper-slide-thumb-active .item-portfolio-slider-thumbs__img:before {
  border-color: var(--Yellow);
  background: transparent;
  z-index: 3;
}

.item-portfolio-slider-thumbs__slide.swiper-slide-thumb-active .item-portfolio-slider-thumbs__img img {
  opacity: 1;
}

.item-portfolio-slider-thumbs__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  border-radius: 20px;
  padding-bottom: 66.66667%;
  overflow: hidden;
}

.item-portfolio-slider-thumbs__img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #e7edef;
  z-index: 1;
  border-radius: 20px;
  border: 6px solid transparent;
}

.item-portfolio-slider-thumbs__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
  z-index: 2;
  border-radius: 20px;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.portfolio-detail {
  margin: 77px 0 106px;
}

.portfolio-detail.open .portfolio-detail__col {
  display: block;
}

.portfolio-detail__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 56px;
     -moz-column-gap: 56px;
          column-gap: 56px;
  row-gap: 16px;
  margin-bottom: 32px;
}

.portfolio-detail__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.portfolio-detail__icon {
  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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  color: var(--Yellow);
}

.portfolio-detail__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.portfolio-detail__text {
  color: var(--Text-Grey);
  font-size: 15px;
  line-height: 1.33333;
}

.portfolio-detail__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -12px -15px;
}

.portfolio-detail__col {
  padding: 12px 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.portfolio-detail__col:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.portfolio-detail__col:first-child .portfolio-detail__img {
  padding-bottom: 37.40686%;
}

.portfolio-detail__col:nth-child(3n + 1) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.portfolio-detail__col:nth-child(3n + 1) .portfolio-detail__img {
  padding-bottom: 37.40686%;
}

.portfolio-detail__img {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding-bottom: 62.95732%;
}

.portfolio-detail__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.portfolio-detail__btn {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.contacts-block {
  margin-top: 74px;
  border-radius: 40px;
  background: var(--color-white);
  -webkit-box-shadow: 0px 4px 74px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 4px 74px 0px rgba(0, 0, 0, 0.35);
  padding: 40px 50px 60px;
}

.contacts-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}

.contacts-block__left {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 31%;
  max-width: 100%;
}

.contacts-block__title {
  color: var(--Dark-Text-Main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
  margin-bottom: 40px;
}

.contacts-block__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
}

.contacts-block__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.contacts-block__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contacts-block__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  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;
  color: var(--Yellow);
}

.contacts-block__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contacts-block__text {
  color: var(--Dark-Text-Main);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.33333;
}

.contacts-block__text a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.contacts-block__text a:hover {
  text-decoration: underline;
}

.contacts-block__right {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 69%;
  max-width: 100%;
}

.contacts-block__body {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding-bottom: 54.53446%;
}

.contacts-block__map {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.contacts-block .social-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.contacts-block .social-block__item {
  color: var(--Yellow);
}

.blog-detail-nav {
  margin: 27px 0 48px;
}

.blog-detail-nav__body {
  border-radius: 16px;
  background: var(--Yellow-Background);
  padding: 18px 70px;
}

.blog-detail-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.blog-detail-nav__top.open .blog-detail-nav__icon svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.blog-detail-nav__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  color: var(--Dark-Text-Main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
}

.blog-detail-nav__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  max-width: 100%;
  height: 40px;
  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;
  color: var(--Dark-Text-Main);
  margin-right: -13px;
}

.blog-detail-nav__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.blog-detail-nav__box {
  display: none;
  padding-top: 24px;
}

.blog-detail-nav__box.open {
  display: block;
}

.blog-detail-nav__list {
  padding: 0 0 0 16px;
}

.blog-detail-nav__list li {
  color: var(--Text-Grey);
}

.blog-detail-nav__list li:not(:last-child) {
  margin-bottom: 8px;
}

.blog-detail-nav__list li a {
  color: var(--Dark-Text-Main);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.38889;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.blog-detail-nav__list li ul {
  margin-top: 8px;
}

.blog-detail-nav__list li ul li {
  color: var(--Yellow);
  list-style-type: disc;
}

.blog-detail-nav__list li ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5625;
}

.detail-text h1,
.detail-text h2,
.detail-text h3,
.detail-text h4,
.detail-text h5,
.detail-text h6 {
  text-align: left;
}

.detail-text h1:first-child,
.detail-text h2:first-child,
.detail-text h3:first-child,
.detail-text h4:first-child,
.detail-text h5:first-child,
.detail-text h6:first-child {
  margin-top: 0;
}

.detail-text h1:last-child,
.detail-text h2:last-child,
.detail-text h3:last-child,
.detail-text h4:last-child,
.detail-text h5:last-child,
.detail-text h6:last-child {
  margin-bottom: 0;
}

.detail-text h1 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.detail-text h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.detail-text h3 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.detail-text h4 {
  margin-top: 40px;
  margin-bottom: 8px;
}

.detail-text h5,
.detail-text h6 {
  margin-top: 40px;
  margin-bottom: 8px;
}

.detail-text p {
  color: var(--Text-Grey);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
}

.detail-text p:not(:last-child) {
  margin-bottom: 24px;
}

.detail-text img {
  display: block;
  margin: 40px 0;
  max-width: 100%;
}

.detail-text img:first-child {
  margin-top: 0;
}

.detail-text img:last-child {
  margin-bottom: 0;
}

.page-404 {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.page-404__body {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.page-404__title {
  color: var(--color-white);
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.26316;
  margin-bottom: 60px;
}

.page-404__label {
  color: var(--Yellow);
  text-align: center;
  font-size: 170px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 120px;
  display: none;
}

.page-404__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: auto;
}

.page-404__btn .btn {
  min-width: 285px;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  padding-top: 15px;
  width: 370px;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.sub-menu ul {
  padding: 24px;
  list-style: none;
  border-radius: 20px;
  background: var(--color-white);
  -webkit-box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
}

.sub-menu ul li:not(:last-child) {
  margin-bottom: 8px;
}

.sub-menu ul li.open > ul {
  display: block;
}

.sub-menu ul li a,
.sub-menu ul li span {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  color: #2e2824;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.sub-menu ul li a:hover,
.sub-menu ul li span:hover {
  color: var(--Blue-main);
}

.sub-menu ul li a svg,
.sub-menu ul li span svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  fill: currentColor;
}

.sub-menu ul li ul {
  padding: 0 0 0 16px;
  margin-top: 12px;
  margin-bottom: 24px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  border-radius: 0px;
  display: none;
}

.sub-menu ul li ul li:not(:last-child) {
  margin-bottom: 4px;
}

.sub-menu ul li ul li.open > ul {
  display: block;
}

.sub-menu ul li ul li a,
.sub-menu ul li ul li span {
  font-size: 14px;
  line-height: 2.14286;
}

.sub-menu ul li ul li ul {
  padding: 0 0 0 16px;
  margin-top: 12px;
  margin-bottom: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  border-radius: 0px;
}

.sub-menu ul li ul li ul li:not(:last-child) {
  margin-bottom: 4px;
}

.sub-menu ul li ul li ul li a,
.sub-menu ul li ul li ul li span {
  color: #606568;
  font-size: 14px;
  line-height: 2.14286;
}

@media (min-width: 767.98px) {
  .menu__item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .menu__item:hover .menu__arrow {
    color: var(--Yellow);
  }

  .menu__item:hover .menu__arrow svg {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
    position: relative;
    top: 2px;
  }
}

@media (max-width: 1570px) {
  .our-employees-slider {
    margin: 0 -56px;
    padding: 0 56px;
  }

  .our-employees-slider:before {
    width: 57px;
  }

  .our-employees-slider:after {
    width: 57px;
  }

  .our-reviews-slider {
    margin: 0 -56px;
    padding: 0 56px;
  }

  .our-reviews-slider:before {
    width: 57px;
  }

  .our-reviews-slider:after {
    width: 57px;
  }
}

@media (max-width: 1450px) {
  .our-employees-slider {
    padding: 0;
    margin: 0;
  }

  .our-employees-slider:before {
    display: none;
  }

  .our-employees-slider:after {
    display: none;
  }

  .our-employees-slider__nav {
    margin-top: 10px;
  }

  .our-employees-slider__prev {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    position: static;
  }

  .our-employees-slider__next {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    position: static;
  }

  .our-reviews-slider {
    padding: 0;
    margin: 0;
  }

  .our-reviews-slider:before {
    display: none;
  }

  .our-reviews-slider:after {
    display: none;
  }

  .our-reviews-slider__nav {
    margin-top: 10px;
  }

  .our-reviews-slider__prev {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    position: static;
  }

  .our-reviews-slider__next {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    position: static;
  }
}

@media (max-width: 1379.98px) {
  .header-top__boxes {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .header-top__text a {
    margin-left: 5px;
  }

  .menu-top__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .header-bottom .logo__title {
    font-size: 22px;
  }

  .header-bottom .logo__text {
    font-size: 8px;
  }

  .header-bottom__row {
    margin: 0 -10px;
  }

  .header-bottom__left {
    padding: 0 10px;
  }

  .header-bottom__center {
    padding: 0 10px;
  }

  .header-bottom__right {
    padding: 0 10px;
  }

  .menu__list {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }

  .our-employees-slider {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .payment-methods {
    margin-bottom: 100px;
  }

  .payment-methods__content {
    margin: 0 -20px;
    background: var(--Dark-Blue);
  }

  .payment-methods__body {
    max-width: 100%;
    padding: 80px 49% 80px 80px;
  }

  .block-content:nth-child(even) .block-content__right {
    padding-left: 35px;
  }

  .block-content__right {
    padding-right: 35px;
  }

  .our-reviews-slider {
    margin: 0 -20px;
    padding: 0 20px;
  }
}

@media (max-width: 1199.98px) {
  h1 {
    font-size: 48px;
  }

  .item-type-form__title {
    font-size: 16px;
    line-height: 1.125;
    padding: 20px 15px;
  }

  .repair-request__body {
    padding: 100px 60px 130px;
  }

  .header-top {
    padding: 10px 0;
  }

  .header-top__row {
    margin: 0 -10px;
  }

  .header-top__left {
    padding: 0 10px;
  }

  .header-top__center {
    padding: 0 10px;
  }

  .header-top__box-address {
    display: none;
  }

  .header-top__right {
    padding: 0 10px;
  }

  .header-bottom {
    padding: 0 0 10px 0;
  }

  .header-bottom__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .header-bottom__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }

  .header-bottom__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 10px;
  }

  .menu__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .menu__link.active:before {
    bottom: 80%;
  }

  .footer__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 36px;
  }

  .footer__col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
  }

  .footer__col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
  }

  .footer__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
  }

  .payment-methods {
    margin-bottom: 80px;
  }

  .payment-methods__body {
    padding: 60px 49% 60px 40px;
  }

  .item-make-repairs__body {
    padding: 20px 20px;
  }

  .item-make-repairs__title {
    font-size: 22px;
  }

  .document-block__row {
    margin: -15px;
  }

  .document-block__col {
    padding: 15px;
  }

  .item-document__title {
    font-size: 22px;
    line-height: 1.45455;
  }

  .we-working__title {
    margin-bottom: 100px;
  }

  .we-working__row {
    row-gap: 120px;
  }

  .we-working__number {
    font-size: 150px;
  }

  .we-working__btn {
    margin-top: 100px;
  }

  .slider-images__img {
    padding-bottom: 61.66667%;
  }

  .product-list__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .block-content-items {
    margin: 100px 0;
    row-gap: 60px;
  }

  .block-content-items .block-btn {
    margin-bottom: -70px;
  }

  .block-content:nth-child(even) .block-content__left {
    padding-left: 15px;
  }

  .block-content__left {
    padding-right: 15px;
  }

  .block-top {
    padding: 100px 0 80px;
  }

  .advantages-top {
    margin: 80px 0;
  }

  .calc {
    padding: 52px 30px 50px;
  }

  .calc__top-row {
    margin: 0 -15px;
  }

  .calc__top-left {
    width: 370px;
    padding: 0 15px;
  }

  .calc__top-right {
    padding: 0 15px;
  }

  .calc__bottom-boxes {
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }

  .calc__form-row {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .reviews-images {
    padding: 20px 60px 60px;
  }

  .item-portfolio__title {
    font-size: 22px;
  }

  .contacts-block {
    padding: 40px 30px 50px;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.3125;
  }

  h3 {
    font-size: 22px;
    line-height: 1.36364;
  }

  h4 {
    font-size: 17px;
  }

  .type-block {
    margin: -5px;
  }

  .type-block__col {
    padding: 5px;
  }

  .checkbox-list {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }

  .checkbox-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
  }

  .main-popup__title {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 1.3125;
  }

  .number-rooms-list__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.666%;
    max-width: 100%;
  }

  .repair-request.fancybox__content .f-button.is-close-btn {
    top: 20px;
    right: 20px;
  }

  .repair-request__body {
    padding: 60px 30px;
    border-radius: 30px;
  }

  .repair-request__title {
    margin-bottom: 60px;
    font-size: 32px;
    line-height: 1.3125;
  }

  .repair-request__row {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }

  .header-top__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .header-top__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding: 0;
  }

  .header-top__boxes {
    width: 100%;
    -webkit-column-gap: 52px;
       -moz-column-gap: 52px;
            column-gap: 52px;
  }

  .header-top__boxes {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .header-top__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .menu__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .menu__item.open .menu__arrow {
    color: var(--Blue-main);
  }

  .menu__link.active {
    color: var(--Blue-main);
  }

  .footer__bottom {
    padding: 23px 20px 27px;
  }

  .footer__bottom-row {
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }

  .main-tab__body {
    padding-top: 36px;
  }

  .get-estimate__title {
    margin-bottom: 32px;
  }

  .form-get-estimate__check {
    margin-top: 32px;
  }

  .payment-methods {
    margin-bottom: 60px;
  }

  .payment-methods__body {
    padding: 60px 49% 60px 20px;
  }

  .payment-methods__title {
    margin-bottom: 40px;
  }

  .payment-methods__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .repair-cost__title {
    margin-bottom: 40px;
  }

  .make-repairs__title {
    margin-bottom: 40px;
  }

  .make-repairs__row {
    margin: -10px;
  }

  .make-repairs__col:nth-child(2),
  .make-repairs__col:nth-child(3),
  .make-repairs__col:nth-child(4n + 2),
  .make-repairs__col:nth-child(4n + 3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .make-repairs__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
    padding: 10px;
  }

  .item-make-repairs__img {
    padding-bottom: 86.18267%;
  }

  .document-block {
    margin: 60px 0 100px;
  }

  .document-block__row {
    margin: -10px;
  }

  .document-block__col {
    padding: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .we-working {
    padding: 60px 0;
  }

  .we-working__title {
    margin-bottom: 60px;
  }

  .we-working__row {
    row-gap: 80px;
  }

  .we-working__number {
    font-size: 120px;
  }

  .we-working__icon img {
    max-width: 65px;
    max-height: 65px;
  }

  .we-working__text {
    font-size: 16px;
  }

  .we-working__btn {
    margin-top: 60px;
  }

  .our-works {
    margin: 60px 0;
  }

  .our-works__title {
    margin-bottom: 40px;
  }

  .slider-images-info__title {
    font-size: 22px;
  }

  .slider-images-info__boxes {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .type-repairs {
    padding: 40px 0;
  }

  .type-repairs__title {
    margin-bottom: 40px;
  }

  .product-list {
    margin: -10px;
  }

  .product-list__col {
    padding: 10px;
  }

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

  .advantages-block__title {
    margin-bottom: 40px;
  }

  .advantages-block__row {
    margin: -10px;
  }

  .advantages-block__col {
    padding: 10px;
  }

  .advantages-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .block-content-items {
    margin: 60px 0;
  }

  .block-content-items .block-btn {
    margin-bottom: -30px;
  }

  .block-content:nth-child(even) .block-content__left {
    padding: 0;
    padding-left: 6.388%;
  }

  .block-content:nth-child(even) .block-content__right {
    padding: 0 20px;
  }

  .block-content__row {
    margin: 0;
  }

  .block-content__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0;
    padding-right: 6.388%;
  }

  .block-content__img {
    padding-bottom: 54.30267%;
    min-height: auto;
  }

  .block-content__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .block-content__title:not(:last-child) {
    margin-bottom: 20px;
  }

  .block-top {
    padding: 80px 0 60px;
  }

  .block-top__btn {
    margin-top: 45px;
  }

  .advantages-top {
    margin: 60px 0;
  }

  .advantages-top__row {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .advantages-top__col {
    width: 150px;
  }

  .advantages-top__elem {
    display: none;
  }

  .calc {
    margin-top: 40px;
    padding: 40px 20px;
  }

  .calc__top-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .calc__top-left {
    width: 330px;
  }

  .calc__top-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 34px;
  }

  .calc__block .checkbox-list {
    row-gap: 8px;
  }

  .calc__top-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .calc__bottom {
    padding-top: 30px;
    margin-top: 30px;
  }

  .calc__bottom-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .calc__bottom-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .calc__bottom-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }

  .calc__bottom-boxes {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .calc__bottom-boxes.inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }

  .calc__bottom-number span {
    font-size: 30px;
  }

  .calc__form {
    padding-top: 30px;
    margin-top: 30px;
  }

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

  .calc__form-col {
    max-width: 70%;
  }

  .our-reviews {
    padding: 60px 0 50px;
  }

  .our-reviews__title {
    margin-bottom: 40px;
  }

  .reviews-images {
    padding: 20px 20px 40px;
  }

  .portfolio-block__title {
    margin-bottom: 40px;
  }

  .portfolio-block__btn {
    margin-top: 60px;
  }

  .portfolio-list__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .portfolio-detail {
    margin: 60px 0;
  }

  .portfolio-detail__boxes {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }

  .portfolio-detail__row {
    margin: -10px;
  }

  .portfolio-detail__col {
    padding: 10px;
  }

  .contacts-block {
    margin-top: 60px;
  }

  .contacts-block {
    padding: 40px 20px;
  }

  .contacts-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
  }

  .contacts-block__title {
    font-size: 22px;
  }

  .contacts-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.666%;
    max-width: 100%;
  }

  .blog-detail-nav {
    margin: 30px 0;
  }

  .blog-detail-nav__body {
    padding: 18px 40px;
  }
  
  .page-404__title {
    font-size: 32px;
    line-height: 1.3125;
  }
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .fancybox-slide {
    padding: 30px 15px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  h2 {
    font-size: 26px;
    line-height: 1.38462;
  }

  h3 {
    font-size: 20px;
    line-height: 1.35;
  }

  h4 {
    font-size: 16px;
  }

  .form-checkbox label span {
    font-size: 12px;
  }

  .type-block {
    margin: -3px;
  }

  .type-block__col {
    padding: 3px;
  }

  .item-type-form input:checked + .item-type-form__body .item-type-form__img {
    border-width: 3px;
  }

  .item-type-form__img {
    height: 100px;
    border-radius: 15px;
  }

  .item-type-form__title {
    font-size: 13px;
    padding: 10px 2px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    letter-spacing: -0.65px;
  }

  .main-popup.fancybox__content .f-button.is-close-btn {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }

  .main-popup.fancybox__content .f-button.is-close-btn svg {
    width: 24px;
    height: 24px;
  }

  .main-popup__body {
    padding: 60px 20px;
    border-radius: 30px;
  }

  .main-popup__title {
    font-size: 26px;
    line-height: 1.38462;
  }

  .bread-crumbs {
    display: none;
  }

  .number-rooms-list {
    margin: -5px -8px;
  }

  .number-rooms-list__col {
    padding: 5px 8px;
  }

  .item-number-rooms label span {
    height: 44px;
  }

  .repair-request.fancybox__content .f-button.is-close-btn {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: transparent;
  }

  .repair-request.fancybox__content .f-button.is-close-btn svg {
    width: 24px;
    height: 24px;
  }

  .repair-request__body {
    padding: 50px 15px 40px;
  }

  .repair-request__title {
    margin-bottom: 32px;
    font-size: 26px;
    line-height: 1.38462;
  }

  .repair-request__left {
    display: none;
  }

  .repair-request__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .header-top {
    display: none;
  }

  .header-top__boxes {
    padding: 24px 0;
    border-bottom: 1px solid #f1f1f1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 15px;
  }

  .header-top__box-address {
    display: block;
  }

  .header-top__text a {
    margin-left: 13px;
  }

  .header-top__text svg {
    fill: #b8babc;
  }

  .menu-top {
    padding: 24px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  .menu-top__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 15px;
  }

  .header-bottom {
    padding: 15px 0;
  }

  .header-bottom__row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .header-bottom__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding: 0;
  }

  .header-bottom__menu-icon {
    display: block;
  }

  .header-bottom__btn .btn-calc {
    height: 46px;
    padding: 5px 20px;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: var(--transition-normal);
    -o-transition: var(--transition-normal);
    transition: var(--transition-normal);
  }

  .menu.open {
    right: 0;
  }

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

  .menu__top {
    display: block;
  }

  .menu__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow: auto;
    padding: 6px 30px 22px;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 15px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f1f1;
  }
  
  .menu__item.open .sub-menu {
    display: block;
  }

  .menu__link.active:before {
    display: none;
  }
  
  .menu__arrow {
    margin-left: 15px;
  }

  .menu__arrow svg {
    width: 24px;
    height: 24px;
  }
  
  .menu__bottom {
    display: block;
  }

  .menu__info {
    display: block;
  }

  .menu__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer {
    margin: 0 -10px;
  }

  .footer__top {
    padding: 35px 0 0;
  }

  .footer__row {
    margin: 0;
  }

  .footer__logo {
    margin-bottom: 10px;
    padding: 0 20px;
  }

  .footer__col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 26px 20px;
    display: none;
  }

  .footer__heading {
    display: none;
  }

  .footer__col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 26px 20px;
    border-bottom: 1px solid #344250;
  }

  .footer__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 26px 20px;
  }

  .footer__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footer__bottom-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer__bottom-text {
    line-height: 2.46154;
    border-color: #344250;
  }

  .footer__bottom-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer__bottom-link {
    line-height: 1.92308;
  }

  .our-employees {
    margin: 35px 0 23px;
  }

  .our-employees__title {
    margin-bottom: 29px;
  }

  .our-employees-slider {
    margin: 0 -10px;
    padding: 0;
  }

  .our-employees-slider__scrollbar {
    display: none;
  }

  .item-our-employees {
    border-radius: 0px;
  }

  .item-our-employees__img {
    padding-bottom: 56.66667%;
  }

  .faq {
    margin: 43px 0 35px;
  }

  .faq__title {
    margin-bottom: 41px;
  }

  .main-tab__nav {
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
    row-gap: 4px;
  }

  .main-tab__nav-item {
    height: 30px;
    font-size: 12px;
    padding: 3px 10px;
  }

  .faq-block__title {
    padding: 0 16px;
  }

  .faq-spoiler__title {
    padding: 14px 16px;
  }

  .faq-spoiler__heading {
    font-size: 14px;
    line-height: 1.42857;
  }

  .faq-spoiler__arrow {
    width: 32px;
    height: 32px;
  }

  .faq-spoiler__body {
    padding: 10px 16px 14px;
  }

  .faq-spoiler__text {
    font-size: 13px;
    line-height: 1.23077;
  }

  .get-estimate {
    padding: 0 0 39px;
  }

  .get-estimate__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 36px;
    margin-top: -1px;
  }

  .get-estimate__box {
    max-width: none;
    margin: 0 -10px;
  }

  .get-estimate__img {
    border-radius: 0px;
    padding-bottom: 83.33333%;
  }

  .get-estimate__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .get-estimate__body {
    max-width: none;
  }

  .get-estimate__title {
    text-align: center;
  }

  .get-estimate .form-get-estimate {
    max-width: none;
  }

  .payment-methods {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .payment-methods__body {
    padding: 25px 20px 44px;
  }

  .payment-methods__title {
    text-align: center;
    margin-bottom: 26px;
  }

  .payment-methods__item:not(:last-child) {
    margin-bottom: 17px;
  }

  .payment-methods__heading {
    font-size: 16px;
    line-height: 1.5;
  }

  .payment-methods__text {
    font-size: 13px;
    line-height: 1.92308;
  }

  .payment-methods__img {
    display: none;
  }

  .repair-cost__title {
    margin-bottom: 25px;
  }

  .repair-cost__text {
    margin-top: 31px;
    line-height: 1.30769;
  }

  .prices-block {
    margin-bottom: 25px;
  }

  .prices-block__top {
    padding: 0 17px;
  }

  .prices-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 110px;
    max-width: 100%;
  }

  .item-prices {
    padding: 14px 17px;
  }

  .item-prices__name {
    font-size: 14px;
    line-height: 1.42857;
  }

  .item-prices__price {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 110px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.375;
  }

  .make-repairs {
    margin: 65px 0 43px;
  }

  .make-repairs__title {
    margin-bottom: 28px;
  }

  .make-repairs__row {
    margin: -4px;
  }

  .make-repairs__col:nth-child(2),
  .make-repairs__col:nth-child(3),
  .make-repairs__col:nth-child(4n + 2),
  .make-repairs__col:nth-child(4n + 3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .make-repairs__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 4px;
  }

  .item-make-repairs__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .item-make-repairs__body {
    min-height: 163px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    padding: 20px 27px;
  }

  .item-make-repairs__title {
    font-size: 18px;
    line-height: 1.77778;
  }

  .item-make-repairs__text {
    font-size: 14px;
    line-height: 1.57143;
  }

  .document-block {
    margin: 24px 0;
  }

  .document-block__row {
    margin: -4px;
  }

  .document-block__col {
    padding: 4px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .item-document {
    padding: 10px 10px 12px;
  }

  .item-document__title {
    font-size: 18px;
    line-height: 1.77778;
  }

  .item-document__text {
    font-size: 13px;
    line-height: 1.92308;
  }

  .we-working {
    padding: 43px 0 31px;
  }

  .we-working__title {
    margin-bottom: 30px;
  }

  .we-working__row {
    row-gap: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .we-working__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .we-working__item {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .we-working__number {
    font-size: 90px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 56px;
    max-width: 100%;
  }

  .we-working__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100px;
    max-width: 100%;
  }

  .we-working__icon img {
    max-width: 40px;
    max-height: 40px;
  }

  .we-working__text {
    font-size: 14px;
    line-height: 1.14286;
  }

  .we-working__btn {
    margin-top: 55px;
  }

  .our-works {
    margin: 42px 0 48px;
  }

  .our-works__title {
    margin-bottom: 23px;
  }

  .slider-images-thumbs__scrollbar {
    display: none;
  }

  .slider-images-info {
    margin-top: 25px;
  }

  .slider-images-info__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .slider-images-info__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .slider-images-info__title {
    font-size: 20px;
    line-height: 1.35;
  }

  .slider-images-info__boxes {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .slider-images-info__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .type-repairs {
    padding: 29px 0 25px;
  }

  .type-repairs__title {
    margin-bottom: 20px;
  }

  .type-repairs__title:before {
    display: none;
  }

  .type-repairs__title:after {
    display: none;
  }

  .product-list {
    margin: -6px;
  }

  .product-list__col {
    padding: 6px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .item-product {
    padding: 20px 18.5px;
  }

  .item-product__box {
    margin: 0 auto 16px;
    max-width: 303px;
  }

  .item-product__img {
    padding-bottom: 54.45545%;
  }

  .item-product__text {
    display: none;
  }

  .item-product__prices {
    margin: 0 0 16px;
    -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;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }

  .item-product__price {
    font-size: 16px;
    line-height: 1.5625;
  }

  .item-product__price span {
    font-size: 26px;
    line-height: 0.96154;
  }

  .item-product__term {
    font-size: 16px;
    line-height: 1.5625;
  }

  .item-product__term:before {
    display: none;
  }

  .item-product__term span {
    font-size: 26px;
    line-height: 0.96154;
  }

  .advantages-block {
    margin: 32px 0 27px;
  }

  .advantages-block__title {
    margin-bottom: 20px;
  }

  .advantages-block__row {
    margin: -4px;
  }

  .advantages-block__col {
    padding: 4px;
  }

  .advantages-block__item {
    padding: 34px 5px;
  }

  .advantages-block__heading {
    font-size: 14px;
  }

  .advantages-block__text {
    display: none;
  }

  .block-content-items {
    margin: 30px 0 42px;
    row-gap: 42px;
  }

  .block-content-items .block-btn {
    display: none;
    margin-bottom: -12px;
  }

  .block-content:nth-child(even) .block-content__right {
    padding: 0 10px;
  }

  .block-content__right {
    padding: 0 10px;
  }

  .block-content__title:not(:last-child) {
    margin-bottom: 15px;
  }

  .block-content__text {
    font-size: 16px;
    line-height: 1.375;
  }

  .block-top {
    padding: 23px 0 33px;
  }

  .block-top__btn {
    margin-top: 33px;
  }

  .advantages-top {
    margin: 35px 0 30px;
  }

  .advantages-top__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 16px;
  }

  .advantages-top__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 12px);
    max-width: 100%;
  }

  .advantages-top__col:last-child .advantages-top__icon {
    padding-left: 7px;
  }

  .advantages-top__item {
    row-gap: 16px;
  }

  .advantages-top__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }

  .advantages-top__icon img {
    max-width: 45px;
    max-height: 45px;
  }

  .advantages-top__title {
    font-size: 16px;
    line-height: 1.375;
  }

  .calc {
    margin-top: 30px;
    padding: 35px 17px 45px;
  }

  .calc__title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .calc__box:not(:last-child) {
    margin-bottom: 30px;
  }

  .calc__bottom-right {
    display: block;
  }

  .calc__bottom-boxes.inner {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .calc__bottom-number {
    font-size: 20px;
  }

  .calc__form .calc__title {
    margin-bottom: 38px;
  }

  .our-reviews {
    padding: 40px 0 54px;
  }

  .our-reviews__title {
    margin-bottom: 26px;
  }

  .our-reviews-slider {
    margin: 0 -10px;
    padding: 0;
  }

  .our-reviews-slider__img {
    border-radius: 0px;
    padding-bottom: 74.94145%;
  }

  .our-reviews-slider__img img {
    opacity: 0.65;
  }

  .reviews-images {
    padding: 0;
    background: transparent;
    background-repeat: 20px;
  }

  .reviews-images__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .reviews-images__btn {
    margin-top: 32px;
  }

  .portfolio-block {
    margin: 20px 0 60px;
  }

  .portfolio-block__title {
    margin-bottom: 31px;
    text-align: left;
  }

  .portfolio-block__btn {
    margin-top: 48px;
  }

  .portfolio-list {
    margin: -14px -15px;
  }

  .portfolio-list__col {
    padding: 14px 15px;
  }

  .item-portfolio__title {
    font-size: 20px;
    line-height: 1.35;
  }

  .item-portfolio__boxes {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }

  .item-portfolio-slider {
    border-radius: 0px;
    margin: 0 -10px;
  }

  .item-portfolio-slider__img {
    border-radius: 0px;
    padding-bottom: 75%;
  }

  .item-portfolio-slider-thumbs {
    margin: 9px -10px 0;
    padding: 0 10px;
  }

  .portfolio-detail {
    margin: 27px 0 53px;
  }

  .portfolio-detail__boxes {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    margin-bottom: 30px;
  }

  .portfolio-detail__row {
    margin: -5px;
  }

  .portfolio-detail__col {
    padding: 5px;
    display: none;
  }

  .portfolio-detail__col:nth-child(1),
  .portfolio-detail__col:nth-child(2),
  .portfolio-detail__col:nth-child(3) {
    display: block;
  }

  .portfolio-detail__img {
    border-radius: 20px;
  }

  .portfolio-detail__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .contacts-block {
    margin-top: 38px;
    padding: 40px 17px;
  }

  .contacts-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .contacts-block__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .contacts-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .blog-detail-nav {
    margin: 16px 0;
  }

  .blog-detail-nav__body {
    padding: 18px;
  }

  .blog-detail-nav__list li a {
    font-size: 16px;
  }

  .blog-detail-nav__list li ul li a {
    font-size: 14px;
  }

  .detail-text h1 {
    margin-top: 30px;
  }

  .detail-text h2 {
    margin-top: 30px;
  }

  .detail-text h3 {
    margin-top: 30px;
  }

  .detail-text h4 {
    margin-top: 30px;
  }

  .detail-text h5,
  .detail-text h6 {
    margin-top: 30px;
  }

  .detail-text img {
    margin: 30px 0;
  }
  
  .page-404__label {
    display: block;
  }

  .sub-menu {
    min-width: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    position: static;
    padding-top: 10px;
    display: none;
  }

  .sub-menu ul {
    padding: 0 0 0 20px;
    border-radius: 0px;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .sub-menu ul li.open > span svg {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }

  .sub-menu ul li a,
  .sub-menu ul li span {
    font-size: 15px;
  }

  .sub-menu ul li a svg,
  .sub-menu ul li span svg {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media (max-width: 578px) {
  .thank-popup.fancybox__content {
    padding: 40px 15px;
  }
}

@media (max-width: 575.98px) {
  .number-rooms-list__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
    max-width: 100%;
  }

  .header-bottom .logo__title {
    font-size: 18px;
    line-height: 1.22222;
    margin-bottom: 2px;
  }

  .header-bottom .logo__text {
    font-size: 6.5px;
  }

  .header-bottom__btn .btn-calc {
    padding: 5px 16px;
    border-radius: 50px;
  }

  .header-bottom__btn .btn-calc span {
    display: none;
  }

  .footer__actions {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .slider-images {
    border-radius: 0px;
    margin: 0 -10px 9px;
  }

  .slider-images__img {
    padding-bottom: 75%;
    border-radius: 0px;
  }

  .slider-images-thumbs {
    margin: 0 -10px;
    padding: 0 10px;
  }

  .slider-images-info__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 10px);
    max-width: 100%;
  }

  .calc__bottom-boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .calc__bottom-boxes.inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }

  .calc__form-col {
    max-width: none;
  }

  .item-portfolio__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 8px);
    max-width: 100%;
  }

  .portfolio-detail__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 8px);
    max-width: 100%;
  }

  .portfolio-detail__row {
    margin: -5px -10px;
  }

  .portfolio-detail__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 5px 0;
  }

  .portfolio-detail__col:first-child .portfolio-detail__img {
    padding-bottom: 75%;
  }

  .portfolio-detail__col:nth-child(3n + 1) .portfolio-detail__img {
    padding-bottom: 75%;
  }

  .portfolio-detail__img {
    border-radius: 0px;
    padding-bottom: 75%;
  }

  .contacts-block__body {
    padding-bottom: 145.01608%;
  }
}

@media (max-width: 479.98px) {
  .get-estimate__img {
    padding-bottom: 113.05556%;
  }
}

@media (min-width: 767.98px) and (max-width: 991.98px) {
  .menu__item:hover .menu__arrow {
    color: var(--Blue-main);
  }
}

@media (any-hover: hover) {
  .slider-prev:hover {
    color: var(--Dark-Text-Main);
  }

  .slider-next:hover {
    color: var(--Dark-Text-Main);
  }

  .btn-calc:hover {
    background: var(--Yellow-hover);
  }

  .header-top__text a:hover {
    text-decoration: underline;
  }

  .menu-top__link:hover {
    color: var(--Dark-Text-Main);
  }

  .btn-call-back:hover .btn-call-back__text:before {
    width: 100%;
  }

  .menu__link:hover {
    color: var(--Yellow);
  }

  .footer a.footer__contact:hover {
    color: var(--Yellow);
  }

  .footer__call-back:hover {
    text-decoration: none;
  }

  .footer__bottom-link:hover {
    text-decoration: none;
  }

  .footer .social-block__item:hover {
    color: var(--Yellow);
  }

  .footer-menu li a:hover {
    color: var(--Yellow);
  }
}