:root {
  --body-width: min( 100vw, 1920px );
  --content-width: 1260px;
  --side-size: calc( ( var(--body-width) - var(--content-width) + 30px ) / 2 );
}

@font-face {
  font-family: "Gilroy";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: local("Gilroy"), url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: local("Gilroy"), url("../fonts/Gilroy-LightItalic.woff2") format("woff2"), url("../fonts/Gilroy-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local("Gilroy"), url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: local("Gilroy"), url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: local("Gilroy"), url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local("Gilroy"), url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: local("Gilroy"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Playfair Display";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: local("Playfair Display"), url("../fonts/PlayfairDisplay-Italic.woff2") format("woff2"), url("../fonts/PlayfairDisplay-Italic.woff") format("woff");
}
/* ========= General ========= */
::-moz-selection {
  background: #EE7D00;
  color: #fff;
}
::selection {
  background: #EE7D00;
  color: #fff;
}

a, .a {
  transition: color 0.15s;
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
}
a:hover, .a:hover {
  text-decoration: none;
  color: #EE7D00;
}

.color {
  color: #EE7D00;
}

.text-box {
  line-height: 1.35;
}

body, html {
  scroll-behavior: smooth;
}

html {
  touch-action: manipulation;
}

body {
  font: 300 16px/1.16 "Gilroy", sans-serif;
  color: #262626;
  background: #000;
  letter-spacing: 0.00625em;
}
body.noscroll {
  overflow-y: hidden;
  padding-right: var(--scrollbarWidth);
}
body.noscroll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  overflow-y: scroll;
  pointer-events: none;
}

p {
  margin: 0;
}

.p {
  line-height: 150%;
}

.italic {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
}

.wrapper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  background: #FAFAFA;
  overflow: hidden;
}

[class*=-box] {
  position: relative;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  font: inherit;
  line-height: 1.17;
}
.h1.color, .h2.color, .h3.color, .h4.color, .h5.color, .h6.color {
  color: #EE7D00;
}

.h1 {
  font-size: 80px;
  line-height: 90%;
}

.h2 {
  font-size: 60px;
  line-height: 1;
}
.h2 .italic {
  line-height: 128%;
}

.h3 {
  font-size: 50px;
  line-height: 1;
}

.h4 {
  font-size: 34px;
  line-height: 1.1470588235;
}

.h5 {
  font-size: 20px;
}

b, strong {
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
}

.preload * {
  transition: none !important;
}

@media (min-width: 1700px) {
  :root {
    --content-width: 1680px;
  }

  .container {
    max-width: 1680px;
  }
}
ul {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.custom-list,
ol.custom-list {
  padding: 0;
  margin: 22px 0 38px;
}
ul.custom-list li,
ol.custom-list li {
  display: flex;
  padding: 0;
  margin: 14px 0;
  list-style: none;
}
ul.custom-list li::before,
ol.custom-list li::before {
  content: "";
  flex-shrink: 0;
}

ul.custom-list li::before {
  width: 13px;
  height: 13px;
  margin-top: 5px;
  margin-right: 16px;
  background: url("../images/h-3-color.svg") no-repeat 50%;
  background-size: 100%;
  transform: rotate(-90deg);
}

ol.custom-list {
  counter-reset: myCounter;
}
ol.custom-list li::before {
  counter-increment: myCounter;
  content: "0" counter(myCounter);
  width: 27px;
  font-size: 13px;
  font-weight: 700;
  color: #EE7D00;
  opacity: 0.8;
}
ol.custom-list li:nth-child(n+10)::before {
  content: counter(myCounter);
}

.dot-link {
  display: flex;
  align-items: center;
  font-size: 30px;
  transition: 0.2s;
}
.dot-link span {
  position: relative;
  transition: 0.2s;
}
.dot-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2px;
  right: 2px;
  height: 1px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23262626FF' stroke-width='1' stroke-dasharray='1%2c 3' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  background-size: 100% 5px;
  transition: 0.2s;
}

a.dot-link:hover span::before {
  opacity: 0;
}

.btn, .slick-arrow {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  height: 100%;
  color: #EE7D00;
  font-size: 30px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: 0.2s;
  cursor: pointer;
}
.btn::before, .slick-arrow::before {
  content: "";
  position: absolute;
  left: 65px;
  width: 130px;
  height: 130px;
  transition: inherit;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 130 130' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='65' cy='65' r='64.5' opacity='.2' stroke='url(%23a)'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='117.39' x2='11.131' y1='-4.859' y2='20.353' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fff' stop-opacity='.01' offset='0'/%3E%3Cstop stop-color='%236F6F6F' offset='.50497'/%3E%3Cstop stop-color='%23fff' offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.btn span, .slick-arrow span {
  border-bottom: 1px dashed #EE7D00;
  transition: border 0.2s;
}
.btn .arrow, .slick-arrow .arrow {
  position: relative;
  margin-right: 36px;
  width: 138px;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(238, 125, 0, 0), #EE7D00);
  color: #EE7D00;
  transition: inherit;
}
.btn .arrow::before, .slick-arrow .arrow::before, .btn .arrow::after, .slick-arrow .arrow::after {
  position: absolute;
  right: 0;
  content: "";
  width: 15px;
  height: 2px;
  background: currentColor;
}
.btn .arrow::after, .slick-arrow .arrow::after {
  transform: rotate(-40deg) translateY(280%);
}
.btn .arrow::before, .slick-arrow .arrow::before {
  transform: rotate(40deg) translateY(-280%);
}
.btn:not(.slick-disabled, .disabled):hover, .slick-arrow:not(.slick-disabled, .disabled):hover {
  color: #D46F00;
}
.btn:not(.slick-disabled, .disabled):hover .arrow, .slick-arrow:not(.slick-disabled, .disabled):hover .arrow {
  background-image: linear-gradient(90deg, rgba(212, 111, 0, 0), #D46F00);
  transform: translateX(10px);
  color: #D46F00;
}
.btn:not(.slick-disabled, .disabled):hover span, .slick-arrow:not(.slick-disabled, .disabled):hover span {
  border-color: transparent;
}

.form .form-input {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 80px;
  width: 100%;
  font-size: 26px;
}
.form .form-input::after {
  content: url(../images/svg/form-yes.svg);
  position: absolute;
  right: 0;
  top: -0.038em;
  width: 0.769em;
  transition: 0.2s;
  opacity: 0;
}
.form .form-input .form-placeholder {
  position: absolute;
  top: 0;
  left: 1.923em;
  transition: 0.2s;
}
.form .form-input input {
  display: block;
  padding: 0.5769em 1.923em 1.73em;
  height: 2.1923em;
  width: 100%;
  background: transparent;
  font: inherit;
  color: #fff;
  outline: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.2s;
}
.form .form-input input:not(:-moz-placeholder-shown) ~ .form-placeholder {
  top: -1.75em;
  left: 2.523em;
  font-size: 0.7692em;
  opacity: 0.5;
}
.form .form-input input:not(:-ms-input-placeholder) ~ .form-placeholder {
  top: -1.75em;
  left: 2.523em;
  font-size: 0.7692em;
  opacity: 0.5;
}
.form .form-input input:focus ~ .form-placeholder, .form .form-input input:not(:placeholder-shown) ~ .form-placeholder {
  top: -1.75em;
  left: 2.523em;
  font-size: 0.7692em;
  opacity: 0.5;
}
.form .form-input input:focus ~ svg {
  fill: #EE7D00;
}
.form .form-input input:focus ~ span {
  left: 0;
  right: 0;
  opacity: 1;
}
.form .form-input input::-moz-placeholder {
  color: transparent;
}
.form .form-input input:-ms-input-placeholder {
  color: transparent;
}
.form .form-input input::placeholder {
  color: transparent;
}
.form .form-input.invalid input:not(:focus) ~ span {
  left: 0;
  right: 0;
  opacity: 1;
  background: #FF2424;
}
.form .form-input.valid::after {
  opacity: 1;
}
.form .form-input img, .form .form-input svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.1538em;
  width: 1.1538em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  fill: #fff;
  transition: 0.2s;
}
.form .form-input span {
  position: absolute;
  left: 100%;
  right: 0;
  bottom: 0;
  height: 1px;
  transition: 0.3s;
  background: #EE7D00;
  opacity: 0;
}
.form .form-checkbox {
  margin-top: -10px;
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}
.form .form-checkbox input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 25px;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #04BC49 linear-gradient(187.61deg, #DFCE09 -95.98%, #04BC49 63.37%);
  border-radius: 0;
  border: 0;
  outline: 0;
  pointer-events: none;
  transition: 0.2s;
}
.form .form-checkbox input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='30' height='30' fill='url(%23paint0_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.1554 7L10.8579 19.3077L6.84461 15.2911L5 17.1373L10.8579 23L25 8.84617L23.1554 7Z' fill='white'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='-2.47669' y1='-36.9829' x2='-9.59155' y2='16.2617' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DFCE09'/%3E%3Cstop offset='1' stop-color='%2304BC49'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}
.form .form-checkbox span {
  max-width: 520px;
}

.slick-slider .slick-list {
  margin: 0 -15px;
}
.slick-slider .slick-list .slick-track {
  display: flex;
}
.slick-slider .slick-list .slick-slide {
  margin: 0 15px;
  height: auto;
}

