@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Gilroy-Light.ttf) format("truetype");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Gilroy-Regular.ttf) format("truetype");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/Gilroy-Medium.ttf) format("truetype");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Gilroy-Semibold.ttf) format("truetype");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Gilroy-Bold.ttf) format("truetype");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/Gilroy-Extrabold.ttf) format("truetype");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/Gilroy-Black.ttf) format("truetype");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 1000;
  src: url(../fonts/Gilroy-Heavy.ttf) format("truetype");
}

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

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

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

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Gilroy-Semibold.woff2) format("woff2");
}

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

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/Gilroy-Extrabold.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/Gilroy-Black.woff2) format("woff2");
}

@font-face {
  font-family: Gilroy;
  font-style: normal;
  font-weight: 1000;
  src: url(../fonts/Gilroy-Heavy.woff2) format("woff2");
}

:root {
  --indexSize: 1vh + 1vw;
}

html {
  font-size: 10px;
  scroll-behavior: auto;
}

body,
html {
  height: 100%;
  min-width: 320px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #1f2229;
  font-size: 1.8rem;
  line-height: 1.2;
}

body,
button,
input,
textarea {
  font-family: Gilroy, sans-serif;
}

button,
input,
textarea {
  font-size: inherit;
  line-height: inherit;
}

::-moz-selection {
  background-color: #efa71a;
  color: #fff;
}

::selection {
  background-color: #efa71a;
  color: #fff;
}

body.lock {
  overflow: hidden;
}

.touch body.lock {
  padding-right: 0;
}

.breadcrumbs {
  position: relative;
  z-index: 101;
}

.wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  /*min-height: 100%;*/
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper>main {
  background: #fff;
}

.wrapper>main,
main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: hidden;
}