.slick-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slick-arrow {
  z-index: 2;
  cursor: pointer;
}
.slick-arrow .arrow {
  position: absolute;
  right: 27%;
  margin: 0;
  transform: scale(0.76) !important;
}
.slick-arrow::before {
  position: relative;
  width: 100px;
  height: 100px;
  left: 0;
}
.slick-arrow:not(.slick-disabled):hover .arrow {
  margin-right: -10px;
}
.slick-arrow.slick-prev {
  transform: scale(-1);
}
.slick-arrow.slick-disabled {
  cursor: default;
}
.slick-arrow.slick-disabled .arrow {
  right: 9%;
  background-image: linear-gradient(90deg, rgba(253, 253, 253, 0), #FDFDFD);
  color: #FDFDFD;
  transform: scale(0.594) !important;
}
.slick-arrow.slick-disabled::before {
  width: 80px;
  height: 80px;
}

/* 1_home */
.home-box {
  height: 900px;
  background: #30342B no-repeat 50% 0%;
  background-image: url("../images/home-bg.jpg");
  background-size: cover;
  color: #fff;
  overflow: hidden;
}
.home-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(35, 35, 34, 0.1) 0%, #232322 100%);
  z-index: 2;
}
.home-box .home-bg-video-wrap {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.home-box .home-bg-video-wrap video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-box .container {
  position: relative;
  height: 100%;
  z-index: 3;
}
.home-box .home-wrap {
  position: relative;
  height: 100%;
}
.big-logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 46px 20px 0;
  width: 280px;
  height: 402px;
  color: #fff;
}
.big-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(174.42deg, rgba(36, 37, 41, 0.5) 4.71%, rgba(110, 101, 91, 0.5) 58.21%, rgba(87, 79, 68, 0.5) 83.54%), #242529;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc( 100% - 30px ), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc( 100% - 30px ), 0 100%);
}
.big-logo .logo-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.big-logo .logo-lines {
  width: 53px;
  height: 89px;
  background: url("../images/svg/logo-lines.svg") no-repeat 50%;
  background-size: contain;
}
.big-logo .logo-text {
  margin: 19px 0 23px;
  font-size: 50px;
  line-height: 0.92;
  text-align: center;
}
.big-logo .logo-text .italic {
  font-size: 26px;
}
.big-logo .logo-line {
  display: flex;
  font-size: 20px;
}
.big-logo .logo-line::before, .big-logo .logo-line::after {
  content: "";
  width: 70px;
  height: 1px;
  margin: 0.75em 13px 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  opacity: 0.2;
}
.big-logo .logo-line::before {
  transform: scale(-1);
}
.big-logo img {
  margin-top: 32px;
  width: 140px;
}

.home-box .phone-btn {
  position: absolute;
  display: flex;
  align-items: center;
  top: 104px;
  right: 0;
  min-width: 70px;
  height: 70px;
  border-radius: 35px;
  background: #EE7D00;
  transition: 0.2s;
  color: #fff;
}
.home-box .phone-btn::after {
  content: "";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin: 0 22px;
  background: url("../images/svg/phone.svg") 50% no-repeat;
  background-size: cover;
}
.home-box .phone-btn span {
  font-size: 30px;
  transition: 0.3s;
  max-width: 0;
  white-space: nowrap;
  opacity: 0;
  overflow: hidden;
}
.home-box .phone-btn:hover {
  background: #D46F00;
}
.home-box .phone-btn:hover span {
  margin-left: 31px;
  margin-right: -8px;
  max-width: 250px;
  opacity: 1;
}
.home-box .h1 {
  position: absolute;
  top: 342px;
  right: 0;
  max-width: 848px;
  text-align: right;
  letter-spacing: 0.00625em;
}
.home-box .h1 .italic {
  font-size: 0.975em;
  letter-spacing: 0;
  line-height: 0.75;
  background: -webkit-linear-gradient(228.49deg, #FFFFFF 7.97%, #B4B4B4 37.53%, #FFFFFF 64.76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-box .bottom-int {
  position: absolute;
  left: 0;
  bottom: 147px;
  display: grid;
  grid-template-columns: 365px 400px;
}
.home-box .bottom-int .bo-item {
  display: flex;
  flex-wrap: wrap;
}
.home-box .bottom-int .bo-from {
  margin-left: 16px;
  margin-bottom: 13px;
  width: 100%;
  font-size: 26px;
}
.home-box .bottom-int .bo-int {
  font-size: 110px;
  line-height: 1.5;
  margin: -0.6em 0;
  margin-right: 20px;
  background: -webkit-linear-gradient(228.49deg, #FFFFFF 7.97%, #656565 36.55%, #FFFFFF 64.76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-box .bottom-int .bo-info {
  font-size: 20px;
  line-height: 110%;
  max-width: 155px;
}
.home-box .bottom-btn {
  position: absolute;
  right: 0;
  bottom: 141px;
}

/* 2_about */
.about-box {
  padding-top: 160px;
}
.about-box .title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 4px;
}
.about-box .title-description {
  margin-top: 7px;
  max-width: 25.57em;
  font-size: 26px;
  line-height: 154%;
}
.about-box .title-route {
  margin-top: 5px;
}
.about-box .title-route::before {
  content: "";
  margin-right: 0.7666em;
  width: 1.333em;
  height: 1.4em;
  background: url("../images/svg/destination.svg") no-repeat 50%;
  background-size: contain;
}
.about-box .about-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-top: 130px;
  height: 800px;
}
.about-box .about-item .about-item-bg {
  position: absolute;
  left: calc( var(--side-size) * -1);
  right: 140px;
  height: 100%;
  background: #BBBCBC no-repeat 100% 50%;
  background-size: cover;
}
.about-box .about-item .about-item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 35px 20px;
  width: 530px;
  height: 640px;
  background: #fff;
  text-align: center;
}
.about-box .about-item .about-item-content img {
  width: 80px;
  height: 80px;
}
.about-box .about-item .about-item-content .h3 {
  margin-top: 30px;
  margin-bottom: 40px;
}
.about-box .about-item .about-item-content .p {
  max-width: 422px;
  font-size: 20px;
}
.about-box .about-item:nth-child(2) {
  justify-content: flex-start;
}
.about-box .about-item:nth-child(2) .about-item-bg {
  left: 140px;
  right: calc( var(--side-size) * -1);
  background-position-x: 0%;
}
.about-box .about-item:nth-child(2) .about-item-content .p {
  max-width: 410px;
}

/* 3_include */
.include-box {
  padding-top: 160px;
  padding-bottom: 60px;
}
.include-box .include-list {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-height: 310px;
  height: 500px;
}
.include-box .include-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 82px 15px 0;
  min-height: 100%;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
}
.include-box .include-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(174.42deg, rgba(36, 37, 41, 0.5) 4.71%, rgba(110, 101, 91, 0.5) 58.21%, rgba(87, 79, 68, 0.5) 83.54%), #242529;
  opacity: 0;
  transition: inherit;
}
.include-box .include-item > * {
  position: relative;
}
.include-box .include-item img,
.include-box .include-item svg {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  margin-bottom: 30px;
}
.include-box .include-item .inc-color {
  fill: currentColor;
  transition: fill 0.3s;
}
.include-box .include-item .include-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 20px;
}
.include-box .include-item .include-line span {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.2;
}
.include-box .include-item .include-line::before, .include-box .include-item .include-line::after {
  content: "";
  width: 70px;
  height: 1px;
  margin: 0 13px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  opacity: 0.2;
}
.include-box .include-item .include-line::before {
  transform: scale(-1);
}
.include-box .include-item .p {
  margin-bottom: 10px;
  max-height: 0;
  color: #fff;
  font-size: 20px;
  overflow: hidden;
  transition: inherit;
}
.include-box .include-item .p b {
  font-weight: 300;
  color: #C4C4C4;
}
.include-box .include-item:hover {
  padding-top: 61px;
  margin: -80px 0;
  min-height: 470px;
  color: #fff;
}
.include-box .include-item:hover::before {
  left: -20px;
  right: -20px;
  opacity: 1;
}
.include-box .include-item:hover .p {
  max-height: 300px;
}

/* 4_projects */
.projects-box {
  padding-top: 100px;
  padding-bottom: 169px;
}
.projects-box .btns-list {
  display: flex;
  margin: 0 auto;
  max-width: 1400px;
  height: 70px;
  background: #fff;
  border-radius: 35px;
}
.projects-box .b-item {
  display: flex;
  align-items: center;
  padding-left: 50px;
  padding-right: 15px;
  font-size: 30px;
  width: 100%;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 35px;
  transition: 0.2s;
  overflow: hidden;
}
.projects-box .b-item img {
  margin-left: auto;
  transition: 0.2s;
}
.projects-box .b-item.active {
  border: 1px solid #EE7D00;
  color: #EE7D00;
}
.projects-box .b-item:not(.active) img {
  filter: grayscale(100%);
  opacity: 0.2;
}
.projects-box .b-item:not(.active):hover img {
  filter: none;
  opacity: 0.5;
}
.projects-box .integers-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 57px 0 0 180px;
  max-width: 1284px;
}
.projects-box .integers-row:not(.active) {
  display: none;
}
.projects-box .integers-row .slash {
  margin-left: 61px;
  margin-right: -11px;
  width: 1px;
  height: 150px;
  background: #EE7D00;
  transform: rotate(10deg);
}
.projects-box .int-col {
  display: flex;
  margin-top: -14px;
}
.projects-box .int-from {
  margin-left: 36px;
  margin-bottom: 40px;
  font-size: 26px;
}
.projects-box .int-int {
  margin: -100px 0;
  padding-left: 20px;
  padding-right: 0.18em;
  font-size: 70px;
  line-height: 200px;
}
.projects-box .int-info {
  margin-top: -14px;
  font-size: 20px;
}
.projects-box .int-col:first-child, .projects-box .int-col:last-child {
  margin-top: -6px;
}
.projects-box .int-col:first-child .int-int, .projects-box .int-col:last-child .int-int {
  background: -webkit-linear-gradient(234.46deg, #4E4E4E 23.94%, #9A9A9A 45.51%, #262626 64.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 110px;
}
.projects-box .int-col:first-child .int-info, .projects-box .int-col:last-child .int-info {
  margin-top: -21px;
}
.projects-box .int-col:last-child {
  margin-bottom: 71px;
}
.projects-box .home-360 {
  position: relative;
  display: flex;
  align-items: center;
  margin: 105px calc(var(--side-size) * -1);
  height: 310px;
  background: #6A7A6A url("../images/projects-bg.jpg") no-repeat 50%;
  background-size: cover;
  cursor: -webkit-grab;
  cursor: grab;
}
.projects-box .home-360:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.projects-box .home-360::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  bottom: -90px;
}
.projects-box .home-360 .main-image {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  max-width: none;
  transform: scale(1.48) translate(1.5%, 4%);
}
.projects-box .bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 42px;
}
.projects-box .bottom-row:not(.active) {
  display: none;
}
.projects-box .bottom-row .br-item {
  max-width: 250px;
  font-size: 20px;
  line-height: 1.5;
}
.projects-box .bottom-row .br-item b {
  font-weight: 500;
}
.projects-box .bottom-row .br-item:nth-child(1) {
  margin-right: -20px;
}
.projects-box .bottom-row .br-item:nth-child(2) {
  margin-right: 30px;
}
.projects-box .bottom-row .pr-complect {
  margin-left: -20px;
  margin-right: 20px;
}
.projects-box .bottom-row .pr-complect::before {
  content: "";
  margin-right: 0.7666em;
  width: 1.333em;
  height: 1.333em;
  background: url("../images/svg/home.svg") no-repeat 50%;
  background-size: contain;
}
.projects-box .bottom-row .pr-plan {
  margin-left: 5px;
  margin-right: -5px;
}
.projects-box .bottom-row .pr-plan::before {
  content: "";
  margin-right: 0.7666em;
  width: 1.333em;
  height: 1.333em;
  background: url("../images/svg/plans.svg") no-repeat 50%;
  background-size: contain;
}
.projects-box .bottom-row .btn::before, .projects-box .bottom-row .slick-arrow::before {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' viewBox='0 0 130 130' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='65' cy='65' r='64.5' opacity='.2' stroke='url(%23a)'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='115.53' x2='11.382' y1='-3.3006' y2='21.41' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FAFAFA' offset='0'/%3E%3Cstop stop-color='%23B3B3B3' offset='.50497'/%3E%3Cstop stop-color='%23262626' offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

/* 5_gallery */
.gallery-box {
  color: #fff;
  overflow: hidden;
}
.gallery-box .gallery-content {
  position: relative;
  display: flex;
  position: relative;
  height: 800px;
}
.gallery-box .gallery-content .gallery-black-bg {
  position: absolute;
  left: calc( var(--side-size) * -1);
  right: 140px;
  height: 100%;
  background: linear-gradient(174.42deg, rgba(36, 37, 41, 0.5) 4.71%, rgba(110, 101, 91, 0.5) 58.21%, rgba(87, 79, 68, 0.5) 83.54%), #242529;
}
.gallery-box .gallery-content .gallery-black-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/svg/gallery-bg.svg") no-repeat 100% 100%;
  background-size: contain;
}
.gallery-box .left-slider-content {
  position: relative;
  padding-top: 130px;
  max-width: 420px;
  width: 100%;
  flex-shrink: 0;
  z-index: 3;
}
.gallery-box .left-slider-content .h2 {
  letter-spacing: 0.02em;
  line-height: 1;
}
.gallery-box .left-slider-content .h2 .italic {
  letter-spacing: 0;
  line-height: 117%;
}
.gallery-box .slick-arrows {
  margin-top: 215px;
  max-width: 286px;
}
.gallery-box .gallery-slider {
  align-self: center;
  max-width: 950px;
}
.gallery-box .gallery-slider .slick-list {
  overflow: visible;
}
.gallery-box .gallery-slider .slick-slide {
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  color: #fff;
}
.gallery-box .gallery-slider .slick-current,
.gallery-box .gallery-slider .slick-current ~ .slick-slide {
  visibility: visible;
  opacity: 1;
}
.gallery-box .gallery-item {
  position: relative;
}
.gallery-box .gallery-item .slide-info {
  position: absolute;
  left: 50px;
  bottom: 40px;
  font-size: 26px;
}

/* 6_plan */
.plan-box {
  padding-top: 147px;
}
.plan-box .title-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.plan-box .title-row .title-description {
  margin-top: 44px;
  max-width: 545px;
  font-size: 26px;
  line-height: 154%;
}
.plan-box .title-row .markers {
  display: flex;
  margin-top: 85px;
  padding-right: 51px;
  font-size: 20px;
}
.plan-box .title-row .markers .m-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan-box .title-row .markers .m-item.g svg {
  fill: #25AE60;
}
.plan-box .title-row .markers .m-item.y {
  margin-left: 60px;
  margin-right: 74px;
}
.plan-box .title-row .markers .m-item.y svg {
  fill: #E9C55F;
}
.plan-box .title-row .markers .m-item.r svg {
  fill: #FA3E2D;
}
.plan-box .title-row .markers .img-to-svg {
  width: 40px;
  height: 26px;
  margin-bottom: 20px;
  fill: #ddd;
}
.plan-box .title-row .dot-link {
  margin-top: 77px;
}
.plan-box .title-row .dot-link::before {
  content: "";
  width: 41px;
  height: 32px;
  margin-right: 23px;
  background: url(../images/svg/main-plan.svg) no-repeat 50%;
  background-size: cover;
}
.plan-box .big-plan {
  position: relative;
  max-width: 100%;
}
.plan-box .big-plan::before, .plan-box .big-plan::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(0deg, #FAFAFA, #FAFAFA00);
  pointer-events: none;
}
.plan-box .big-plan::before {
  top: -1px;
  transform: scale(-1);
}
.plan-box .big-plan::after {
  bottom: -1px;
}
.plan-box .big-plan .plan-front {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.plan-box .marker {
  position: absolute;
  width: 3%;
  height: 2%;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  pointer-events: none;
}
.plan-box .str0 {
  outline: none;
  border: 0;
}
.plan-box .marker span {
  position: absolute;
  width: 85%;
  padding-left: 10%;
  height: 100%;
  display: flex;
  background: #f24839;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65vw;
  z-index: 1;
}
.plan-box .marker::before {
  content: "";
  top: 0;
  left: 37%;
  position: absolute;
  width: 100%;
  height: 50%;
  display: block;
  background: #f24839;
  transform: rotate(-80deg);
}
.plan-box .marker.g span {
  background: #25ae60;
}
.plan-box .marker.g::before {
  background: #25ae60;
}

.tippy-box[data-theme~=plan] {
  background: transparent;
  font: inherit;
  color: #262626;
  z-index: 10;
}
.tippy-box[data-theme~=plan][data-placement=top] .tippy-content {
  padding: 48px 50px 40px;
}
.tippy-box[data-theme~=plan][data-placement=top]::before {
  transform: scale(-1);
}
.tippy-box[data-theme~=plan]::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: -1;
  box-shadow: 0px 22px 24px 0px #24252933;
}
.tippy-box[data-theme~=plan]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-clip-path: polygon(0 20px, calc(50% - 15px) 20px, 50% 0, calc(50% + 15px) 20px, 100% 20px, 100% 100%, 0 100%);
          clip-path: polygon(0 20px, calc(50% - 15px) 20px, 50% 0, calc(50% + 15px) 20px, 100% 20px, 100% 100%, 0 100%);
}
.tippy-box[data-theme~=plan] .tippy-content {
  position: relative;
  padding: 68px 50px 20px;
}
.tippy-box[data-theme~=plan] .tippy-content .tt-title {
  font-size: 30px;
  margin-bottom: 6px;
}
.tippy-box[data-theme~=plan] .tippy-content .tt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 38px;
}
.tippy-box[data-theme~=plan] .tippy-content .int-item {
  display: flex;
}
.tippy-box[data-theme~=plan] .tippy-content .int-int {
  margin: -0.5em 0;
  padding-right: 0.3em;
  font-size: 70px;
  background: -webkit-linear-gradient(234.46deg, #4E4E4E 23.94%, #9A9A9A 45.51%, #262626 64.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  line-height: 2em;
}
.tippy-box[data-theme~=plan] .tippy-content .int-info {
  margin-top: 12px;
  font-size: 20px;
}

/* 7_route */
.route-box {
  padding-top: 160px;
  padding-bottom: 160px;
}
.route-box .route-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 800px;
  font-size: 30px;
}
.route-box .route-item .route-map {
  position: absolute;
  left: 112px;
  right: calc( var(--side-size) * -1);
  height: 100%;
  background: #eee;
}
.route-box .route-item .route-map #map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.route-box .route-item .route-map .ymaps-2-1-78-image {
  box-shadow: 0px 11px 13px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.route-box .route-item .route-map .ymaps-2-1-78-copyrights-pane {
  visibility: hidden;
}
.route-box .route-item .route-map .ymaps-2-1-78-map-bg {
  background: #eee;
}
.route-box .route-item .route-item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 35px 20px;
  width: 530px;
  height: 640px;
  background: #fff;
  text-align: center;
}
.route-box .route-item .route-item-content img {
  width: 80px;
  height: 80px;
}
.route-box .route-item .route-item-content .h3 {
  margin-top: 30px;
  margin-bottom: 50px;
}
.route-box .route-item .route-item-content .distance {
  margin-top: 18px;
  margin-bottom: 40px;
  font-size: 20px;
  opacity: 0.5;
}