@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  to {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  to {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  vertical-align: middle;
}

.hvr-buzz-out:active,
.hvr-buzz-out:focus,
.hvr-buzz-out:hover {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

input,
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
}

button:focus,
input,
textarea {
  outline: none;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.wrapper {
  position: relative;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

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

.input,
.textarea {
  background: transparent;
  border: 1px solid silver;
  border-radius: 0.6rem;
  color: #1f2229;
  font-family: Gilroy, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 1.8rem;
  text-align: left;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: silver;
  opacity: 1;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: silver;
  opacity: 1;
  -moz-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: silver;
  opacity: 1;
  -ms-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: silver;
  opacity: 1;
  -ms-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::placeholder,
.textarea::placeholder {
  color: silver;
  opacity: 1;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
  opacity: 0;
}

.textarea {
  padding: 1rem;
  resize: none;
}

.select-box {
  display: block;
  font-size: 1.8rem;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.select-box__current {
  background: #fff;
  border: none;
  border-radius: 0.5rem;
  color: #1f2229;
  cursor: pointer;
  font-family: Gilroy, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.6rem 0.9rem;
  text-align: left;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.select-box__current:focus+.select-box__list {
  -webkit-animation-name: none;
  animation-name: none;
  opacity: 1;
}

.select-box__current:focus+.select-box__list .select-box__option {
  cursor: pointer;
}

.select-box__current:focus .select-box__icon {
  -webkit-transform: translateY(-60%) rotate(180deg);
  -ms-transform: translateY(-60%) rotate(180deg);
  transform: translateY(-60%) rotate(180deg);
}

.select-box__icon {
  position: absolute;
  right: 1.4rem;
  top: 52%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  width: 1.1rem;
}

.select-box__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select-box__value:first-of-type .select-box__input-text {
  color: #a1a1a1;
}

.select-box__input {
  display: none;
}

.select-box__input:checked+.select-box__input-text {
  display: block;
}

.select-box__input-text {
  display: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.select-box__list {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: HideList;
  animation-name: HideList;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
  background-color: #fff;
  border: none;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  font-size: 1.6rem;
  list-style: none;
  margin-top: 0.8rem;
  opacity: 0;
  padding: 0.8rem 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.select-box__option {
  background: #fff;
  color: #1f2229;
  display: block;
  margin-bottom: 0;
  padding: 0.5rem 1.4rem;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.select-box__option:focus,
.select-box__option:hover {
  background-color: #fbfbfb;
}

@-webkit-keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

@keyframes HideList {
  0% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 1;
  }

  to {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
}

.control {
  color: #484848;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 2.9rem;
  padding-top: 0.9rem;
  position: relative;
}

.control,
.control a {
  display: inline-block;
  line-height: 1;
}

.control a {
  color: #cd1e40;
  text-decoration: none;
}

.control a:after {
  background-color: #cd1e40;
  content: "";
  display: block;
  height: 1px;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
  width: 100%;
}

.control a:hover {
  color: #cd1e40;
}

.control a:hover:after {
  width: 0;
}

.control input {
  left: 0.6rem;
  opacity: 0;
  position: absolute;
  top: 0.2rem;
  z-index: -1;
}

.control_indicator {
  background: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 0.3rem;
  height: 2.1rem;
  left: 0;
  position: absolute;
  top: 0.4rem;
  width: 2.1rem;
}

.control_indicator:after {
  -webkit-box-sizing: unset;
  box-sizing: unset;
  content: "";
  display: none;
  position: absolute;
}

.control-checkbox .control_indicator:after {
  background: url(../images/dist/checkbox.svg) 50% / contain no-repeat;
  height: 0.7rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1.1rem;
}

.control input:checked~.control_indicator:after {
  display: block;
}

.link {
  position: relative;
}

.link:hover {
  color: #efa71a;
}

.link:after {
  background: #212529;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.link:hover:after {
  width: 0;
}

.h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2333333333;
}

.before-h2 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #efa71a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  gap: 0.7rem;
  text-transform: uppercase;
}

.before-h2:before {
  background: #efa71a;
  content: "";
  height: 0.2rem;
  width: 3rem;
}

.h2 {
  font-size: 5rem;
  line-height: 1.1;
}

.h2,
.h3 {
  font-weight: 900;
}

.h3 {
  font-size: 1.8rem;
  line-height: 1.2777777778;
}

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

a {
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

a,
a:hover {
  color: #1f2229;
  text-decoration: none;
}

.social-block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.8rem;
}

.social-block .icon {
  fill: silver;
  height: 100%;
  width: 100%;
}

/* .social-block .icon:hover {
  fill: #fff;
} */

.social-block a {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 1rem 0;
}

.social-block__youtube {
  height: 2rem;
  max-width: 2.5rem;
}

.social-block__instagram,
.social-block__telegram,
.social-block__whatsapp {
  height: 2.1rem;
  max-width: 2rem;
}

.dialog {
  visibility: hidden;
}

.dialog--open {
  visibility: visible;
}

.modal {
  position: relative;
  z-index: 1000;
}

.modal .dialog__overlay {
  background: #fff;
}

.modal .dialog__content {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #fff;
  background: #1f2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 5.2rem);
  justify-content: center;
  margin: 0 2.6rem;
  max-width: 100%;
  padding: 5rem 10.1rem 9.1rem;
  width: 100%;
}

.modal .dialog__wrap {
  width: 100%;
}

.close-modal__container {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5.3rem;
}

.close-modal {
  background: url(../img/modal-close.svg) 50%/1.7rem no-repeat;
  cursor: pointer;
  height: 3rem;
  width: 3rem;
}

.container-1868 {
  margin: 0 auto;
  max-width: 192rem;
  padding-left: 2.6rem;
  padding-right: 2.6rem;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 152rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: #efa71a;
  border: none;
  border-radius: 0.6rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Gilroy, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: normal;
  letter-spacing: 0;
  line-height: normal;
  padding: 0 0 0.1rem;
  position: relative;
  text-shadow: none;
  text-transform: none;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.btn:hover {
  background: #f2b94a;
  color: #fff;
}

svg {
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.svg-hidden {
  display: none;
}

.fancybox-custom .fancybox-button,
.fancybox-custom-video .fancybox-button {
  background: #1e1e20;
  color: #fff;
  height: 5.6rem;
  width: 5.6rem;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
  background: #1e1e20;
  color: #fff;
  height: 5.6rem;
  padding: 0.5rem;
  width: 5.6rem;
}

.fancybox-custom-video.fancybox-is-open .fancybox-bg,
.fancybox-custom.fancybox-is-open .fancybox-bg {
  background: #fff;
  opacity: 1;
}

.swiper-wrapper {
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@-webkit-keyframes fadeInDown32 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown32 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDown32 {
  -webkit-animation-name: fadeInDown32;
  animation-name: fadeInDown32;
}

@-webkit-keyframes fadeInDown10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDown10 {
  -webkit-animation-name: fadeInDown10;
  animation-name: fadeInDown10;
}

@-webkit-keyframes fadeInRight3 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3%, 0, 0);
    transform: translate3d(3%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRight3 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3%, 0, 0);
    transform: translate3d(3%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRight3 {
  -webkit-animation-name: fadeInRight3;
  animation-name: fadeInRight3;
}

@-webkit-keyframes fadeInLeft32 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-32%, 0, 0);
    transform: translate3d(-32%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft32 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-32%, 0, 0);
    transform: translate3d(-32%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeft32 {
  -webkit-animation-name: fadeInLeft32;
  animation-name: fadeInLeft32;
}

@-webkit-keyframes fadeInLeft10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeft10 {
  -webkit-animation-name: fadeInLeft10;
  animation-name: fadeInLeft10;
}

@-webkit-keyframes fadeInLeft6 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-6%, 0, 0);
    transform: translate3d(-6%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft6 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-6%, 0, 0);
    transform: translate3d(-6%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeft6 {
  -webkit-animation-name: fadeInLeft6;
  animation-name: fadeInLeft6;
}

@-webkit-keyframes fadeInLeft8 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-8%, 0, 0);
    transform: translate3d(-8%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft8 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-8%, 0, 0);
    transform: translate3d(-8%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeft8 {
  -webkit-animation-name: fadeInLeft8;
  animation-name: fadeInLeft8;
}

@-webkit-keyframes fadeInRight10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRight10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRight10 {
  -webkit-animation-name: fadeInRight10;
  animation-name: fadeInRight10;
}

@-webkit-keyframes fadeInUpMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 32%, 0);
    transform: translate3d(0, 32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUpMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 32%, 0);
    transform: translate3d(0, 32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUpMini {
  -webkit-animation-name: fadeInUpMini;
  animation-name: fadeInUpMini;
}

@-webkit-keyframes fadeInUp20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp20 {
  -webkit-animation-name: fadeInUp20;
  animation-name: fadeInUp20;
}

@-webkit-keyframes fadeInUp10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp10 {
  -webkit-animation-name: fadeInUp10;
  animation-name: fadeInUp10;
}

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

[class*="-ibg"] img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

[class*="-ibg_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}

.header {
  left: 0;
  position: fixed;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  z-index: 100;
}

.header.active .header__content {
  background: #14161a;
  padding: 2rem 0;
}

.header__content {
  background: transparent;
  padding: 7rem 0;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

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

.header__logo {
  max-width: 12.1rem;
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.header.active .header__logo {
  max-width: 9.1rem;
}

@media (max-width:767px) {
  .header.active .header__logo {
    max-width: 70px;
  }

}

.header__burger {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4rem;
  justify-content: center;
  width: 4rem;
}

.header__burger svg {
  fill: #fff;
  height: 1.9rem;
  width: 3.5rem;
}

.footer {
  background: #fff;
}

.footer .link {
  color: #efa71a;
  font-size: 1.6rem;
}

.footer .link:after {
  background: #efa71a;
}

.footer__wrap {
  background: #1f2229;
  margin-bottom: 2.6rem;
}

.footer__content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 5.6rem 4.4rem 5.3rem 0;
}

.footer__content a,
.footer__content li,
.footer__content p {
  color: #e3e4e4;
}

.footer-col-1 {
  max-width: 42.7rem;
  width: 100%;
}

.footer__logo {
  margin-bottom: 3.4rem;
  max-width: 15.6rem;
}

.footer-col-1__info {
  margin-bottom: 8.3rem;
}

.footer-col-1__info-item {
  margin-bottom: 2rem;
}

.footer-col-1__info-item p {
  margin-bottom: 0;
}

.footer-col-1__info-item p:not(:last-child) {
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-col-1__info-item p:nth-of-type(3) {
  font-size: 1.4rem;
}

.footer__copy p {
  color: #73777e;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.footer__copy p:last-of-type {
  margin-bottom: 0;
}

.footer-col-2 {
  left: 6rem;
  max-width: 42.9rem;
  padding-top: 3.4rem;
  position: relative;
  width: 100%;
}

.footer__title {
  color: #efa71a;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.3rem;
}

.footer__geo {
  margin-bottom: 2.3rem;
  padding-left: 2.7rem;
  position: relative;
}

.footer__geo:after {
  background: url(../img/geo.svg) 50% / contain no-repeat;
  content: "";
  height: 1.6rem;
  left: 0;
  position: absolute;
  top: 0.2rem;
  width: 1.4rem;
}

.footer__geo p {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.footer__geo p span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.footer__phones {
  margin-bottom: 2.6rem;
}

.footer__phones a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  gap: 1.2rem;
  line-height: 1.375;
  position: relative;
}

.footer__phones a:hover span {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.footer__phones a span {
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}

.footer__phones a:before {
  background: url(../img/phone.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.6rem;
  width: 1.4rem;
}

.footer__mail {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  position: relative;
}

.footer__mail:before {
  background: url(../img/mail.svg) 50% / contain no-repeat;
  content: "";
  height: 1.9rem;
  position: relative;
  top: 0.2rem;
  width: 1.6rem;
}

.footer-col-3 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 29.1rem;
  padding-top: 3.4rem;
  width: 100%;
}

.footer-col-3 .footer__geo p {
  line-height: 1.35;
}

.footer__social {
  margin-top: 4.9rem;
  padding-left: 2.5rem;
}

.footer__social .social-block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 3.1rem;
}

.footer__social .social-block__telegram .icon {
  fill: #18acff;
}

.footer__social .social-block__youtube .icon {
  fill: #d70707;
}

.footer__social .social-block__whatsapp .icon {
  fill: #22bb09;
}

.footer__bd {
  margin-top: auto;
  padding-bottom: 0.7rem;
  padding-left: 2.4rem;
}

.hero {
  height: 93.9rem;
  padding-top: 2.6rem;
  position: relative;
}

.hero .container,
.hero .container-1868 {
  height: 100%;
}

.hero__play {
  bottom: 10rem;
  left: 46%;
  position: absolute;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 6;
}

.hero__play__muted-on {
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 4px;
}

.hero__play__muted-on:hover {
  color: #efa71a;
}

.hero__play.hide {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.hero__play-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(31, 34, 41, 0.6);
  border-radius: 6px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0.6rem 1rem 3.7rem;
  position: relative;
  z-index: 600;
}

.hero__play-wrap p {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 0;
  max-width: 22.4rem;
}

.hero__play-fade {
  /* background: rgba(31, 34, 41, 0.5); */
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  width: 100%;
  z-index: 5;
}

.hero__play-fade.hide {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.hero__play-close {
  background: url(../img/close-hero.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 1.2rem;
  position: absolute;
  right: -0.6rem;
  top: -0.6rem;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 1.2rem;
}

.hero__play-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hero__play-icon {
  cursor: pointer;
  height: 8.3rem;
  margin-left: -1.6rem;
  width: 8.3rem;
}

.hero__play-icon img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.hero__wrap {
  height: 100%;
  position: relative;
}

.hero__bg {
  left: 0;
  position: absolute;
  top: 0;
}

.hero__bg,
.hero__bg img {
  height: 100%;
  width: 100%;
}

.hero__bg img {
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

.hero__video {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.hero__video video {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hero__content {
  height: 100%;
  padding-left: 2.6rem;
  padding-top: 32.1rem;
  position: relative;
  z-index: 3;
}

.hero__text .h1 {
  margin-bottom: 1.8rem;
}

.hero__text p {
  color: #c8c8c8;
  font-size: 2.2rem;
  font-weight: 600;
  max-width: 60rem;
}

.hero__text p:last-of-type {
  margin-bottom: 5.8rem;
}

.hero__text-top {
  color: #fff;
  display: block;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.025;
  margin-bottom: -2.5rem;
  max-width: 29.3rem;
}

.hero__text-bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero__text-1 {
  color: #fff;
  font-size: 9.1rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero__text-2 {
  color: transparent;
  display: block;
  font-size: 0;
  height: 14.3rem;
  margin: 0 1.2rem 0 -0.5rem;
  position: relative;
  width: 10.3rem;
}

.hero__text-2:after {
  background: url(../img/hero-3.svg) 50% / contain no-repeat;
  content: "";
  display: block;
  height: 14.9rem;
  left: -0.2rem;
  position: absolute;
  top: 0.3rem;
  width: 11.2rem;
}

.hero__text-3 {
  color: #fff;
  font-size: 9.1rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero__text-btn {
  background: transparent;
  background: #efa71a;
  border-radius: 6px;
  font-weight: 600;
  height: 5.6rem;
  max-width: 31.2rem;
  width: 100%;
}

.hero__text-btn,
.hero__text-btn:hover {
  color: #1f2229;
}

.hero__text-btn:hover span:after {
  -webkit-transform: translateX(0.6rem);
  -ms-transform: translateX(0.6rem);
  transform: translateX(0.6rem);
}

.hero__text-btn span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
  justify-content: center;
}

.hero__text-btn span:after {
  background: url(../img/btn-arrow-black.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.2rem;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 2rem;
}

.hero__social {
  position: absolute;
  right: 0.6rem;
  top: 47.4%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hero__sound {
  background: url(../img/sound-on.svg) 50% / contain no-repeat;
  background: url(../img/sound-off.svg) 50% / contain no-repeat;
  bottom: 10.3rem;
  cursor: pointer;
  height: 3.3rem;
  position: absolute;
  right: 0.3rem;
  width: 3.3rem;
  z-index: 6;
}

.hero__sound.active {
  background: url(../img/sound-on.svg) 50% / contain no-repeat;
}

.technology {
  padding-bottom: 9.3rem;
  padding-top: 12.3rem;
}

.technology__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.2rem;
  padding-left: 2.7rem;
}

.technology__video {
  height: 58.7rem;
  margin-top: 0.9rem;
  max-width: 55.6rem;
  position: relative;
  width: 100%;
}

.technology__video:hover .technology__video-play img {
  -webkit-transform: scale(0.92);
  -ms-transform: scale(0.92);
  transform: scale(0.92);
}

.technology__video:after {
  background: #efa71a;
  border-radius: 0.6rem;
  content: "";
  height: calc(100% + 5.6rem);
  left: -2.8rem;
  position: absolute;
  top: -2.8rem;
  width: 99%;
  z-index: 1;
}

.technology__video img {
  border-radius: 0.4rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  z-index: 2;
}

.technology__video-play {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 1.6rem;
  font-weight: 500;
  gap: 0.6rem;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 54.5%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.technology__video-play img {
  height: 10.7rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 10.7rem;
}

.technology__video-play span {
  max-width: 9.2rem;
}

.technology__photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 68.2rem;
  padding-top: 9.3rem;
  width: 100%;
}

.technology__photo img {
  height: 40.7rem;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
  width: 68.2rem;
}

.technology__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 78.8rem;
  width: 100%;
}

.technology__header .before-h2 {
  margin-bottom: 1rem;
}

.technology__header .h2 {
  margin-bottom: 2.6rem;
}

.technology__body p {
  font-size: 1.6rem;
  line-height: 1.6875;
  opacity: 0.8;
}

.technology__body p:first-of-type {
  padding-right: 6rem;
}

.technology__items {
  gap: 4rem;
  margin-bottom: 4.6rem;
  margin-top: 3.7rem;
}

.technology__item,
.technology__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.technology__item {
  gap: 1.7rem;
  width: 100%;
}

.technology__item:first-of-type {
  max-width: 22.1rem;
}

.technology__item:nth-of-type(2) {
  max-width: 23.6rem;
}

.technology__item:nth-of-type(3) {
  max-width: 24.7rem;
}

.technology__item-icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 7.4rem;
}

.technology__item-text {
  padding-top: 0.5rem;
}

.technology__item-text span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
}

.architectural-styles__wrap {
  background: url(../img/architectural-styles-bg.jpg) 50% / cover no-repeat;
  padding-bottom: 4.1rem;
  padding-top: 5.3rem;
}

.architectural-styles__content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  justify-content: space-between;
}

.architectural-styles__text {
  max-width: 65.7rem;
  padding-top: 18.5rem;
  width: 100%;
}

.architectural-styles__text .before-h2 {
  margin-bottom: 1.1rem;
}

.architectural-styles__text .h2 {
  color: #fff;
  font-weight: 1000;
  line-height: 1.28;
}

.architectural-styles__grid {
  display: grid;
  gap: 0.4rem 1.3rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 71.3rem;
  width: 100%;
}

.architectural-styles__item {
  cursor: pointer;
}

.architectural-styles__item .h3 {
  color: #fff;
  text-align: center;
}

.architectural-styles__item-bg {
  border-radius: 0.6rem;
  height: 28rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  position: relative;
  width: 35rem;
}

.architectural-styles__item-bg:after {
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      from(rgba(239, 167, 26, 0.85)),
      to(rgba(239, 167, 26, 0.85)));
  background: linear-gradient(0deg,
      rgba(239, 167, 26, 0.85),
      rgba(239, 167, 26, 0.85));
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.architectural-styles__item-bg img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.architectural-styles__item-hover {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 0 5.8rem;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-1rem);
  -ms-transform: translateY(-1rem);
  transform: translateY(-1rem);
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  z-index: 2;
}

.architectural-styles__item-hover p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2142857143;
  margin-bottom: 0;
}

.projects__wrap {
  background: #f5f5f5;
  padding-bottom: 6.3rem;
  padding-top: 7.4rem;
  overflow: hidden;
}

.projects__header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  margin-bottom: 1.9rem;
}

.projects__header .h2 {
  font-size: 4.5rem;
}

.projects__header-title .before-h2 {
  margin-bottom: 1.1rem;
}

.projects__items {
  margin-bottom: 0.9rem;
}

.projects__items .nav-block {
  display: block;
}

.projects__items .nav-next.swiper-button-disabled,
.projects__items .nav-prev.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 1;
}

.projects__items .nav-next {
  background: url(../img/nav-next-ye.svg) 50% / contain no-repeat;
  height: 4.8rem;
  position: absolute;
  right: -2.4rem;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4.8rem;
  z-index: 2;
}

.projects__items .nav-next:hover {
  opacity: 1;
}

.projects__items .nav-prev {
  background: url(../img/nav-prev-ye.svg) 50% / contain no-repeat;
  height: 4.8rem;
  left: -2.4rem;
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4.8rem;
  z-index: 2;
}

.projects__items .nav-prev:hover {
  opacity: 1;
}

.projects__items-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.9rem;
}

.projects__btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-top: 2.6rem;
}

.projects__btn .btn {
  font-weight: 600;
  height: 5.6rem;
  max-width: 28.7rem;
  width: 100%;
}

.projects-btn:hover span:after {
  -webkit-transform: translateX(0.6rem);
  -ms-transform: translateX(0.6rem);
  transform: translateX(0.6rem);
}

.projects-btn span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
  justify-content: center;
}

.projects-btn span:after {
  background: url(../img/btn-arrow.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.2rem;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 2rem;
}

.nav-block {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
}

.nav-block:before {
  background: url(../img/nav-line-black.svg) 50% / cover no-repeat;
  content: "";
  height: 0.2rem;
  margin-right: 1rem;
  width: 3.2rem;
}

.nav-block:after {
  background: url(../img/nav-line-black.svg) 50% / cover no-repeat;
  content: "";
  height: 0.2rem;
  margin-left: 1rem;
  width: 3.2rem;
}

.nav-prev {
  background: url(../img/nav-prev-black.svg) 50%/3.4rem no-repeat;
}

.nav-next,
.nav-prev {
  cursor: pointer;
  height: 4rem;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 4rem;
}

.nav-next {
  background: url(../img/nav-next-black.svg) 50%/3.4rem no-repeat;
}

.nav-next.swiper-button-disabled,
.nav-prev.swiper-button-disabled {
  opacity: 0.5;
}

.projects__slider {
  position: relative;
}

.projects__slider .projects-item {
  max-width: 100%;
}

.projects__slider .swiper-slide {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.projects__slider .swiper-slide-visible {
  opacity: 1;
  pointer-events: auto;
}

.projects__slider .catalog-item {
  max-width: 100%;
}

.projects-item {
  max-width: 35.4rem;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.projects-item .lazy-pulse {
  border-radius: 0.6rem;
}

.projects-item__photo {
  border-radius: 0.6rem 0.6rem 0 0;
  height: 22.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.projects-item__photo:before {
  background: url(../img/zoom-icon.svg) 50% / contain no-repeat;
  content: "";
  height: 4.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 4.6rem;
}

.projects-item__photo:hover:after {
  opacity: 0.5;
}

.projects-item__photo:after {
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      from(#202129),
      to(#202129));
  background: linear-gradient(0deg, #202129, #202129);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.projects-item__photo img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.projects-item__photo img._lazy-loaded {
  opacity: 1;
}

.projects-item__photo img._lazy-loaded~.lazy-pulse {
  opacity: 0;
}

.projects-item__category {
  background: #1f2229;
  left: 0;
  padding: 0.2rem 1rem 0.1rem 2.9rem;
  position: absolute;
  top: 1.6rem;
  z-index: 2;
}

.projects-item__category span {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2222222222;
  text-transform: uppercase;
}

.projects-item__text {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background: #1f2229;
  border-radius: 0 0 0.6rem 0.6rem;
  color: #fff;
  font-size: 1.8rem;
  gap: 1.6rem;
  justify-content: space-between;
  line-height: 1.2222222222;
  padding: 2.2rem 1.9rem;
}

.item__text-price,
.projects-item__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item__text-price {
  gap: 1rem;
}

.item__text-price span b {
  font-size: 2.2rem;
  font-weight: 700;
}

.item__text-price span:nth-of-type(2) {
  display: block;
  font-weight: 300;
  margin-left: -0.5rem;
}

.projects-item__more {
  color: #efa71a;
  cursor: pointer;
  font-size: 1.6rem;
  position: relative;
}

.projects-item__more:hover:after {
  width: 0;
}

.projects-item__more:after {
  background: #efa71a;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.item__text-square {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.item__text-square span {
  font-weight: 300;
}

.item__text-square span:nth-of-type(2) {
  display: block;
  margin-left: -0.5rem;
}

.projects-item__hidden {
  display: none;
}

.house-kit {
  padding-bottom: 7rem;
  padding-top: 5.1rem;
}

.house-kit .ac {
  border: 0.5px solid #c8c8c8;
  border-radius: 0.6rem;
  margin-top: 1.5rem;
}

.house-kit .ac .ac-trigger {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1f2229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Gilroy, sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  gap: 4rem;
  justify-content: space-between;
  line-height: 1.2142857143;
  padding: 1rem 2.7rem 1rem 4rem;
}

.house-kit .ac .ac-trigger:focus {
  color: #1f2229;
}

.house-kit .ac .ac-trigger:after {
  -webkit-box-flex: 0;
  background: url(../img/ac-open.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 5.8rem;
  position: relative;
  right: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 5.8rem;
}

.house-kit .ac.is-active>.ac-header .ac-trigger:after {
  background: url(../img/ac-close.svg) 50% / contain no-repeat;
  content: "";
}

.house-kit__btn-wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-top: 3.3rem;
}

.house-kit__btn {
  background: #1f2229;
  font-weight: 600;
  height: 5.6rem;
  max-width: 30.2rem;
  width: 100%;
}

.house-kit__btn:hover {
  background: #333843;
}

.house-kit__btn:hover span:after {
  -webkit-transform: translateX(0.6rem);
  -ms-transform: translateX(0.6rem);
  transform: translateX(0.6rem);
}

.house-kit__btn span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
  justify-content: center;
}

.house-kit__btn span:after {
  background: url(../img/btn-arrow.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.2rem;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 2rem;
}

.house-kit__header {
  margin-bottom: 3.2rem;
}

.house-kit__header .before-h2 {
  margin-bottom: 1.1rem;
}

.house-kit__header .h2 {
  font-size: 4.5rem;
  margin-bottom: 1.6rem;
}

.house-kit__header p {
  font-size: 1.6rem;
  line-height: 1.6875;
  max-width: 84.5rem;
  opacity: 0.8;
}

.house-kit__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.3rem;
  margin: 1.9rem;
  padding: 1.3rem;
}

.house-kit__item-photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.house-kit__item-photo img {
  border-radius: 0.6rem;
  height: 30.6rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 55.4rem;
}

.house-kit__item-text .h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2222222222;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.house-kit__item-text ul {
  counter-reset: ul;
  list-style: none;
  margin: 0;
  padding: 0;
}

.house-kit__item-text li {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.1875;
  margin-bottom: 1rem;
  padding-left: 1.7rem;
  position: relative;
}

.house-kit__item-text li:before {
  color: #1f2229;
  content: counters(ul, ".") " ";
  counter-increment: ul;
  font-size: 1.8rem;
  font-weight: 700;
  left: 0;
  line-height: 1.2222222222;
  position: absolute;
  top: -0.2rem;
}

.house-kit__item-text p,
.house-kit__item-text-desc {
  font-size: 1.6rem;
  line-height: 1.1875;
}

.house-kit__item-text-desc {
  color: #696c73;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0;
  margin-top: 2rem;
}

.house-kit__item-text-desc span {
  font-size: 2.2rem;
  font-weight: 300;
  position: relative;
  top: -0.4rem;
}

.house-kit__item-type-2 {
  gap: 2.4rem;
}

.house-kit__item-type-2 .house-kit__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.house-kit__item-type-2 .h3 {
  text-transform: none;
}

.house-kit__item-type-2 .house-kit__item-photo img {
  height: 30.4rem;
  width: 45.1rem;
}

.house-kit__item-type-2 .house-kit__item-text-desc {
  margin-top: auto;
  padding-left: 0.6rem;
}

.house-kit__item-text-left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.house-kit__item-text-right {
  padding-top: 4.2rem;
  width: 100%;
}

.house-kit__item-text-right p {
  font-size: 1.6rem;
  line-height: 1.1875;
}

p.house-kit__italic {
  color: #5b5f66;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2142857143;
  margin-bottom: 0;
}

.house-kit__item-type-3 .house-kit__item-photo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}

.house-kit__item-type-3 .house-kit__item-photo img {
  height: 30.6rem;
  width: 37.7rem;
}

.house-kit__item-type-4 {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6.3rem;
}

.house-kit__item-type-4 .house-kit__item-photo img {
  height: 30.6rem;
  width: 37.7rem;
}

.house-kit__item-type-4 .house-kit__item-text {
  padding-top: 3rem;
}

.house-kit__item-type-4 .house-kit__item-text .h3 {
  text-transform: none;
}

.house-kit__items .ac:first-of-type .house-kit__item-text {
  max-width: 58rem;
}

.house-kit__items .ac:nth-of-type(2) .house-kit__item .house-kit__item-text {
  gap: 5.1rem;
}

.house-kit__items .ac:nth-of-type(2) .house-kit__item .house-kit__item-text-left {
  max-width: 36.6rem;
}

.house-kit__items .ac:nth-of-type(2) .house-kit__item .house-kit__item-text-right {
  max-width: 46.4rem;
}

.house-kit__items .ac:nth-of-type(2) .house-kit__item:nth-of-type(3),
.house-kit__items .ac:nth-of-type(2) .house-kit__item:nth-of-type(4) {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.house-kit__items .ac:nth-of-type(2) .house-kit__item:nth-of-type(3) .house-kit__item-photo img,
.house-kit__items .ac:nth-of-type(2) .house-kit__item:nth-of-type(4) .house-kit__item-photo img {
  height: 100%;
}

.house-kit__items .ac:nth-of-type(3) .house-kit__item:first-of-type .house-kit__item-text {
  max-width: 47.7rem;
}

.house-kit__items .ac:nth-of-type(4) .house-kit__item:first-of-type .house-kit__item-text {
  max-width: 63.4rem;
}

.house-kit__items .ac:nth-of-type(4) .house-kit__item:nth-of-type(2) .house-kit__item-text {
  max-width: 64.3rem;
}

.house-kit__items .ac:nth-of-type(5) .house-kit__item:first-of-type .house-kit__item-text {
  max-width: 60rem;
}

.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(2),
.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(3) {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(2) .house-kit__item-photo img,
.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(3) .house-kit__item-photo img {
  height: 100%;
}

.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(2) .house-kit__item-text,
.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(3) .house-kit__item-text {
  max-width: 76.7rem;
}

.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(2) .house-kit__item-text .h3,
.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(3) .house-kit__item-text .h3 {
  text-transform: none;
}

.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(2) .house-kit__item-text .h3 span,
.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(3) .house-kit__item-text .h3 span {
  text-transform: uppercase;
}

.house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(4) .house-kit__item-text {
  max-width: 62.6rem;
}

.house-kit__items .ac:nth-of-type(6) .house-kit__item:first-of-type .house-kit__item-text {
  max-width: 48.6rem;
}

.house-kit__items .ac:nth-of-type(6) .house-kit__item:first-of-type .house-kit__item-text p {
  font-weight: 500;
}

.house-kit__items .ac:nth-of-type(6) .house-kit__item:first-of-type .house-kit__item-text p.house-kit__item-text-desc {
  font-weight: 400;
}

.house-kit__items .ac:nth-of-type(6) .house-kit__item:first-of-type .house-kit__item-text .h3 {
  text-transform: none;
}

.house-kit__items .ac:nth-of-type(6) .house-kit__item:first-of-type .house-kit__item-text .h3 span {
  text-transform: uppercase;
}

.why-we__wrap {
  background: #fefefe;
  position: relative;
}

.why-we__bg {
  height: 58.7rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.why-we__bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  width: 100%;
}

.why-we__content {
  position: relative;
  z-index: 2;
}

.why-we__flex {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.why-we__text {
  background: #fff;
  -webkit-box-shadow: 0 3px 100px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 100px 0 rgba(0, 0, 0, 0.1);
  max-width: 68.5rem;
  padding: 5.6rem 11.5rem 7.4rem 9.1rem;
  width: 100%;
}

.why-we__text .before-h2 {
  margin-bottom: 2rem;
}

.why-we__text .h2 {
  font-weight: 1000;
  margin-bottom: 5.5rem;
}

.why-we__text p {
  color: #73777e;
  font-size: 1.6rem;
  line-height: 1.875;
  max-width: 95%;
}

.why-we__text p:last-of-type {
  margin-bottom: 5.8rem;
}

.why-we__text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-we__text li {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2.1rem;
  padding-left: 2.8rem;
  position: relative;
}

.why-we__text li:after {
  background: url(../img/check-li.svg) 50% / contain no-repeat;
  content: "";
  height: 1.7rem;
  left: -0.1rem;
  position: absolute;
  top: 0.2rem;
  width: 1.7rem;
}

.we__text-items {
  margin-bottom: 7.6rem;
  margin-top: 5.4rem;
}

.we__text-item {
  margin-bottom: 2.3rem;
}

.we__text-item:first-of-type .we__text-item-line {
  background: url(../img/line-1.svg) 50% / contain no-repeat;
}

.we__text-item:first-of-type .we__text-item-spans {
  padding-left: 1.3rem;
  padding-right: 2.5rem;
}

.we__text-item:nth-of-type(2) .we__text-item-line {
  background: url(../img/line-2.svg) 50% / contain no-repeat;
}

.we__text-item:nth-of-type(2) .we__text-item-spans {
  padding-left: 1.3rem;
  padding-right: 11.6rem;
}

.we__text-item-spans {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.we__text-item-spans span {
  font-size: 1.6rem;
  font-weight: 900;
}

.we__text-item-line {
  height: 1.2rem;
  width: 100%;
}

.we__text-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5rem;
}

.we__text-phone-photo img {
  height: 9.8rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 9.8rem;
}

.we__text-phone-photo-p {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 3.2rem;
  position: relative;
}

.we__text-phone-photo-p:after {
  background: url(../img/we-text-phone.svg) 50% / contain no-repeat;
  content: "";
  height: 5.1rem;
  left: -6.9rem;
  position: absolute;
  top: 0;
  width: 5.1rem;
}

.we__text-phone-photo-p span {
  color: #efa71a;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.we__text-phone-photo-p a {
  font-size: 3rem;
  font-weight: 900;
}

.why-we__leader {
  background: url(../img/wy-we-leader-bg.jpg) 50% / cover no-repeat;
  max-width: 75.5rem;
  padding: 5.7rem 4.9rem 5.2rem 6.2rem;
  position: relative;
  width: 100%;
}

.why-we__leader .before-h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.why-we__leader .h2 {
  color: #f2f2f2;
  font-weight: 1000;
  margin-bottom: 2.2rem;
}

.why-we__leader p {
  color: #dcd0d0;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  max-width: 90%;
}

.why-we__leader p:last-of-type {
  margin-bottom: 2.8rem;
}

.why-we__leader-link {
  color: #efa71a;
  font-size: 1.6rem;
  font-weight: 600;
}

.why-we__leader-link:hover {
  color: #efa71a;
}

.why-we__leader-link:hover span:after {
  -webkit-transform: translateX(0.5rem);
  -ms-transform: translateX(0.5rem);
  transform: translateX(0.5rem);
}

.why-we__leader-link span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
  position: relative;
}

.why-we__leader-link span:after {
  background: url(../img/libk-arrow.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.2rem;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 2rem;
}

.why-we__leader-video-play {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #efa71a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 13.6rem;
  justify-content: center;
  position: absolute;
  right: 5.6rem;
  top: -3.5rem;
  width: 13.6rem;
  z-index: 2;
}

.why-we__leader-video-play img {
  height: 6.9rem;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 6.9rem;
}

.why-we__leader-video-play:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.how-working {
  padding-bottom: 8.6rem;
  padding-top: 8.2rem;
}

.how-working .before-h2 {
  margin-bottom: 0.7rem;
}

.how-working .h2 {
  font-weight: 1000;
  margin-bottom: 4.1rem;
}

.how-working__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.7rem;
  margin-bottom: 3.6rem;
  padding-right: 3.6rem;
}

.how-working__text p {
  color: #434548;
  font-size: 1.6rem;
  font-weight: 300;
}

.how-working__left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
}

.how-working__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 62.8rem;
  width: 100%;
}

.how-working__items {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, 1fr);
}

.how-working__item-wrapper {
  height: 33.1rem;
  position: relative;
}

.how-working__item-wrapper:first-of-type .how-working__item-num {
  max-width: 5.9rem;
}

.how-working__item-wrapper:nth-of-type(2) .how-working__item-num {
  max-width: 8.3rem;
}

.how-working__item-wrapper:nth-of-type(3) .how-working__item-num {
  max-width: 8.4rem;
}

.how-working__item-wrapper:nth-of-type(4) .how-working__item-num {
  max-width: 9.1rem;
}

.how-working__item-wrapper:nth-of-type(5) .how-working__item-num {
  max-width: 8.6rem;
}

.how-working__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.6rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.how-working__item-num {
  margin-bottom: 3.7rem;
  position: relative;
  z-index: 3;
}

.how-working__item-title {
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.how-working__item-title h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.how-working__item-text {
  height: 0;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  text-align: left;
  z-index: 3;
}

.how-working__item-text p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
  padding: 0 2.1rem;
}

.how-working__item-bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.how-working__item-bg:after {
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      from(rgba(67, 69, 72, 0.81)),
      to(rgba(67, 69, 72, 0.81)));
  background: linear-gradient(0deg,
      rgba(67, 69, 72, 0.81),
      rgba(67, 69, 72, 0.81));
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.how-working__item-bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.portfolio__wrap {
  background: #1f2229;
  padding-bottom: 9.8rem;
  padding-top: 6.2rem;
}

.portfolio__header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6.2rem;
}

.portfolio__header-text {
  margin-top: 0.8rem;
}

.portfolio__header-text .before-h2 {
  margin-bottom: 1rem;
}

.portfolio__header-text .h2 {
  color: #fff;
  font-weight: 1000;
}

.portfolio__nav .nav-prev {
  background: url(../img/nav-prev-yellow.svg) 50%/3.4rem no-repeat;
}

.portfolio__nav .nav-next {
  background: url(../img/nav-next-yellow.svg) 50%/3.4rem no-repeat;
}

.portfolio__nav .nav-block:after,
.portfolio__nav .nav-block:before {
  background: url(../img/nav-line-yellow.svg) 50% / cover no-repeat;
}

.portfolio__grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 35.4rem);
}

.portfolio__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.portfolio__item,
.portfolio__item img {
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.portfolio__item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  width: 100%;
}

.portfolio__item img._lazy-loaded {
  opacity: 1;
}

.portfolio__item img._lazy-loaded~.lazy-pulse {
  opacity: 0;
}

.portfolio__item .custom-fancy {
  display: block;
  height: 100%;
  width: 100%;
}

.portfolio__item:hover {
  opacity: 0.8;
}

.portfolio__item:first-of-type {
  grid-area: 1/1/2/3;
}

.portfolio__item:nth-of-type(2) {
  grid-area: 1/3/2/4;
}

.portfolio__item:nth-of-type(3) {
  grid-area: 1/4/3/5;
}

.portfolio__item:nth-of-type(4) {
  grid-area: 2/1/3/2;
}

.portfolio__item:nth-of-type(5) {
  grid-area: 2/2/3/3;
}

.portfolio__item:nth-of-type(6) {
  grid-area: 2/3/3/4;
}

.mortgage {
  padding-bottom: 7.3rem;
  padding-top: 1.1rem;
}

.mortgage__wrap {
  background: url(../img/mortgage-bg.jpg) 50% / cover no-repeat;
  border-radius: 0.6rem;
  padding-bottom: 6.1rem;
}

.mortgage__header {
  margin-bottom: 6.2rem;
  padding-top: 8rem;
}

.mortgage__header .before-h2 {
  margin-bottom: 0.6rem;
}

.mortgage__header .h2 {
  font-weight: 1000;
  margin-bottom: 1.7rem;
}

.mortgage__header p {
  max-width: 61.1rem;
}

.mortgage__header p:last-of-type {
  margin-bottom: 0;
}

.mortgage__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
}

.mortgage__item {
  border-radius: 6px;
  max-width: 21.9rem;
  position: relative;
  width: 100%;
}

.mortgage__item:first-of-type {
  background: #0b5fdb;
}

.mortgage__item:first-of-type .mortgage__item-logo {
  max-width: 15.2rem;
}

.mortgage__item:nth-of-type(2) {
  background: #00245a;
}

.mortgage__item:nth-of-type(2) .mortgage__item-logo {
  max-width: 14.5rem;
}

.mortgage__item:nth-of-type(3) {
  background: #309e31;
}

.mortgage__item:nth-of-type(3) .mortgage__item-logo {
  max-width: 18.7rem;
}

.mortgage__item:nth-of-type(3) .mortgage__item-logo img {
  position: relative;
  /*top: 0.6rem;*/
}

.mortgage__item-logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin: 1.2rem auto 0;
  min-height: 9.5rem;
  position: relative;
}

.mortgage__item-logo:after {
  background: #fff;
  bottom: -1.5rem;
  content: "";
  height: 0.1rem;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 14.5rem;
}

.mortgage__item-text {
  padding: 4.9rem 3.7rem 5.3rem;
}

.mortgage__item-text p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1.9rem;
}

.mortgage__item-text p:last-of-type {
  margin-bottom: 0;
}

.mortgage__item-text p span {
  display: block;
  font-weight: 700;
}

.welcome__wrap {
  background: #f5f5f5;
  padding-bottom: 5.9rem;
  padding-top: 13.6rem;
}

.welcome__content {
  padding-left: 39.8rem;
  padding-right: 13.3rem;
}

.welcome__header {
  margin-bottom: 2.9rem;
  padding-left: 12.9rem;
  position: relative;
  z-index: 2;
}

.welcome__header .before-h2 {
  margin-bottom: 0.7rem;
}

.welcome__header .h2 {
  font-size: 4.5rem;
  font-weight: 1000;
  margin-bottom: 0;
}

.welcome__body {
  background: #ece9ec;
  padding: 5.1rem 5.7rem 1.9rem 13rem;
  position: relative;
}

.welcome__body:after {
  background: url(../img/welcome-bg.png) 50% / contain no-repeat;
  content: "";
  height: 75.4rem;
  left: -27.8rem;
  position: absolute;
  top: -22.4rem;
  width: 26.6rem;
}

.welcome__body-text {
  margin-bottom: -0.5rem;
  position: relative;
  z-index: 2;
}

.welcome__body-text p {
  color: #383a3d;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-bottom: 3rem;
}

.welcome__body-text p:last-of-type {
  margin-bottom: 0;
}

.welcome__signature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.8rem;
  position: relative;
  z-index: 2;
}

.welcome__signature-text {
  padding-top: 7.1rem;
}

.welcome__signature-text p:first-of-type {
  color: #efa71a;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.welcome__signature-text p:nth-of-type(2) {
  font-size: 2rem;
  font-weight: 900;
}

.welcome__signature-photo {
  max-width: 21.3rem;
}

#modalMenu .dialog__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
}

.modal-menu ul {
  list-style: none;
  margin: 0 0 6.2rem;
  padding: 0;
}

.modal-menu a,
.modal-menu li {
  color: #fdfdfd;
  font-size: 2rem;
  font-weight: 300;
}

.modal-menu a {
  display: block;
  padding-bottom: 0.85rem;
  padding-top: 0.85rem;
}

.modal-menu a:hover {
  color: #efa71a;
}

.modal-menu__logo {
  margin: 0 auto 6.9rem;
  max-width: 19.5rem;
  width: 100%;
}

.modal-menu__phone span:hover {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.modal-menu__phone a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  color: #efa71a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 900;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

.modal-menu__phone a span {
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}

.modal-menu__phone a:before {
  background: url(../img/modal-phone.svg) 50% / contain no-repeat;
  content: "";
  display: inline-block;
  height: 2.5rem;
  width: 1rem;
}

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

.modal-form-cnt {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 120px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 120px 0 rgba(0, 0, 0, 0.2);
  max-width: 85rem;
  padding: 4.8rem 17.8rem 4.5rem;
  position: relative;
  width: 100%;
}

.modal-form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal-form input,
.modal-form textarea {
  outline: none;
}

.modal-form input:focus:required:invalid,
.modal-form textarea:focus:required:invalid {
  border-color: #d31543;
}

.modal-form input:required:valid,
.modal-form textarea:required:valid {
  border-color: #bc9e7b;
}

.modal-form .input,
.modal-form .textarea {
  border: 0.6px solid #1f2229;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  height: 6.7rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-form .input::-webkit-input-placeholder,
.modal-form .textarea::-webkit-input-placeholder {
  color: #616161;
  opacity: 1;
}

.modal-form .input::-moz-placeholder,
.modal-form .textarea::-moz-placeholder {
  color: #616161;
  opacity: 1;
}

.modal-form .input:-ms-input-placeholder,
.modal-form .textarea:-ms-input-placeholder {
  color: #616161;
  opacity: 1;
}

.modal-form .input::-ms-input-placeholder,
.modal-form .textarea::-ms-input-placeholder {
  color: #616161;
  opacity: 1;
}

.modal-form .input::placeholder,
.modal-form .textarea::placeholder {
  color: #616161;
  opacity: 1;
}

.modal-form .input:focus::-webkit-input-placeholder,
.modal-form .textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.modal-form .input:focus::-moz-placeholder,
.modal-form .textarea:focus::-moz-placeholder {
  opacity: 0;
}

.modal-form .input:focus:-ms-input-placeholder,
.modal-form .textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.modal-form .input:focus::-ms-input-placeholder,
.modal-form .textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.modal-form .input:focus::placeholder,
.modal-form .textarea:focus::placeholder {
  opacity: 0;
}

.modal-form .textarea {
  height: 12.3rem;
  padding: 2.6rem;
}

.modal-form .h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 2.6rem;
}

.modal-form p {
  font-size: 1.4rem;
  max-width: 35.8rem;
  width: 100%;
}

.modal-form p a {
  color: #0057b2;
  display: block;
  text-decoration: underline;
}

.modal-form__btn {
  background: #1f2229;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  height: 4rem;
  margin-bottom: 2.4rem;
  margin-top: 1.7rem;
  max-width: 22.3rem;
  width: 100%;
}

.modal-form__btn:hover {
  background: #333843;
}

.modal-form-close {
  cursor: pointer;
  position: absolute;
  right: 1.4rem;
  top: 1.1rem;
}

.modal-form-close img {
  height: 1.7rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 1.7rem;
}

.modal-project-wrap {
  height: 100%;
}

.modal--project .dialog__overlay {
  background: rgba(31, 34, 41, 0.5);
}

.modal--project .dialog__content {
  background: #fff;
  border-radius: 0.6rem;
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  overflow-y: auto;
  padding: 3.2rem 14rem;
  text-align: left;
}

.modal--project .mb-bar {
  background: #d9d9d9;
}

.modal--project .mb-track-y {
  width: 0.6rem;
}

.modal-project__close-wrap {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.modal-project__close {
  cursor: pointer;
  height: 4.5rem;
  margin-bottom: -1rem;
  position: relative;
  top: 1rem;
  width: 4.5rem;
  z-index: 2;
}

.modal-project__close img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.modal-project__item {
  border-bottom: 1px solid rgba(31, 34, 41, 0.3);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}

.modal-project__item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 6.2rem;
}

.modal-project__scroll-area {
  margin: 0 auto;
  max-width: 150rem;
  width: 100%;
}

.modal-project__item-header {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 3rem;
}

.modal-project__item-flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  justify-content: space-between;
}

.modal-project__item-video {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.modal-project__item-video video {
  width: 100%;
}

.modal-project__item-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 71.2rem;
  width: 100%;
}

.modal-project__item-text .h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.modal-project__item-text ol,
.modal-project__item-text ul {
  border-bottom: 1px solid rgba(31, 34, 41, 0.3);
  border-top: 1px solid rgba(31, 34, 41, 0.3);
  margin: 0;
  padding: 1rem 0 1rem 2rem;
}

.modal-project__item-text li {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-project__item-text li:last-of-type {
  margin-bottom: 0;
}

.modal-project__item-text li,
.modal-project__item-text p {
  font-size: 1.5rem;
}

.modal-project__item-text b,
.modal-project__item-text strong {
  font-weight: 600;
}

.modal-project__item-text .italic {
  margin-bottom: 2rem;
}

.modal-project__item-composition {
  margin-bottom: 1.3rem;
}

.italic {
  font-style: italic;
  font-weight: 500;
}

@-webkit-keyframes bgPulse {
  0% {
    background-color: #fafafa;
  }

  50% {
    background-color: #efefef;
  }

  to {
    background-color: #fafafa;
  }
}

@keyframes bgPulse {
  0% {
    background-color: #fafafa;
  }

  50% {
    background-color: #efefef;
  }

  to {
    background-color: #fafafa;
  }
}

.lazy-pulse {
  -webkit-animation: bgPulse 0.9s linear infinite;
  animation: bgPulse 0.9s linear infinite;
  background: #fafafa;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.35s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

@media (min-width: 768px) {
  .architectural-styles__item:hover .architectural-styles__item-bg:after {
    opacity: 1;
  }

  .architectural-styles__item:hover .architectural-styles__item-hover {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .how-working__item-wrapper:hover .how-working__item {
    -webkit-box-shadow: 0 2px 29px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 29px 0 rgba(0, 0, 0, 0.1);
    height: 35.1rem;
    position: absolute;
    -webkit-transform: translateY(-1rem);
    -ms-transform: translateY(-1rem);
    transform: translateY(-1rem);
    z-index: 5;
  }

  .how-working__item-wrapper:hover .how-working__item .how-working__item-bg:after {
    background: -webkit-gradient(linear,
        left bottom,
        left top,
        from(rgba(239, 167, 26, 0.9)),
        to(rgba(239, 167, 26, 0.9)));
    background: linear-gradient(0deg,
        rgba(239, 167, 26, 0.9),
        rgba(239, 167, 26, 0.9));
  }
}

@media (min-width: 1024px) {

  .nav-next:hover,
  .nav-prev:hover {
    opacity: 0.7;
  }
}

@media (min-width: 1930px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1970px) {
  .container-1868 {
    max-width: 100%;
  }

  .welcome__body:after {
    height: 71.4rem;
  }
}

@media (max-width: 1700px) {
  html {
    font-size: 9px;
  }
}

@media (max-width: 1500px) {
  .hero {
    height: 90.6rem;
  }

  .modal-form .input,
  .modal-form .textarea {
    font-size: 1.6rem;
  }
}

@media (max-width: 1430px) {
  html {
    font-size: 8.6px;
  }
}

@media (max-width: 1400px) {
  .modal .dialog__content {
    padding: 5rem 10.1rem;
  }

  .hero {
    height: 77.9rem;
  }

  .hero__content {
    padding-top: 27.1rem;
  }

  .projects-item__text {
    font-size: 1.7rem;
  }

  .item__text-price span b {
    font-size: 2.1rem;
  }

  .projects-item__more {
    font-size: 1.5rem;
  }

  .modal-menu ul {
    margin-bottom: 5.2rem;
  }

  .modal-menu a {
    padding-bottom: 0.6rem;
    padding-top: 0.6rem;
  }

  .modal-menu__logo {
    margin-bottom: 5.9rem;
  }

  .modal-project__item-text li,
  .modal-project__item-text p {
    font-size: 1.6rem;
  }
}

@media (max-width: 1320px) {
  html {
    font-size: 8.4px;
  }
}

@media (max-width: 1300px) {
  .projects-item__text {
    font-size: 1.6rem;
  }

  .item__text-price span b {
    font-size: 1.9rem;
  }

  .projects-item__more {
    font-size: 1.4rem;
  }
}

@media (max-width: 1200px) {
  .modal .dialog__content {
    max-width: 100%;
  }

  #modalMenu .dialog__content {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 1100px) {
  body.lock {
    padding-right: 0;
  }
}

@media (max-width: 776px) {
  .technology__video-play span {
    font-size: 14px;
  }

  .why-we__text p:last-of-type {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
  }

  .input,
  .textarea {
    font-size: 15px;
    padding: 0 13px;
    text-align: left;
  }

  .textarea {
    padding: 13px;
  }

  .select-box {
    font-size: 14px;
    width: 100%;
  }

  .select-box__current {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #444;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    height: 50px;
    padding-left: 15px;
    padding-right: 35px;
    padding-top: 7px;
  }

  .select-box__icon {
    right: 16px;
    width: 10px;
  }

  .select-box__list {
    font-size: 14px;
    width: 100%;
  }

  .select-box__option {
    padding: 6px 20px;
  }

  .h1 {
    font-size: 25px;
    line-height: 1.1;
  }

  .before-h2 {
    font-size: 14px;
  }

  .h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .h3 {
    font-size: 16px;
  }

  .modal .dialog__content {
    height: auto;
    height: calc(100dvh - 24px);
    margin: 12px;
    max-width: 100%;
    overflow-y: scroll;
    padding: 12px;
  }

  .close-modal__container {
    margin-bottom: 10px;
  }

  .close-modal {
    background-size: 1.5rem;
  }

  .container,
  .container-1868 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .btn {
    font-size: 16px;
    height: 50px;
    line-height: 1;
    padding: 0;
  }

  .fancybox-custom .fancybox-button,
  .fancybox-custom-video .fancybox-button {
    height: 4rem;
    width: 4rem;
  }

  .fancybox-custom .fancybox-navigation .fancybox-button,
  .fancybox-custom-video .fancybox-navigation .fancybox-button {
    top: calc(50% - 20px);
  }

  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom .fancybox-navigation .fancybox-button--arrow_right,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_left,
  .fancybox-custom-video .fancybox-navigation .fancybox-button--arrow_right {
    height: 4rem;
    width: 4rem;
  }

  .fancybox-custom-video .fancybox-slide {
    padding: 12px;
  }

  .header.active .header__content {
    padding: 10px 0;
  }

  .header__content {
    margin: 0 -12px;
    padding: 15px 0;
  }

  .header__logo {
    max-width: 70px;
  }

  .footer__wrap {
    margin: 0 -12px;
  }

  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding: 40px 0;
  }

  .footer-col-1 {
    margin-bottom: 10px;
    max-width: 100%;
  }

  .footer__logo {
    display: none;
    margin-bottom: 20px;
    max-width: 100px;
  }

  .footer-col-1__info {
    margin-bottom: 0;
  }

  .footer-col-1__info-item {
    margin-bottom: 15px;
  }

  .footer__copy p {
    font-size: 12px;
  }

  .footer-col-2 {
    left: 0;
    margin-bottom: 30px;
    max-width: 100%;
    padding: 0;
  }

  .footer__title {
    font-size: 18px;
  }

  .footer__geo,
  .footer__phones,
  .footer__title {
    margin-bottom: 15px;
  }

  .footer-col-3 {
    max-width: 100%;
    padding-top: 0;
  }

  .footer__social {
    margin-top: 0;
    padding-left: 0;
  }

  .footer__bd {
    margin-bottom: 20px;
    margin-top: 15px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .hero {
    height: auto;
    padding: 0;
  }

  .hero__play {
    left: 0;
  }

  .hero__play-wrap {
    margin: 0 24px;
    width: calc(100% - 48px);
  }

  .hero__play-icon {
    height: 60px;
    width: 60px;
  }

  .hero__wrap {
    margin-left: -12px;
    margin-right: -12px;
  }

  .hero__bg:after {
    background: rgba(0, 0, 0, 0.35);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .hero__video video {
    -o-object-position: 60% 50%;
    object-position: 60% 50%;
  }

  .hero__content {
    padding: 100px 0 60px;
  }

  .hero__text p {
    font-size: 15px;
    max-width: 55%;
  }

  .hero__text p:last-of-type {
    margin-bottom: 30px;
  }

  .hero__text-top {
    font-size: calc(var(--indexSize) * 3);
    margin-bottom: 5px;
    max-width: 50%;
  }

  .hero__text-bottom {
    gap: 10px;
    margin-bottom: 10px;
  }

  .hero__text .h1 {
    margin-bottom: 0;
  }

  .hero__text-1,
  .hero__text-2 {
    font-size: calc(var(--indexSize) * 6);
  }

  .hero__text-2 {
    color: #efa71a;
    font-weight: 1000;
    height: auto;
    margin: 0;
    text-transform: uppercase;
    width: auto;
  }

  .hero__text-2:after {
    display: none;
  }

  .hero__text-3 {
    font-size: calc(var(--indexSize) * 6);
  }

  .hero__text-btn {
    font-size: 13px;
    height: 50px;
    max-width: calc(var(--indexSize) * 51);
  }

  .hero__text-btn span:after {
    display: none;
  }

  .hero__social {
    display: none;
  }

  .hero__sound {
    bottom: 24px;
  }

  .technology {
    padding: 28px 0 40px;
  }

  .technology__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding-left: 0;
  }

  .technology__video {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    height: auto;
    order: 1;
  }

  .technology__video:after {
    display: none;
  }

  .technology__video-play img {
    height: 76px;
    width: 76px;
  }

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

  .technology__photo img {
    height: auto;
    width: 100%;
  }

  .technology__text {
    margin-bottom: 0;
  }

  .technology__header .before-h2 {
    margin-bottom: 5px;
  }

  .technology__header .h2 {
    margin-bottom: 10px;
  }

  .technology__body p {
    line-height: 1.5;
  }

  .technology__body p:first-of-type {
    padding-right: 0;
  }

  .technology__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .technology__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .technology__item:first-of-type {
    max-width: 100%;
  }

  .technology__item:nth-of-type(2) {
    max-width: 100%;
  }

  .technology__item:nth-of-type(3) {
    max-width: 100%;
  }

  .technology__item-icon {
    max-width: 60px;
  }

  .technology__item-text {
    padding-top: 0;
  }

  .architectural-styles__wrap {
    margin: 0 -12px;
    padding: 40px 0;
  }

  .architectural-styles__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .architectural-styles__text {
    margin-bottom: 20px;
    max-width: 100%;
    padding-top: 0;
  }

  .architectural-styles__text .before-h2 {
    margin-bottom: 5px;
  }

  .architectural-styles__text .h2 {
    line-height: 1.2;
  }

  .architectural-styles__grid {
    gap: 12px 6px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .architectural-styles__item-bg {
    height: calc(var(--indexSize) * 35);
    width: 100%;
  }

  .architectural-styles__item-hover {
    display: none;
  }

  .projects {
    margin-top: 40px;
  }

  .projects__wrap {
    margin-left: -12px;
    margin-right: -12px;
    padding: 40px 0;
  }

  .projects__header {
    margin-bottom: 20px;
  }

  .projects__header .h2 {
    font-size: 28px;
  }

  .projects__header-title .before-h2 {
    margin-bottom: 5px;
  }

  .projects__items .nav-next,
  .projects__items .nav-prev {
    display: none;
  }

  .projects__btn {
    margin-top: 15px;
  }

  .projects__btn .btn {
    height: 50px;
    max-width: 80%;
  }

  .projects__slider-nav {
    display: none;
  }

  .nav-block:before {
    margin-right: 5px;
    width: 20px;
  }

  .nav-block:after {
    margin-left: 5px;
    width: 20px;
  }

  .nav-next,
  .nav-prev {
    background-size: 30px;
    height: 36px;
    width: 36px;
  }

  .projects__slider .swiper-slide {
    opacity: 1;
    pointer-events: auto;
  }

  .projects-item__photo {
    height: calc(var(--indexSize) * 51);
  }

  .projects-item__category span {
    font-size: 16px;
  }

  .projects-item__text {
    font-size: 15px;
    padding: 20px 15px;
  }

  .item__text-price span b {
    font-size: 17px;
  }

  .house-kit {
    padding: 40px 0;
  }

  .house-kit .ac {
    border: 0.5px solid #999;
  }

  .house-kit .ac .ac-trigger {
    font-size: 16px;
    padding: 10px 15px;
  }

  .house-kit .ac .ac-trigger:after {
    height: 30px;
    width: 30px;
  }

  .house-kit__btn-wrap {
    margin-top: 30px;
  }

  .house-kit__btn {
    height: 50px;
    max-width: 80%;
  }

  .house-kit__header {
    margin-bottom: 20px;
  }

  .house-kit__header .before-h2 {
    margin-bottom: 5px;
  }

  .house-kit__header .h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .house-kit__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding: 12px 12px 24px;
  }

  .house-kit__item-photo {
    margin-bottom: 15px;
    width: 100%;
  }

  .house-kit__item-photo img {
    height: auto;
    width: 100%;
  }

  .house-kit__item-text .h3 {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .house-kit__item-text li:before {
    font-size: 17px;
    top: 0;
  }

  .house-kit__item-type-2,
  .house-kit__item-type-2 .house-kit__item-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .house-kit__item-type-2 .house-kit__item-photo img {
    height: auto;
    width: 100%;
  }

  .house-kit__item-text-right {
    padding-top: 20px;
  }

  .house-kit__item-type-3 .house-kit__item-photo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .house-kit__item-type-3 .house-kit__item-photo img {
    height: auto;
    width: 100%;
  }

  .house-kit__item-type-4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .house-kit__item-type-4 .house-kit__item-photo img {
    height: auto;
    width: 100%;
  }

  .house-kit__item-type-4 .house-kit__item-text {
    padding-top: 0;
  }

  .house-kit__items .ac:first-of-type .house-kit__item-text {
    max-width: 100%;
  }

  .house-kit__items .ac:nth-of-type(2) .house-kit__item .house-kit__item-text {
    gap: 0;
  }

  .house-kit__items .ac:nth-of-type(2) .house-kit__item .house-kit__item-text-left {
    max-width: 100%;
  }

  .house-kit__items .ac:nth-of-type(2) .house-kit__item .house-kit__item-text-right {
    max-width: 100%;
  }

  .house-kit__items .ac:nth-of-type(3) .house-kit__item:first-of-type .house-kit__item-text {
    max-width: 100%;
  }

  .house-kit__items .ac:nth-of-type(4) .house-kit__item:first-of-type .house-kit__item-text {
    max-width: 100%;
  }

  .house-kit__items .ac:nth-of-type(4) .house-kit__item:nth-of-type(2) .house-kit__item-text {
    max-width: 100%;
  }

  .house-kit__items .ac:nth-of-type(5) .house-kit__item:first-of-type .house-kit__item-text {
    max-width: 100%;
  }

  .house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(2) .house-kit__item-text,
  .house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(3) .house-kit__item-text {
    max-width: 100%;
  }

  .house-kit__items .ac:nth-of-type(5) .house-kit__item:nth-of-type(4) .house-kit__item-text {
    max-width: 100%;
  }

  .house-kit__items .ac:nth-of-type(6) .house-kit__item:first-of-type .house-kit__item-text {
    max-width: 100%;
  }

  .why-we__wrap {
    margin-left: -12px;
    margin-right: -12px;
  }

  .why-we__bg {
    display: none;
  }

  .why-we__content {
    margin: 0 -12px;
  }

  .why-we__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .why-we__text {
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100%;
    padding: 0 12px 60px;
  }

  .why-we__text .before-h2 {
    margin-bottom: 5px;
  }

  .why-we__text .h2 {
    margin-bottom: 15px;
  }

  .why-we__text p {
    line-height: 1.5;
    max-width: 100%;
  }

  .why-we__text li {
    font-size: 16px;
    margin-bottom: 13px;
  }

  .why-we__text li:after {
    top: 0;
  }

  .we__text-items {
    margin: 30px 0;
  }

  .we__text-item-spans span {
    font-size: 15px;
  }

  .we__text-phone-photo-p a {
    font-size: 24px;
  }

  .why-we__leader {
    -webkit-box-shadow: inset 0 0 0 2100px rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 0 0 2100px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    padding: 40px 12px;
  }

  .why-we__leader .before-h2 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .why-we__leader .h2 {
    margin-bottom: 15px;
  }

  .why-we__leader p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
  }

  .why-we__leader p:last-of-type {
    margin-bottom: 15px;
  }

  .why-we__leader-video-play {
    height: 70px;
    right: 12px;
    width: 70px;
  }

  .why-we__leader-video-play img {
    height: 40px;
    width: 40px;
  }

  .how-working {
    padding: 40px 0;
  }

  .how-working .before-h2 {
    margin-bottom: 5px;
  }

  .how-working .h2 {
    margin-bottom: 15px;
  }

  .how-working__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    padding: 0;
  }

  .how-working__text p {
    line-height: 1.5;
  }

  .how-working__items {
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
  }

  .how-working__item-wrapper {
    height: calc(var(--indexSize) * 42);
  }

  .how-working__item-wrapper:first-of-type .how-working__item-num {
    max-width: 29px;
  }

  .how-working__item-wrapper:nth-of-type(2) .how-working__item-num {
    max-width: 40px;
  }

  .how-working__item-wrapper:nth-of-type(3) .how-working__item-num {
    max-width: 40px;
  }

  .how-working__item-wrapper:nth-of-type(4) .how-working__item-num {
    max-width: 40px;
  }

  .how-working__item-wrapper:nth-of-type(5) .how-working__item-num {
    max-width: 40px;
  }

  .how-working__item-num {
    margin-bottom: 15px;
  }

  .how-working__item-title h3 {
    font-size: 17px;
  }

  .portfolio__wrap {
    margin: 0 -12px;
    padding: 40px 0;
  }

  .portfolio__header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
  }

  .portfolio__header-text {
    margin-bottom: 0;
    margin-top: 0;
  }

  .portfolio__header-text .before-h2 {
    margin-bottom: 5px;
  }

  .portfolio__grid {
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .portfolio__item {
    height: calc(var(--indexSize) * 38);
  }

  .portfolio__item:first-of-type {
    grid-area: auto;
  }

  .portfolio__item:nth-of-type(2) {
    grid-area: auto;
  }

  .portfolio__item:nth-of-type(3) {
    grid-area: auto;
  }

  .portfolio__item:nth-of-type(4) {
    grid-area: auto;
  }

  .portfolio__item:nth-of-type(5) {
    grid-area: auto;
  }

  .portfolio__item:nth-of-type(6) {
    grid-area: auto;
  }

  .mortgage {
    padding-bottom: 30px;
    padding-top: 0;
  }

  .mortgage__wrap {
    background: #fff;
    padding-bottom: 0;
  }

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

  .mortgage__header .before-h2 {
    margin-bottom: 5px;
  }

  .mortgage__header .h2 {
    margin-bottom: 15px;
  }

  .mortgage__header p {
    max-width: 100%;
  }

  .mortgage__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .mortgage__item {
    margin-bottom: 6px;
    max-width: 100%;
    padding: 24px;
  }

  .mortgage__item:first-of-type .mortgage__item-logo {
    max-width: 100px;
  }

  .mortgage__item:nth-of-type(2) .mortgage__item-logo {
    max-width: 100px;
  }

  .mortgage__item:nth-of-type(3) .mortgage__item-logo {
    max-width: 100px;
  }

  .mortgage__item:nth-of-type(3) .mortgage__item-logo img {
    top: 0;
  }

  .mortgage__item-logo {
    margin: 0 0 15px;
    min-height: auto;
    position: absolute;
    right: 24px;
    top: 24px;
  }

  .mortgage__item-logo:after {
    bottom: -20px;
    display: none;
    width: 130px;
  }

  .mortgage__item-text {
    padding: 0;
  }

  .mortgage__item-text p {
    margin-bottom: 15px;
  }

  .welcome__wrap {
    margin: 0 -12px;
    padding: 40px 0;
  }

  .welcome__content {
    padding: 0;
  }

  .welcome__header {
    margin-bottom: 20px;
    padding: 0;
  }

  .welcome__header .before-h2 {
    margin-bottom: 5px;
  }

  .welcome__header .h2 {
    font-size: 27px;
  }

  .welcome__body {
    background: transparent;
    padding: 0;
  }

  .welcome__body:after {
    display: none;
  }

  .welcome__body-text {
    margin-bottom: 20px;
  }

  .welcome__body-text p {
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .welcome__signature {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }

  .welcome__signature-text {
    margin-bottom: 10px;
    padding-top: 0;
  }

  .welcome__signature-text p:nth-of-type(2) {
    font-size: 24px;
  }

  .welcome__signature-photo {
    max-width: 145px;
    width: 100%;
  }

  #modalMenu .dialog__content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #modalMenu .dialog__content .close-modal__container {
    position: absolute;
    right: 12px;
    top: 12px;
  }

  .modal-menu ul {
    margin-bottom: calc(var(--indexSize) * 7);
  }

  .modal-menu__logo {
    margin-bottom: calc(var(--indexSize) * 8);
    max-width: 130px;
  }

  .modal-form-cnt {
    max-height: 80dvh;
    overflow: scroll;
    padding: 48px 24px;
  }

  .modal-form .input,
  .modal-form .textarea {
    font-size: 14px;
    height: 54px;
  }

  .modal-form .textarea {
    height: 100px;
  }

  .modal-form .h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .modal-form p {
    font-size: 11px;
  }

  .modal-form p a {
    display: inline;
  }

  .modal-form__btn {
    height: 44px;
    margin-bottom: 15px;
    margin-top: 5px;
    max-width: 70%;
  }

  .modal--project .dialog__content {
    height: calc(100dvh - 24px);
    margin: 12px;
    padding: 20px 24px;
  }

  .modal-project__close-wrap {
    margin-bottom: 20px;
  }

  .modal-project__close {
    height: 3.5rem;
    margin-bottom: 0;
    width: 3.5rem;
  }

  .modal-project {
    padding-bottom: 30px;
    padding-right: 0;
  }

  .modal-project__item {
    margin-bottom: 30px;
    padding-bottom: 10px;
  }

  .modal-project__item:last-of-type {
    padding-bottom: 10px;
  }

  .modal-project__item-header {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .modal-project__item-header span {
    display: block;
  }

  .modal-project__item-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .modal-project__item-video {
    margin-bottom: 10px;
  }

  .modal-project__item-text {
    max-width: 100%;
  }

  .modal-project__item-text .h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .modal-project__item-text li,
  .modal-project__item-text p {
    font-size: 15px;
  }

  .modal-project__item-text .italic {
    margin-bottom: 10px;
  }
}

@media (max-width: 375px) {
  .modal-project__close-wrap {
    margin-bottom: 25px;
  }
}

@media (max-width: 365px) {
  .how-working__items {
    grid-template-columns: repeat(2, 49%);
  }
}

@media (max-width: 360px) {
  .modal-project__close-wrap {
    margin-bottom: 30px;
  }
}

@media (max-width: 340px) {
  .item__text-price span b {
    font-size: 15px;
  }
}

@media (max-width: 320px) {
  .hero__text-btn {
    font-size: 10px;
  }

  .projects-item__category span {
    font-size: 14px;
  }

  .projects-item__text {
    font-size: 14px;
    gap: 10px;
  }

  .we__text-phone-photo-p a {
    font-size: 18px;
  }

  .how-working__item-title h3 {
    font-size: 15px;
  }

  .modal-menu ul {
    margin-bottom: calc(var(--indexSize) * 6);
  }

  .modal-menu a,
  .modal-menu li {
    font-size: 17px;
  }

  .modal-menu a {
    padding-bottom: 4px;
    padding-top: 4px;
  }

  .modal-menu__logo {
    margin-bottom: calc(var(--indexSize) * 7);
  }

  .modal-project__item-header {
    font-size: 18px;
  }
}


.ym-advanced-informer {
  visibility: hidden;
}


/* --- Projects Ready --- */
.projects-item {
  position: relative;
}

.projects-item-ready {
  background: #1F2229;
  color: #EFA71A;
  position: absolute;
  top: -10px;
  left: 50%;
  font-size: 17.5px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  padding: 5px 12px 6px 40px;
  letter-spacing: 0.7px;
  width: 107px;
  margin-left: -53px;
  z-index: 10;
}

.projects-item-ready:before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  background: url(../img/ready.svg) center center no-repeat;
  width: 19px;
  height: 20px;
  margin-top: -10.5px;
}

/* --- Ready detail --- */
.barn-main-content .barn-main-slider {
  position: relative;
  overflow: visible;
}

.barn-detail-ready {
  position: absolute;
  right: 0px;
  top: -92px;
  background: #F4F4F4;
  color: #000000;
  border: 2px solid #FF4105;
  width: 514px;
  padding: 12px 18px 15px 74px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  line-height: 1.3em;
  text-shadow: 0px 0px 0px #6d6d6d;
}

.barn-detail-ready-icon {
  position: absolute;
  left: 15px;
  width: 44px;
  height: 44px;
  top: 50%;
  margin-top: -22px;
  border-radius: 100%;
  background: #FFCB05;
}

.barn-detail-ready-icon:after {
  content: '';
  background-image: url(/local/templates/domszavoda_new/themes/img/ready-icon.svg);
  width: 22px;
  height: 22px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -11px;
  margin-left: -10px;
}

/* --- // --- */

@media (max-width: 1800px) {
  .barn-detail-ready {
    width: 479px;
    font-size: 13px;
    top: -88px;
  }
}

@media (max-width: 1700px) {
  .projects-item-ready {
    font-size: 17px;
  }
}

@media (max-width: 1500px) {
  .projects-item-ready {
    font-size: 15px;
    width: 96px;
    margin-left: -49px;
    padding-left: 38px;
  }

  .projects-item-ready:before {
    height: 17px;
    margin-top: -9px;
    background-size: contain;
  }
}

@media (max-width: 1430px) {
  .barn-detail-ready {
    width: 336px;
    font-size: 12px;
    top: -88px;
    line-height: 1.25em;
    padding: 8px 18px 12px 74px;
  }
}

@media (max-width: 980px) {
  .barn-main-content .barn-main-slider {
    position: static;
  }

  .barn-main-content {
    position: relative;
  }

  .barn-detail-ready {
    width: 100%;
    font-size: 12px;
    top: 0px;
    line-height: 1.3em;
    padding: 12px 13px 15px 67px;
    position: relative;
    margin: -4px 0px 23px;
  }

  .barn-detail-ready-icon {
    left: 11px;
  }
}

/* --- // --- */