/* 8_requisition */
.requisition-box {
  position: relative;
  padding-top: 130px;
  padding-bottom: 133px;
  background: linear-gradient(170.61deg, rgba(36, 37, 41, 0.5) 52.6%, rgba(110, 101, 91, 0.5) 107.31%, rgba(87, 79, 68, 0.5) 133.21%), #242529;
  color: #fff;
}
.requisition-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/svg/gallery-bg.svg") no-repeat 100% 100%;
  background-size: 1645px auto;
  transform: translateX(22.5%);
}
.requisition-box .container {
  position: relative;
}
.requisition-box .top-row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.requisition-box .h1 {
  max-width: 715px;
  letter-spacing: 0.00625em;
  text-align: right;
}
.requisition-box .h1 .italic {
  font-size: 0.975em;
  letter-spacing: 0;
  line-height: 0.75;
  background: -webkit-linear-gradient(228.49deg, #FFFFFF 7.97%, #B4B4B4 37.53%, #FFFFFF 64.76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.requisition-box .re-left-inputs {
  margin-top: 0;
  width: 100%;
  max-width: 810px;
}
.requisition-box .re-cols-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 80px 30px;
}
.requisition-box .re-col {
  grid-column: span 12;
}
.requisition-box .re-option {
  grid-column: span 8;
}
.requisition-box .re-equipment {
  grid-column: span 4;
}
.requisition-box .re-title {
  display: flex;
  margin-bottom: 41px;
  font-size: 40px;
}
.requisition-box .re-title .info {
  margin-left: 16px;
  margin-top: -7px;
  width: 0.75em;
  height: 0.75em;
  fill: #fff;
  opacity: 0.2;
  transition: 0.2s;
  cursor: pointer;
}
.requisition-box .re-title .info:hover {
  fill: #EE7D00;
  opacity: 1;
}
.requisition-box .btns-list {
  position: relative;
  display: flex;
  margin: 0 auto;
  height: 60px;
}
.requisition-box .btns-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.requisition-box .btns-list .form-radio-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  font-size: 26px;
  width: 100%;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 35px;
  transition: 0.2s;
  overflow: hidden;
}
.requisition-box .btns-list .form-radio-item img {
  margin-left: auto;
  margin-right: -55px;
  margin-top: 10px;
  transition: 0.2s;
}
.requisition-box .btns-list .form-radio-item.active {
  border: 1px solid #EE7D00;
  color: #EE7D00;
}
.requisition-box .btns-list .form-radio-item:not(.active) img {
  opacity: 0.2;
}
.requisition-box .btns-list .form-radio-item:not(.active):hover img {
  opacity: 0.5;
}
.requisition-box .re-equipment .form-radio-item {
  justify-content: center;
  padding: 0 15px;
}
.requisition-box .re-additional .form-radio-list {
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.requisition-box .re-additional .form-radio-item {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 1.15;
  cursor: pointer;
}
.requisition-box .re-additional .form-radio-item span {
  max-width: 260px;
  transition: 0.2s;
  opacity: 0.5;
}
.requisition-box .re-additional .form-radio-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1.1em;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: 1px #fff solid;
  opacity: 0.2;
  transition: 0.2s;
}
.requisition-box .re-additional .form-radio-item .icon::before {
  content: url(../images/svg/form-yes.svg);
  position: absolute;
  margin-bottom: -0.15em;
  width: 1em;
  transition: 0.2s;
  opacity: 0;
}
.requisition-box .re-additional .form-radio-item:hover span {
  opacity: 1;
}
.requisition-box .re-additional .form-radio-item.active span {
  opacity: 1;
}
.requisition-box .re-additional .form-radio-item.active .icon {
  opacity: 1;
  border-color: #EE7D00;
}
.requisition-box .re-additional .form-radio-item.active .icon::before {
  opacity: 1;
}
.requisition-box .re-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 122px;
}
.requisition-box .re-bottom .rb-info {
  display: flex;
  align-items: center;
  margin-right: 50px;
  max-width: 490px;
  font-size: 20px;
  line-height: 1.15;
  opacity: 0.5;
}
.requisition-box .re-bottom .rb-info::before {
  content: "";
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 20px;
  background: url("../images/svg/attention.svg") no-repeat 50%;
  background-size: contain;
}

/* 9_footer */
.footer-box {
  padding-top: 80px;
  padding-bottom: 76px;
  background: #232322;
  color: #fff;
}
.footer-box .top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  font-size: 26px;
}
.footer-box .company-name {
  font-size: 30px;
  line-height: 1.1666666667;
  max-width: 360px;
}
.footer-box .company-name b {
  font-weight: 500;
}
.footer-box .company-info {
  margin-left: 20px;
  display: flex;
  align-items: center;
}
.footer-box .company-info:not(:last-child) {
  margin-right: 80px;
}
.footer-box .company-info svg {
  fill: currentColor !important;
  width: 26px;
  margin-right: 16px;
}
.footer-box .company-site {
  color: #EE7D00;
  margin-right: 20px;
}
.footer-box .company-site:hover {
  color: #D46F00;
}
.footer-box .bottom-row {
  display: flex;
  align-items: center;
  margin-top: 58px;
  font-size: 20px;
  max-width: 1540px;
}
.footer-box .bottom-row .politic {
  margin-left: 180px;
  margin-right: auto;
  color: #fff8;
}
.footer-box .bottom-row .politic:hover {
  color: #D46F00;
}
.footer-box .bottom-row .beavers-link {
  display: flex;
  align-items: center;
}
.footer-box .bottom-row .beavers-link img {
  margin-right: 20px;
  width: 59px;
}

/* 10_popup */
.fancybox-bg {
  background: #232322;
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.7;
}

.fancybox-slide--html .fancybox-button {
  position: absolute;
  top: -35px;
  left: 50%;
  padding: 9px !important;
  color: #262626;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
  opacity: 1;
  transform: translateX(-50%);
}
.fancybox-slide--html .fancybox-button:hover {
  opacity: 1;
}

.fancybox-slide--html {
  padding: 70px 15px;
}
.fancybox-slide--html .fancybox-content {
  cursor: default;
}

.fancybox-content {
  max-width: 1650px;
  width: 100%;
  background: #FAFAFA;
  overflow: visible;
  cursor: default;
}

.popup-house-layout {
  padding: 82px 0 105px 69px;
}
.popup-house-layout .popup-house-layout-content {
  display: grid;
  grid-template-columns: 717px 1fr;
  gap: 54px;
  max-width: 100%;
}
.popup-house-layout .slick-arrows {
  justify-content: flex-end;
  transform: translateX(10px);
  margin-right: 100px;
  margin-bottom: 38px;
}
.popup-house-layout .slick-arrow {
  height: 20px;
  margin-bottom: 0px;
}
.popup-house-layout .slick-arrow::before {
  display: none;
}
.popup-house-layout .slick-arrow .arrow {
  position: relative;
  margin: 0 !important;
  width: 99px;
  right: 0;
  left: 0;
}
.popup-house-layout .slick-arrow.slick-prev {
  margin-right: -8px;
}
.popup-house-layout .slick-arrow.slick-disabled .arrow {
  background-image: linear-gradient(90deg, rgba(193, 193, 193, 0), #C1C1C1);
  color: #C1C1C1;
}
.popup-house-layout .gallery-slider-wrap {
  padding-right: 100px;
  overflow: hidden;
}
.popup-house-layout .gallery-slider {
  width: 100%;
  max-width: 100%;
}
.popup-house-layout .gallery-slider .slick-list {
  overflow: visible;
}
.popup-house-layout .gallery-slider .slick-slide {
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  color: #fff;
}
.popup-house-layout .gallery-slider .slick-current,
.popup-house-layout .gallery-slider .slick-current ~ .slick-slide {
  visibility: visible;
  opacity: 1;
}
.popup-house-layout .gallery-item {
  position: relative;
}
.popup-house-layout .gallery-item .slide-info {
  position: absolute;
  left: 50px;
  bottom: 40px;
  font-size: 26px;
}
.popup-house-layout .popup-plan-wrap {
  margin-top: -16px;
  flex-shrink: 0;
}
.popup-house-layout .popup-plan {
  position: relative;
}
.popup-house-layout .popup-plan img {
  mix-blend-mode: multiply;
  width: 100%;
}
.popup-house-layout .popup-plan .group:hover .item {
  opacity: 0.7;
}
.popup-house-layout .popup-plan .item {
  position: absolute;
  background: #EE7D00;
  opacity: 0;
  transition: 0.2s;
  cursor: pointer;
  mix-blend-mode: multiply;
}
.popup-house-layout .popup-plan .item1 {
  top: 22%;
  left: 13.4%;
  width: 18.3%;
  height: 49.9%;
}
.popup-house-layout .popup-plan .item2 {
  top: 38.2%;
  left: 32.4%;
  width: 12.6%;
  height: 17.5%;
}
.popup-house-layout .popup-plan .item3 {
  top: 38.2%;
  left: 45%;
  width: 10.5%;
  height: 33.8%;
}
.popup-house-layout .popup-plan .item4 {
  top: 22%;
  left: 55.5%;
  width: 20.7%;
  height: 50%;
}
.popup-house-layout .popup-plan .item5 {
  top: 22%;
  left: 32.5%;
  width: 9.8%;
  height: 15.5%;
}
.popup-house-layout .popup-plan .item6 {
  top: 56.6%;
  left: 32.5%;
  width: 11.9%;
  height: 15.4%;
}
.popup-house-layout .popup-plan .item7 {
  top: 22%;
  left: 76.9%;
  width: 7.8%;
  height: 18%;
}
.popup-house-layout .popup-plan .item8 {
  top: 22%;
  left: 85.3%;
  width: 9.3%;
  height: 18%;
}
.popup-house-layout .popup-plan .item9 {
  top: 40.9%;
  left: 76.8%;
  width: 17.8%;
  height: 31%;
}
.popup-house-layout .popup-plan .item10 {
  top: 21.9%;
  left: 42.9%;
  width: 12.1%;
  height: 15.5%;
}

.popup-equipment {
  padding: 90px 100px;
  font-size: 20px;
}
.popup-equipment .h2 {
  max-width: 600px;
}
.popup-equipment .popup-first-row,
.popup-equipment .popup-last-row,
.popup-equipment .popup-mp-row {
  display: grid;
  grid-template-columns: 1fr 240px 240px;
  gap: 40px;
}
.popup-equipment .popup-first-row {
  margin-bottom: 44px;
}
.popup-equipment .popup-first-row .int-name {
  margin-top: 3px;
  font-size: 26px;
}
.popup-equipment .popup-first-row .int-int {
  margin: calc(-100px + 0.45em) 0 calc(-100px + 0.82em);
  background: -webkit-linear-gradient(234.46deg, #4E4E4E 23.94%, #9A9A9A 45.51%, #262626 64.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 70px;
  line-height: 200px;
}
.popup-equipment .pe-col:not(:first-child) {
  text-align: center;
  justify-content: center;
}
.popup-equipment .popup-mp-row {
  padding: 15px 0;
  align-items: center;
  background: #fff;
  min-height: 60px;
}
.popup-equipment .popup-mp-row:nth-child(odd) {
  background: #FDFDFD;
}
.popup-equipment .popup-mp-row .pe-col {
  display: flex;
  align-items: center;
}
.popup-equipment .popup-mp-row .pe-col:first-child {
  padding-left: 40px;
}
.popup-equipment .popup-mp-row .flex {
  display: flex;
  align-items: center;
  margin-right: -30px;
}
.popup-equipment .popup-mp-row .flex > span:first-child {
  min-width: 8.5em;
}
.popup-equipment .popup-mp-row i {
  font-style: normal;
  opacity: 0.5;
}
.popup-equipment .popup-mp-row .arrow {
  position: relative;
  flex-shrink: 0;
  margin-left: 3px;
  margin-right: 30px;
  width: 57px;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(193, 193, 193, 0), #C1C1C1);
  color: #C1C1C1;
  transition: inherit;
}
.popup-equipment .popup-mp-row .arrow::before, .popup-equipment .popup-mp-row .arrow::after {
  position: absolute;
  right: 1px;
  content: "";
  width: 11px;
  height: 1px;
  background: currentColor;
}
.popup-equipment .popup-mp-row .arrow::after {
  transform: rotate(-40deg) translateY(450%);
}
.popup-equipment .popup-mp-row .arrow::before {
  transform: rotate(40deg) translateY(-450%);
}
.popup-equipment .popup-mp-row .yes {
  margin-right: 6px;
  width: 30px;
  height: 23px;
  background: url(../images/svg/form-yes.svg) no-repeat 50%;
  background-size: contain;
}
.popup-equipment .popup-last-row {
  margin: 40px 0 45px;
}
.popup-equipment .popup-last-row .popup-btn {
  padding: 14px 20px;
  font-size: 26px;
  border: 1px solid #C4C4C4;
  border-radius: 30px;
  transition: 0.2s;
  cursor: pointer;
  text-align: center;
}
.popup-equipment .popup-last-row .popup-btn:hover {
  background: #bbb;
  color: #fff;
  border-color: #bbb;
}
.popup-equipment .popup-last-row .popup-btn.active {
  border-color: #EE7D00;
  color: #EE7D00;
}
.popup-equipment .popup-last-row .popup-btn.active:hover {
  background: #EE7D00;
  color: #fff;
}
.popup-equipment .pe-bottom-info {
  opacity: 0.5;
}

.popup-master-plan {
  padding: 30px;
}
.popup-master-plan .big-logo {
  top: 0;
  left: 70px;
  padding: 34px 20px 0;
  width: 200px;
  height: 216px;
  z-index: 5;
}
.popup-master-plan .big-logo::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc( 100% - 21px ), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc( 100% - 21px ), 0 100%);
}
.popup-master-plan .big-logo .logo-lines {
  width: 37px;
  height: 62px;
}
.popup-master-plan .big-logo .logo-text {
  margin-top: 15px;
  font-size: 36px;
}
.popup-master-plan .big-logo .logo-text .italic {
  font-size: 19px;
}
.popup-master-plan .mp-wrap {
  position: relative;
}
.popup-master-plan .mp-border {
  position: absolute;
  top: 16.31%;
  left: 22.5%;
  height: 56.1%;
  width: 49.31%;
  transform: scale(1.01);
}
.popup-master-plan .gray-btn {
  position: absolute;
  padding: 18.5px 41.5px;
  background: linear-gradient(174.42deg, rgba(36, 37, 41, 0.5) 4.71%, rgba(110, 101, 91, 0.5) 58.21%, rgba(87, 79, 68, 0.5) 83.54%), #242529;
  font-size: 20px;
  color: #fff;
  border-radius: 30px;
  transform: translate(-50%, -50%);
}
.popup-master-plan .gb-1 {
  top: 41.5%;
  left: 46.3%;
}
.popup-master-plan .gb-2 {
  display: flex;
  align-items: center;
  top: 11.3%;
  left: 69.7%;
}
.popup-master-plan .gb-2::before {
  content: "";
  display: inline-block;
  margin: -15px 14px -15px 2px;
  width: 14px;
  height: 27px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 15 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m0.5 8.5102 0.81962 0.76376 5.6334-6.718v24.944h1.0939v-24.944l5.6334 6.718 0.8196-0.76376-6.717-8.0102h-0.566l-6.717 8.0102z' fill='url(%23a)'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='.5' x2='.5' y1='.5' y2='27.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23C1C1C1' offset='.0055828'/%3E%3Cstop stop-color='%23A0A0A0' stop-opacity='.01' offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
}

.popup-success {
  max-width: 1090px;
  padding: 0;
  text-align: center;
}
.popup-success .ps-top {
  position: relative;
  padding-bottom: 36.7%;
  background: linear-gradient(174.42deg, rgba(36, 37, 41, 0.5) 4.71%, rgba(110, 101, 91, 0.5) 58.21%, rgba(87, 79, 68, 0.5) 83.54%), #242529;
}
.popup-success .ps-top .pst-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/ps-bg.png") 50% 100% no-repeat;
  background-size: 78.6% auto;
}
.popup-success .ps-top .yes-circle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: url(../images/svg/form-yes.svg) no-repeat 50%;
  background-size: 33px auto;
  border: 1px solid #EE7D00;
  border-radius: 50%;
}
.popup-success .ps-top .yes-circle::before, .popup-success .ps-top .yes-circle::after {
  content: "";
  position: absolute;
  border: 1px solid #EE7D00;
  border-radius: 50%;
}
.popup-success .ps-top .yes-circle::before {
  width: 176px;
  height: 176px;
  opacity: 0.2;
}
.popup-success .ps-top .yes-circle::after {
  width: 266px;
  height: 266px;
  opacity: 0.1;
}
.popup-success .ps-bottom {
  padding: 80px 50px;
}

/* pages */
@media (max-width: 1699.98px) {
  .h1 {
    font-size: 70px;
  }

  .h2 {
    font-size: 55px;
  }

  .h3 {
    font-size: 45px;
  }

  .h4 {
    font-size: 27px;
  }

  .dot-link {
    font-size: 23px;
  }

  .btn, .slick-arrow {
    font-size: 25px;
  }

  .btn .arrow, .slick-arrow .arrow {
    width: 110px;
  }

  .btn::before, .slick-arrow::before {
    width: 100px;
    height: 100px;
  }

  .home-box {
    height: 800px;
  }

  .home-box .phone-btn {
    top: 70px;
  }

  .home-box .phone-btn span {
    font-size: 27px;
  }

  .home-box .h1 {
    top: 260px;
    max-width: 770px;
  }

  .big-logo {
    padding-top: 30px;
    height: 380px;
  }

  .home-box .bottom-int .bo-int {
    font-size: 100px;
  }

  .home-box .bottom-int {
    grid-template-columns: 330px 380px;
    bottom: 130px;
  }

  .home-box .bottom-btn {
    bottom: 130px;
  }

  .about-box .title-description {
    font-size: 20px;
  }

  .about-box .about-item {
    height: 700px;
  }

  .about-box .about-item .about-item-content {
    height: 580px;
  }

  .about-box .about-item .about-item-content img {
    width: 70px;
    height: 70px;
  }

  .about-box .about-item .about-item-content .p {
    font-size: 18px;
  }

  .include-box .include-list {
    max-height: 270px;
    grid-gap: 20px;
  }

  .include-box .include-item img, .include-box .include-item svg {
    width: 60px;
    height: 60px;
  }

  .include-box .include-item .p {
    font-size: 16px;
  }

  .include-box .include-item {
    padding: 70px 10px 0;
  }
  .include-box .include-item:hover {
    padding-top: 60px;
    margin: -100px 0;
    min-height: 440px;
  }

  .projects-box .b-item {
    padding-left: 40px;
    font-size: 25px;
  }

  .projects-box .b-item img {
    max-width: 140px;
  }

  .projects-box .integers-row {
    margin: 57px 0 0;
  }

  .projects-box .bottom-row .br-item {
    font-size: 18px;
  }

  .projects-box .bottom-row .br-item:nth-child(1),
.projects-box .bottom-row .br-item:nth-child(2) {
    margin-right: 30px;
  }

  .projects-box .bottom-row .pr-plan {
    margin-right: 15px;
  }

  .gallery-box .slick-arrows {
    margin-top: 150px;
    max-width: 260px;
  }

  .gallery-box .gallery-slider {
    max-width: 750px;
  }

  .plan-box .title-row .title-description {
    margin-top: 30px;
    max-width: 440px;
    font-size: 20px;
  }

  .plan-box .title-row .markers {
    font-size: 18px;
  }

  .plan-box .title-row .markers .m-item.y {
    margin: 0 30px;
  }

  .tippy-box[data-theme~=plan][data-placement=top] .tippy-content {
    padding: 38px 35px 30px;
  }
  .tippy-box[data-theme~=plan] .tippy-content {
    padding: 58px 35px 10px;
  }

  .tippy-box[data-theme~=plan] .tippy-content .int-int {
    font-size: 40px;
  }

  .tippy-box[data-theme~=plan] .tippy-content .int-info {
    font-size: 16px;
    margin-top: 8px;
  }

  .tippy-box[data-theme~=plan] .tippy-content .tt-title {
    font-size: 27px;
  }

  .route-box .route-item {
    height: 700px;
  }

  .route-box .route-item .route-item-content {
    height: 580px;
    width: 480px;
  }

  .route-box .route-item .route-item-content .distance {
    font-size: 18px;
  }

  .form .form-input {
    font-size: 20px;
  }

  .requisition-box .re-left-inputs {
    max-width: 560px;
  }

  .requisition-box .re-title {
    font-size: 35px;
  }

  .requisition-box .btns-list {
    height: 55px;
  }

  .requisition-box .btns-list .form-radio-item {
    padding-left: 25px;
    font-size: 22px;
  }

  .requisition-box .btns-list .form-radio-item img {
    margin-right: -35px;
    max-width: 100px;
    margin-top: 0;
  }

  .requisition-box .re-additional .form-radio-item {
    font-size: 17px;
  }

  .requisition-box .re-bottom .rb-info {
    font-size: 17px;
  }

  .footer-box .company-name {
    font-size: 25px;
  }

  .footer-box .top-row {
    font-size: 22px;
  }

  .footer-box .company-info:not(:last-child) {
    margin-right: 50px;
  }

  .footer-box .bottom-row {
    font-size: 18px;
  }

  .footer-box .bottom-row .politic {
    margin-left: 22px;
  }

  .fancybox-content {
    max-width: 1260px;
  }

  .popup-house-layout .popup-house-layout-content {
    grid-template-columns: 580px 1fr;
    gap: 30px;
  }

  .popup-equipment {
    padding: 70px 60px;
  }

  .popup-equipment {
    font-size: 18px;
  }

  .popup-equipment .popup-mp-row .yes {
    margin: 0;
    width: 1.5em;
    height: 1.15em;
  }

  .popup-equipment .popup-first-row .int-int {
    font-size: 60px;
  }

  .popup-equipment .popup-first-row .int-name {
    font-size: 22px;
  }

  .popup-equipment .popup-first-row, .popup-equipment .popup-last-row, .popup-equipment .popup-mp-row {
    grid-template-columns: 1fr 130px 130px;
  }

  .popup-equipment .popup-last-row .popup-btn {
    padding: 10px 15px;
    font-size: 20px;
  }

  .popup-equipment .pe-bottom-info {
    max-width: 800px;
    line-height: 1.4;
  }

  .popup-success {
    max-width: 860px;
  }

  .popup-success .ps-bottom {
    padding: 60px 30px;
  }
}
@media (max-width: 1299.98px) {
  :root {
    --content-width: 960px;
  }

  .h1 {
    font-size: 60px;
  }

  .h2 {
    font-size: 45px;
  }

  .h3 {
    font-size: 35px;
  }

  .h4 {
    font-size: 23px;
  }

  .dot-link {
    font-size: 20px;
  }

  .btn, .slick-arrow {
    font-size: 22px;
  }

  .btn::before, .slick-arrow::before {
    width: 80px;
    height: 80px;
  }

  .home-box {
    height: 700px;
  }

  .home-box .h1 {
    top: 220px;
    max-width: 11em;
  }

  .home-box .phone-btn span {
    font-size: 22px;
  }

  .home-box .phone-btn {
    min-width: 60px;
    height: 60px;
  }

  .home-box .phone-btn::after {
    margin: 0 20px;
    width: 20px;
    height: 20px;
  }

  .home-box .phone-btn:hover span {
    margin-left: 25px;
    margin-right: 0;
  }

  .big-logo {
    padding-top: 17px;
    width: 210px;
    height: 320px;
    overflow: hidden;
  }

  .big-logo::before {
    width: 280px;
  }

  .big-logo .logo-line {
    margin: -7px 0;
    font-size: 18px;
  }

  .big-logo .logo-text {
    font-size: 40px;
  }

  .big-logo .logo-text .italic {
    font-size: 0.52em;
  }

  .home-box .bottom-int {
    grid-template-columns: 220px 270px;
  }

  .home-box .bottom-int .bo-from {
    font-size: 20px;
    margin-left: 10px;
    margin-bottom: 8px;
  }

  .home-box .bottom-int .bo-int {
    margin-right: 10px;
    font-size: 70px;
  }

  .home-box .bottom-int .bo-info {
    font-size: 14px;
    max-width: 115px;
  }

  .about-box {
    padding-top: 100px;
  }

  .about-box .title-row {
    align-items: center;
    flex-wrap: wrap;
  }

  .about-box .title-row .h2 {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-box .title-description {
    font-size: 20px;
  }

  .about-box .about-item {
    margin-top: 70px;
    height: 550px;
  }

  .about-box .about-item .about-item-content {
    padding: 60px 35px 30px;
    height: 500px;
    width: 400px;
  }

  .about-box .about-item .about-item-content img {
    width: 60px;
    height: 60px;
  }

  .about-box .about-item .about-item-content .h3 {
    margin-top: 25px;
    margin-bottom: 30px;
  }

  .about-box .about-item .about-item-content .p {
    font-size: 16px;
  }

  .include-box {
    padding-top: 120px;
    padding-bottom: 20px;
  }

  .include-box .include-list {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 230px 230px;
    margin: 0 auto;
    max-width: 700px;
    max-height: none;
    height: auto;
  }

  .include-box .include-item {
    padding-top: 50px;
    grid-column: span 2;
  }
  .include-box .include-item:nth-child(4) {
    grid-column: 2/span 2;
  }

  .include-box .include-item:hover {
    padding-top: 40px;
    padding-bottom: 20px;
    max-height: none;
    min-height: 380px;
    z-index: 2;
  }

  .projects-box {
    padding-bottom: 120px;
  }

  .projects-box .btns-list {
    height: 50px;
  }

  .projects-box .b-item {
    padding-left: 25px;
    font-size: 22px;
  }

  .projects-box .b-item img {
    max-width: 90px;
  }

  .projects-box .int-col:first-child .int-int, .projects-box .int-col:last-child .int-int {
    font-size: 70px;
  }

  .projects-box .int-col:first-child .int-info, .projects-box .int-col:last-child .int-info {
    margin-top: -14px;
  }

  .projects-box .int-int {
    font-size: 50px;
  }

  .projects-box .int-info {
    margin-top: -10px;
    font-size: 14px;
  }

  .projects-box .int-from {
    margin-top: 10px;
    margin-left: 30px;
    margin-bottom: 25px;
    font-size: 20px;
  }

  .projects-box .integers-row .slash {
    height: 110px;
  }

  .projects-box .home-360 {
    margin: 70px calc(var(--side-size) * -1);
    height: 220px;
  }

  .projects-box .home-360 .main-image {
    transform: scale(1.48) translate(1.5%, 6%);
  }

  .projects-box .bottom-row {
    flex-wrap: wrap;
  }
  .projects-box .bottom-row .br-item {
    width: 25%;
  }
  .projects-box .bottom-row .btn, .projects-box .bottom-row .slick-arrow {
    margin-top: 60px;
    margin-left: auto;
  }

  .gallery-box .gallery-content {
    height: 540px;
  }

  .gallery-box .left-slider-content {
    padding-top: 115px;
    max-width: 320px;
  }

  .gallery-box .slick-arrows {
    margin-top: 90px;
  }

  .gallery-box .gallery-slider {
    max-width: 550px;
  }

  .plan-box {
    padding-top: 100px;
  }

  .plan-box .title-row {
    flex-wrap: wrap;
  }
  .plan-box .title-row .left-col {
    margin-bottom: 40px;
    width: 100%;
  }

  .plan-box .title-row .title-description {
    margin-top: 20px;
  }

  .plan-box .title-row .markers,
.plan-box .title-row .dot-link {
    margin-top: 0;
  }

  .route-box {
    padding: 100px 0;
  }

  .route-box .route-item .route-item-content {
    padding: 70px 30px;
    width: 380px;
    height: auto;
  }

  .route-box .route-item .route-item-content .h3 {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .route-box .route-item .route-item-content .distance {
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 16px;
  }

  .route-box .route-item .route-map {
    left: 150px;
  }

  .form .form-input {
    margin-bottom: 50px;
  }

  .requisition-box {
    padding: 100px 0;
  }

  .requisition-box .top-row {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .requisition-box .h1 {
    margin-bottom: 50px;
    text-align: left;
  }

  .requisition-box .re-option {
    grid-column: span 11;
  }

  .requisition-box .re-equipment {
    grid-column: span 6;
  }

  .requisition-box .re-additional .form-radio-list {
    max-width: 600px;
    grid-template-columns: 1fr 1fr;
  }

  .requisition-box .re-bottom .rb-info {
    margin-right: auto;
  }

  .requisition-box .re-bottom {
    margin-top: 80px;
  }

  .footer-box .top-row {
    display: grid;
    align-items: center;
    grid-template-columns: 350px 1fr 1fr;
    grid-template-rows: repeat(6, 1fr);
    font-size: 20px;
  }

  .footer-box .company-name {
    grid-row: 1/-1;
  }

  .footer-box .company-info {
    margin: 0;
    grid-column: 2;
    grid-row: span 3;
  }
  .footer-box .company-info img, .footer-box .company-info svg {
    width: 1em;
    margin-right: 0.8em;
  }

  .footer-box .company-address {
    grid-column: 3;
    grid-row: 1/-1;
  }

  .footer-box .company-info:not(:last-child) {
    margin: 0;
  }

  .footer-box .bottom-row {
    display: grid;
    align-items: center;
    grid-template-columns: 350px auto auto;
  }

  .footer-box .bottom-row {
    margin-top: 40px;
    font-size: 16px;
  }

  .footer-box .bottom-row .politic {
    margin: 0;
  }

  .fancybox-content {
    max-width: var(--content-width);
  }

  .popup-house-layout {
    padding: 80px 0 80px 50px;
  }

  .popup-house-layout .popup-house-layout-content {
    grid-template-columns: 440px 1fr;
  }

  .popup-house-layout .gallery-item .slide-info {
    left: 20px;
    bottom: 20px;
    font-size: 22px;
  }

  .popup-house-layout .slick-arrows {
    margin-right: 60px;
  }

  .popup-house-layout .gallery-slider-wrap {
    padding-right: 60px;
  }

  .popup-master-plan .gray-btn {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .popup-equipment {
    font-size: 16px;
  }

  .popup-success {
    max-width: 600px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --content-width: 720px;
  }

  .h1 {
    font-size: 45px;
  }

  .h2 {
    font-size: 40px;
  }

  .h3 {
    font-size: 33px;
  }

  .h4 {
    font-size: 23px;
  }

  .dot-link {
    font-size: 20px;
  }

  .btn, .slick-arrow {
    font-size: 20px;
  }

  .btn .arrow, .slick-arrow .arrow {
    width: 90px;
    margin-right: 25px;
  }

  .big-logo {
    height: 285px;
    width: 190px;
  }

  .big-logo .logo-text {
    font-size: 35px;
  }

  .big-logo .logo-lines {
    height: 65px;
  }

  .home-box .h1 {
    top: 240px;
  }

  .home-box .bottom-int {
    bottom: 80px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-box .title-row .h2 {
    margin-bottom: 0;
  }

  .about-box .title-description {
    margin: 30px 0 20px;
  }

  .about-box .about-item {
    height: 500px;
  }

  .about-box .about-item .about-item-content {
    padding-top: 50px;
    height: 440px;
  }

  .about-box .about-item .about-item-content .h3 {
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .about-box .about-item .about-item-content .p {
    line-height: 1.4;
  }

  .about-box .about-item .about-item-content img {
    width: 50px;
    height: 50px;
  }

  .about-box .about-item .about-item-bg {
    right: 50px;
    background-position: 50%;
  }

  .about-box .about-item:nth-child(2) .about-item-bg {
    left: 50px;
  }

  .include-box {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .projects-box {
    padding-bottom: 80px;
  }

  .projects-box .b-item {
    padding: 0 15px;
    justify-content: center;
  }

  .projects-box .b-item img {
    display: none;
  }

  .projects-box .integers-row {
    flex-wrap: wrap;
    max-width: 500px;
    margin: 40px auto 0;
  }
  .projects-box .integers-row .slash {
    display: none;
  }

  .projects-box .int-col:first-child, .int-col-wrap {
    width: 50%;
    order: -1;
    justify-content: center;
  }

  .projects-box .int-col {
    height: 50px;
  }

  .projects-box .home-360 {
    height: 180px;
  }

  .projects-box .bottom-row .btn, .projects-box .bottom-row .slick-arrow {
    margin-top: 0;
    padding: 50px 0;
  }

  .gallery-box .left-slider-content {
    padding-top: 100px;
    padding-right: 20px;
    max-width: 260px;
  }

  .slick-arrow .arrow {
    right: 5%;
  }

  .slick-arrow.slick-disabled .arrow {
    right: -20%;
  }

  .slick-arrow:not(.slick-disabled):hover .arrow {
    margin-right: 10px;
  }

  .slick-arrow.slick-disabled::before {
    width: 60px;
    height: 60px;
  }

  .gallery-box .gallery-slider {
    max-width: 500px;
  }

  .gallery-box .gallery-content {
    height: 500px;
  }

  .gallery-box .gallery-content .gallery-black-bg {
    right: 70px;
  }

  .plan-box .title-row .dot-link::before {
    margin-right: 0.7em;
    height: 1.06em;
    width: 1.366em;
  }

  .plan-box .title-row .markers {
    font-size: 16px;
  }

  .plan-box .marker {
    width: 4%;
    height: 3.2%;
    margin-top: -0.5%;
  }
  .plan-box .marker span {
    font-size: 1vw;
  }
  .plan-box .marker::before {
    left: 30%;
  }

  .route-box .route-item {
    height: 600px;
  }

  .route-box .route-item .route-map #map {
    right: -240px;
  }

  .route-box .route-item .route-item-content {
    padding: 40px 30px;
    width: 340px;
  }

  .requisition-box .h1 {
    max-width: 10em;
  }

  .requisition-box .btns-list .form-radio-item img {
    display: none;
  }

  .requisition-box .re-cols-grid {
    gap: 60px 0;
  }

  .requisition-box .re-option {
    grid-column: 1/-1;
  }

  .requisition-box .re-equipment {
    grid-column: span 8;
  }

  .requisition-box .re-title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .footer-box .top-row {
    grid-template-columns: 300px 1fr;
    grid-row: 1/-1;
    grid-template-rows: repeat(3, 1fr);
    gap: 13px 50px;
  }

  .footer-box .company-info {
    margin: 0;
    grid-column: 2;
    grid-row: auto;
  }
  .footer-box .company-info img, .footer-box .company-info svg {
    width: 1em;
    margin-right: 0.8em;
  }

  .footer-box .company-address {
    grid-column: 2;
    grid-row: auto;
  }

  .fancybox-slide--html .fancybox-button {
    top: -25px;
    width: 50px;
    height: 50px;
  }

  .popup-house-layout {
    padding: 60px 30px;
  }

  .popup-house-layout .slick-arrows {
    margin: 30px 0 0;
    justify-content: center;
    transform: none;
  }

  .popup-house-layout .popup-house-layout-content {
    grid-template-columns: 1fr;
  }

  .popup-house-layout .gallery-slider-wrap {
    margin-right: -30px;
  }

  .popup-house-layout {
    display: inline-flex !important;
    flex-direction: column-reverse;
  }

  .popup-master-plan {
    padding: 15px;
  }

  .popup-master-plan .big-logo {
    left: 10px;
    transform: scale(0.8) translateY(-13%);
  }

  .popup-master-plan .gray-btn {
    transform: translate(-50%, -50%) scale(0.6);
  }

  .popup-equipment {
    padding: 50px 30px;
    font-size: 14px;
  }

  .popup-equipment .popup-first-row .int-name {
    font-size: 18px;
  }

  .popup-equipment .popup-first-row .int-int {
    font-size: 45px;
  }

  .popup-equipment .popup-last-row .popup-btn {
    font-size: 16px;
  }

  .popup-equipment .popup-first-row, .popup-equipment .popup-last-row, .popup-equipment .popup-mp-row {
    grid-template-columns: 1fr repeat(2, 100px);
    gap: 20px;
  }

  .popup-equipment .popup-mp-row .pe-col:first-child {
    padding-left: 20px;
    margin-right: -15px;
  }

  .popup-equipment .popup-mp-row .arrow {
    margin-right: 15px;
    width: 50px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --content-width: 540px;
  }

  .big-logo {
    height: auto;
    padding: 15px 10px 38px;
    width: 160px;
  }

  .big-logo .logo-text {
    margin-bottom: 0;
    font-size: 30px;
  }

  .big-logo .logo-line {
    display: none;
  }

  .big-logo img {
    display: none;
  }

  .home-box .home-wrap {
    display: flex;
    flex-direction: column;
  }

  .home-box .phone-btn {
    top: 50px;
    min-width: 45px;
    height: 45px;
  }

  .home-box .phone-btn::after {
    margin: 0 12px;
  }

  .home-box .phone-btn span {
    font-size: 18px;
  }

  .home-box .h1 {
    position: static;
    margin-top: auto;
    margin-bottom: 95px;
  }

  .home-box .bottom-int {
    position: static;
    grid-template-columns: 0.9fr 1fr;
  }

  .home-box .bottom-int .bo-item:last-child .bo-info {
    max-width: 85px;
  }

  .home-box .bottom-btn {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 80px;
    margin-bottom: 90px;
  }

  .about-box {
    padding-top: 80px;
  }

  .about-box .title-description {
    font-size: 18px;
  }

  .about-box .about-item .about-item-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .include-box .include-item .p {
    font-size: 14px;
  }

  .include-box .include-item .include-line::before, .include-box .include-item .include-line::after {
    width: 30px;
  }

  .include-box .include-item .include-line {
    margin: 15px auto 10px;
  }

  .include-box .include-item:hover {
    padding: 30px 0 20px;
    min-height: 250px;
  }

  .projects-box {
    padding-bottom: 60px;
  }

  .projects-box .btns-list {
    height: 45px;
  }

  .projects-box .b-item {
    font-size: 18px;
  }

  .projects-box .home-360 {
    height: 120px;
    justify-content: center;
  }

  .projects-box .home-360 .main-image {
    transform: translate(1.5%, 4%);
    width: 160vw;
  }

  .projects-box .bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 15px;
  }

  .projects-box .bottom-row .br-item:nth-child(1), .projects-box .bottom-row .br-item:nth-child(2) {
    width: auto;
    margin: 0;
  }

  .projects-box .bottom-row .pr-plan {
    margin: 0;
  }

  .projects-box .bottom-row .pr-complect {
    margin: 0;
  }

  .projects-box .bottom-row .btn, .projects-box .bottom-row .slick-arrow {
    grid-column: 1/-1;
  }

  .gallery-box .left-slider-content {
    max-width: 230px;
  }

  .gallery-box .slick-arrows {
    margin-top: 70px;
  }

  .gallery-box .gallery-slider {
    max-width: 450px;
  }

  .gallery-box .gallery-item .slide-info {
    font-size: 22px;
    left: 20px;
    bottom: 20px;
  }

  .gallery-box .gallery-content {
    height: auto;
  }

  .gallery-box .left-slider-content {
    padding: 70px 0;
    padding-right: 20px;
  }

  .plan-box {
    padding-top: 80px;
  }

  .plan-box .title-row .left-col {
    margin-bottom: 0;
  }

  .plan-box .title-row .markers {
    margin: 30px 0;
  }

  .route-box {
    padding: 0;
    background: #fff;
  }

  .route-box .route-item {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
  }

  .route-box .route-item .route-item-content {
    margin: 0;
  }

  .route-box .route-item .route-map {
    position: relative;
    left: 0;
    right: 0;
    margin: 0 calc(var(--side-size) * -1);
    height: 400px;
    width: 100vw;
  }

  .route-box .route-item .route-map #map {
    right: 0;
  }

  .requisition-box .btns-list {
    height: 45px;
  }

  .requisition-box .btns-list .form-radio-item {
    font-size: 18px;
  }

  .requisition-box {
    padding: 80px 0;
  }

  .requisition-box .top-row {
    margin-bottom: 10px;
  }

  .requisition-box .re-cols-grid {
    gap: 50px 0;
  }

  .requisition-box .re-bottom {
    margin-top: 60px;
    flex-wrap: wrap;
  }

  .requisition-box .re-bottom .rb-info {
    width: 100%;
    margin-bottom: 50px;
  }

  .footer-box {
    padding: 65px 0;
  }

  .footer-box .top-row {
    grid-template-columns: 1fr;
  }

  .footer-box .bottom-row {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .footer-box .bottom-row .beavers-link {
    justify-content: center;
  }

  .slick-slider .slick-list {
    margin: 0 -7px;
  }
  .slick-slider .slick-list .slick-slide {
    margin: 0 7px;
  }

  .popup-house-layout .gallery-slider-wrap {
    padding-right: 30px;
  }

  .popup-master-plan .big-logo {
    transform: scale(0.5) translateY(-51%);
    left: -25px;
  }

  .popup-master-plan .gray-btn {
    padding: 12px 30px;
    transform: translate(-50%, -50%) scale(0.5);
    white-space: nowrap;
  }

  .popup-equipment .popup-first-row, .popup-equipment .popup-last-row, .popup-equipment .popup-mp-row {
    min-width: 670px;
  }

  .popup-equipment .popup-last-row {
    margin-bottom: 25px;
  }

  .popup-equipment .e-table {
    position: relative;
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
  }
  .popup-equipment .e-table:hover::before, .popup-equipment .e-table.scrolled::before {
    opacity: 0;
  }
  .popup-equipment .e-table::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 20px 20px #FAFAFA77;
    background: #FAFAFA77 url(../images/hand.png) no-repeat 50% 100px;
    background-size: 40px auto;
    transition: 0.2s;
    pointer-events: none;
    z-index: 2;
  }

  .popup-success {
    max-width: 400px;
  }

  .popup-success .ps-top {
    padding-bottom: 50%;
  }

  .popup-success .ps-top .yes-circle {
    transform: scale(0.7);
  }

  .popup-success .ps-bottom {
    padding: 40px 25px;
  }
  .popup-success .ps-bottom .h2 {
    font-size: 33px;
  }
}
@media (max-width: 575.98px) {
  :root {
    --content-width: 100vw;
  }

  .home-box .h1 {
    margin-bottom: 75px;
  }

  .about-box .about-item {
    height: auto;
    margin-top: 60px;
  }

  .about-box .about-item .about-item-content {
    margin-top: 40px;
    margin-bottom: 40px;
    min-height: 400px;
    height: auto;
  }

  .include-box .include-list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .include-box .include-item {
    grid-column: span 2;
  }

  .include-box .include-item:nth-child(4) {
    grid-column: span 2;
  }

  .include-box .include-item:nth-child(5) {
    grid-column: 2/span 2;
  }

  .projects-box {
    padding-top: 80px;
  }

  .projects-box .btns-list {
    height: auto;
    flex-wrap: wrap;
    max-width: 300px;
    background: transparent;
    border: none;
  }

  .projects-box .b-item {
    padding: 0 15px 0 30px;
    height: 45px;
    background: #fff;
    margin-bottom: 10px;
    border: 1px solid #eee;
  }

  .projects-box .b-item img {
    display: block;
  }

  .projects-box .home-360 {
    margin: 50px calc(var(--side-size) * -1);
  }

  .projects-box .bottom-row .btn, .projects-box .bottom-row .slick-arrow {
    margin: 0;
    max-width: 260px;
  }

  .gallery-box .gallery-content {
    padding: 80px 0;
  }

  .gallery-box .gallery-content .gallery-black-bg {
    top: 0;
    bottom: 0;
    left: calc(var(--side-size) * -1);
    right: calc(var(--side-size) * -1);
  }

  .gallery-box .left-slider-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    max-width: none;
  }

  .gallery-box .slick-arrows {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 230px;
    width: 100%;
    transform: scale(0.8);
  }

  .gallery-box .gallery-slider {
    max-width: 90%;
  }

  .gallery-box .gallery-content {
    display: block;
  }

  .requisition-box .btns-list {
    height: auto;
    flex-wrap: wrap;
    background: transparent;
    border: none;
    margin: 0;
  }
  .requisition-box .btns-list::before {
    display: none;
  }

  .requisition-box .re-equipment {
    grid-column: 1/-1;
  }

  .requisition-box .re-equipment .btns-list .form-radio-item {
    max-width: 200px;
    margin-right: 10px;
  }

  .requisition-box .btns-list .form-radio-item {
    padding: 0 15px 0 30px;
    max-width: 410px;
    height: 45px;
    margin-bottom: 10px;
    border: 1px solid #eee;
  }
  .requisition-box .btns-list .form-radio-item img {
    display: block;
    margin-right: -10px;
  }

  .requisition-box .re-additional .form-radio-item {
    font-size: 14px;
  }

  .requisition-box .re-bottom .btn, .requisition-box .re-bottom .slick-arrow {
    margin: 0 auto;
  }

  .footer-box .top-row {
    margin: 0 auto;
    max-width: 300px;
    text-align: center;
  }

  .footer-box .company-name {
    max-width: none;
  }

  .footer-box .company-info {
    grid-column: auto !important;
    grid-roe: auto !important;
    justify-content: center;
  }

  .plan-box .marker {
    width: 5%;
    height: 4%;
    margin-top: -0.5%;
    margin-left: -0.5%;
  }
  .plan-box .marker span {
    width: 100%;
    padding: 0;
    font-size: 1.5vw;
  }
  .plan-box .marker:before {
    content: none;
  }

  .plan-box .big-plan::before, .plan-box .big-plan::after {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .h1 {
    font-size: 35px;
  }

  .btn, .slick-arrow {
    font-size: 18px;
  }

  .btn .arrow, .slick-arrow .arrow {
    margin-right: 15px;
  }

  .home-box .h1 {
    margin-bottom: 30px;
  }

  .home-box .bottom-int {
    grid-template-columns: 1fr;
  }

  .include-box .include-list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
    max-width: 250px;
  }

  .include-box .include-item {
    grid-column: auto !important;
  }

  .projects-box .int-col:first-child, .int-col-wrap {
    width: auto;
    margin-bottom: -20px;
  }

  .projects-box .int-col:last-child {
    margin-bottom: 40px;
  }

  .projects-box .int-col {
    height: 70px;
  }

  .projects-box .home-360 {
    margin: 6vw calc(var(--side-size) * -1);
    height: 20vw;
  }

  .projects-box .bottom-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projects-box .bottom-row .btn, .projects-box .bottom-row .slick-arrow {
    margin-left: -15px;
  }

  .plan-box .title-row .markers {
    justify-content: space-between;
    padding: 0;
    width: 100%;
    max-width: 360px;
  }

  .plan-box .title-row .markers .m-item.y {
    margin: auto;
  }

  .requisition-box .re-additional .form-radio-list {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 320px;
  }

  .popup-master-plan .big-logo {
    display: none;
  }

  .tippy-box[data-theme~=plan] .tippy-content .tt-title {
    margin-bottom: 5px;
    font-size: 20px;
  }

  .tippy-box[data-theme~=plan] .tippy-content .int-int {
    font-size: 27px;
  }

  .tippy-box[data-theme~=plan] .tippy-content .int-info {
    font-size: 13px;
  }

  .tippy-box[data-theme~=plan][data-placement=top] .tippy-content {
    padding: 20px 20px 20px;
  }
  .tippy-box[data-theme~=plan] .tippy-content {
    padding: 40px 20px 1px;
  }

  .tippy-box[data-theme~=plan] .tippy-content .tt-row {
    margin-bottom: 25px;
  }
}